Skip to content

Commit

Permalink
Migrate remaining data categories (#5073)
Browse files Browse the repository at this point in the history
  • Loading branch information
galvana authored Jul 28, 2024
1 parent 7977269 commit 7d2ed9a
Show file tree
Hide file tree
Showing 9 changed files with 648 additions and 358 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,9 @@ The types of changes are:
- Fixed typo in the BigQuery integration description [#5120](https://github.com/ethyca/fides/pull/5120)
- Fixed default values of Experience config toggles [#5123](https://github.com/ethyca/fides/pull/5123)
- Skip indexing Custom Privacy Request Field array values [#5127](https://github.com/ethyca/fides/pull/5127)
- Fixed Admin UI issue where banner would dissapear in Experience Preview with GPC enabled [#5131](https://github.com/ethyca/fides/pull/5131)

### Fixed
- Fixed Admin UI issue where banner would disappear in Experience Preview with GPC enabled [#5131](https://github.com/ethyca/fides/pull/5131)
- Fixed not being able to edit a monitor from scheduled to not scheduled [#5114](https://github.com/ethyca/fides/pull/5114)
- Migrating missing Fideslang 2.0 data categories [#5073](https://github.com/ethyca/fides/pull/5073)

## [2.41.0](https://github.com/ethyca/fides/compare/2.40.0...2.41.0)

Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import uuid


def generate_record_id(prefix):
"""Generates an ID that can be used for a database table row ID."""
return prefix + "_" + str(uuid.uuid4())
Loading

0 comments on commit 7d2ed9a

Please sign in to comment.