Skip to content

Commit 525c809

Browse files
Make PrivacyDeclation.name optional (#97)
* Make the privacy declaration name optional * Update CHANGELOG.md
1 parent bbbb34d commit 525c809

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,17 @@ The types of changes are:
1414
* `Fixed` for any bug fixes.
1515
* `Security` in case of vulnerabilities.
1616

17-
## [Unreleased](https://github.com/ethyca/fideslang/compare/1.3.1...main)
17+
## [Unreleased](https://github.com/ethyca/fideslang/compare/1.3.2...main)
1818

1919
### Changed
20+
* Make `PrivacyDeclation.name` optional [#97](https://github.com/ethyca/fideslang/pull/97)
2021

21-
* Moved over DSR concepts into Fideslang. Expanded allowable characters for FideKey and added additional Dataset validation. [#95](https://github.com/ethyca/fideslang/pull/95)
22+
## [1.3.2](https://github.com/ethyca/fideslang/compare/1.3.1...1.3.2)
2223

24+
### Changed
25+
* Update css to brand colors, edit footer [#87](https://github.com/ethyca/fideslang/pull/87)
26+
* Moved over DSR concepts into Fideslang. Expanded allowable characters for FideKey and added additional Dataset validation. [#95](https://github.com/ethyca/fideslang/pull/95)
27+
* Docs css and link updates [#93](https://github.com/ethyca/fideslang/pull/93)
2328

2429
## [1.3.1](https://github.com/ethyca/fideslang/compare/1.3.0...1.3.1)
2530

src/fideslang/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ class PrivacyDeclaration(BaseModel):
783783
to the privacy data types.
784784
"""
785785

786-
name: str = Field(
786+
name: Optional[str] = Field(
787787
description="The name of the privacy declaration on the system.",
788788
)
789789
data_categories: List[FidesKey] = Field(

0 commit comments

Comments
 (0)