Skip to content
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ The types of changes are:

## [Unreleased](https://github.com/ethyca/fideslang/compare/3.1.0...main)

### Changed
- Updated the type for `CollectionMeta.partitioning` to allow a list of dicts [#34](https://github.com/ethyca/fideslang/pull/34)

## [3.1.0](https://github.com/ethyca/fideslang/compare/3.0.9...3.1.0)

### Deprecated
- Deprecated `Cookies` model and `.cookies` property on `System` and `PrivacyDeclaration` [#199](https://github.com/ethyca/fideslang/pull/27)
- Deprecated `Cookies` model and `.cookies` property on `System` and `PrivacyDeclaration` [#27](https://github.com/ethyca/fideslang/pull/27)


## [3.0.9](https://github.com/ethyca/fideslang/compare/3.0.8...3.0.9)
Expand Down
4 changes: 2 additions & 2 deletions src/fideslang/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from datetime import datetime
from enum import Enum
from typing import Annotated, Dict, List, Optional, Union, Any
from typing import Annotated, Any, Dict, List, Optional, Union
from warnings import warn

from packaging.version import InvalidVersion, Version
Expand Down Expand Up @@ -531,7 +531,7 @@ class CollectionMeta(BaseModel):

# partitioning metadata is kept open-ended as it is an experimental feature -
# more strictly defined metadata structures will be supported in the future
partitioning: Optional[Dict] = None
partitioning: Optional[Union[Dict, List[Dict]]] = None


class DatasetCollection(FidesopsMetaBackwardsCompat):
Expand Down
Loading