From 9006a53266d63d7345da7307121029f1915b26eb Mon Sep 17 00:00:00 2001 From: Jason Gill Date: Mon, 22 Jul 2024 14:55:09 -0600 Subject: [PATCH 1/2] fix typo in bigquery monitor copy --- .../integrations/integration-type-info/bigqueryInfo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/admin-ui/src/features/integrations/integration-type-info/bigqueryInfo.tsx b/clients/admin-ui/src/features/integrations/integration-type-info/bigqueryInfo.tsx index 6bee487a33..8d66a75398 100644 --- a/clients/admin-ui/src/features/integrations/integration-type-info/bigqueryInfo.tsx +++ b/clients/admin-ui/src/features/integrations/integration-type-info/bigqueryInfo.tsx @@ -97,7 +97,7 @@ export const BigQueryOverview = () => ( bigquery.tables.getData bigquery.tables.list bigquery.tables.updateData - bigquery.projects.get + resourcemanager.projects.get @@ -144,7 +144,7 @@ const MONITORED_PROJECT_PERMISSIONS = [ description: "List all tables in the specified dataset.", }, { - permission: "bigquery.projects.get", + permission: "resourcemanager.projects.get", description: "Retrieve metadata for the specified project.", }, ]; From 9ac2f84bb812da69c789e8cbfc4e7fa7af58a9dd Mon Sep 17 00:00:00 2001 From: Jason Gill Date: Mon, 22 Jul 2024 14:59:23 -0600 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48741486dd..59aee49854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,9 @@ The types of changes are: ### Developer Experience - Add `.syncignore` to reduce file sync size with new volumes [#5104](https://github.com/ethyca/fides/pull/5104) +### Fixed +- Fixed typo in the BigQuery integration description [#5120](https://github.com/ethyca/fides/pull/5120) + ## [2.41.0](https://github.com/ethyca/fides/compare/2.40.0...2.41.0) ### Added