Skip to content

Commit

Permalink
fix(python): upgrade ir sdk to handle null unknown types (#4322)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi authored Aug 16, 2024
1 parent c2f9dfc commit 7960bf8
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 9 deletions.
4 changes: 4 additions & 0 deletions generators/python/fastapi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.6] - 2024-08-16

- Fix: Upgrade intermediate representation dependency to safely parse null unknown types.

## [1.4.5] - 2024-08-14

- Improvement: `.dict` performance is increased, consolidating to a single call to Pydantic's `.dict` instead of 2 in attempts to remove unset optional values.
Expand Down
2 changes: 1 addition & 1 deletion generators/python/fastapi/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.5
1.4.6
10 changes: 5 additions & 5 deletions generators/python/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions generators/python/pydantic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.3] - 2024-08-16

- Fix: Upgrade intermediate representation dependency to safely parse null unknown types.

## [1.4.2] - 2024-08-14

- Improvement: `.dict` performance is increased, consolidating to a single call to Pydantic's `.dict` instead of 2 in attempts to remove unset optional values.
Expand Down
2 changes: 1 addition & 1 deletion generators/python/pydantic/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.2
1.4.3
2 changes: 1 addition & 1 deletion generators/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ordered-set = "^4.1.0"
pydantic-core = "^2.18.2"
fern-fern-fdr-sdk = {version = "0.98.20", source = "fern-prod"}
fern-fern-generator-cli-sdk = {version = "0.0.59", source = "fern-prod"}
fern_fern_ir_v53 = "53.2.5"
fern_fern_ir_v53 = "53.7.2"

[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
Expand Down
4 changes: 4 additions & 0 deletions generators/python/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.10.5] - 2024-08-16

- Fix: Upgrade intermediate representation dependency to safely parse null unknown types.

## [3.10.4] - 2024-08-14

- Improvement: `.dict` performance is increased, consolidating to a single call to Pydantic's `.dict` instead of 2 in attempts to remove unset optional values.
Expand Down
2 changes: 1 addition & 1 deletion generators/python/sdk/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.4
3.10.5

0 comments on commit 7960bf8

Please sign in to comment.