-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bootstrap 2.0 migration docs for pydantic 2.0 change
- Loading branch information
1 parent
394c78f
commit d2ccc03
Showing
5 changed files
with
65 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
############### | ||
Getting Started | ||
############### | ||
######### | ||
Upgrading | ||
######### | ||
|
||
.. mdinclude:: 01-getting-started.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Upgrading to 2.0 | ||
|
||
With diffsync 2.0, there a couple of breaking changes. What they are and how to deal with them is described in this document. | ||
|
||
## Upgrade to Pydantic's major version 2 | ||
|
||
A [migration guide](https://docs.pydantic.dev/latest/migration/) is available in the Pydantic documentation. Here are the key things that may apply to your usage of diffsync: | ||
|
||
- Any fields that are of type `Optional` now need to provide an explicit `None` default (you can use [bump-pydantic](https://github.com/pydantic/bump-pydantic) to deal with this automatically for the most part) | ||
|
||
```python | ||
from typing import Optional | ||
|
||
from diffsync import DiffSyncModel | ||
|
||
# Before | ||
class Person(DiffSyncModel): | ||
_identifiers = ("name",) | ||
_attributes = ("age",) | ||
|
||
name: str | ||
age: Optional[int] | ||
|
||
# After | ||
class BetterPerson(DiffSyncModel) | ||
_identifiers = ("name",) | ||
_attributes = ("age",) | ||
|
||
name: str | ||
age: Optional[int] = None | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
############### | ||
Getting Started | ||
############### | ||
|
||
.. mdinclude:: 01-upgrading-to-2.0.md |