Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo in bigquery monitor copy #5120

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const BigQueryOverview = () => (
<ListItem>bigquery.tables.getData</ListItem>
<ListItem>bigquery.tables.list</ListItem>
<ListItem>bigquery.tables.updateData</ListItem>
<ListItem>bigquery.projects.get</ListItem>
<ListItem>resourcemanager.projects.get</ListItem>
</InfoUnorderedList>
</ShowMoreContent>
</>
Expand Down Expand Up @@ -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.",
},
];
Expand Down
Loading