We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 88f326c + ed1ec05 commit 11ca8c1Copy full SHA for 11ca8c1
3 files changed
CHANGELOG.md
@@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
7
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
10
+## [0.5a2] - 2024-01-09
11
+
12
+### Fixed
13
14
+- V1Site model optional values did not have default of `None`.
15
16
## [0.5a1] - 2024-01-04
17
18
### Added
src/jamf_pro_sdk/__about__.py
@@ -1,2 +1,2 @@
1
__title__ = "jamf-pro-sdk"
2
-__version__ = "0.5a1"
+__version__ = "0.5a2"
src/jamf_pro_sdk/models/pro/__init__.py
@@ -4,5 +4,5 @@
4
5
6
class V1Site(BaseModel):
- id: Optional[str]
- name: Optional[str]
+ id: Optional[str] = None
+ name: Optional[str] = None
0 commit comments