Skip to content

Tags: pynamodb/PynamoDB

Tags

6.1.0

Toggle 6.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Release 6.1.0

6.0.2

Toggle 6.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix DeprecationWarning: datetime.datetime.utcfromtimestamp() is depre…

…cated and scheduled for removal in a future version. (#1261)

* Fix DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC)

* Update release notes and bumped the version

* Fix CI issue realated to actions/setup-python#962

6.0.1

Toggle 6.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
document PR #1226 fix

stable

Toggle stable's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
document PR #1226 fix

4.4.1

Toggle 4.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
publish to pypi as a trusted publisher

6.0.0

Toggle 6.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 6.0.0 (#1216)

5.5.1

Toggle 5.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix compatibility with botocore 1.33.2 (#1206)

5.5.0

Toggle 5.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add 'add_version_condition' arg (#1177)

Add a flag for controlling whether `Model.save`, `Model.update` and `Model.delete` add a condition that the persisted version is the same as the in-memory one, defaulting to `True` (the "safe" behavior).

5.4.1

Toggle 5.4.1's commit message
Use model's AWS credentials in threads

When a model specifies custom AWS credentials (instead of global ones), they should be used when creating new sessions in threads. Previously, threads would always use the global credentials.

5.4.0

Toggle 5.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Expose transaction cancellation reasons (#1156)

This will allow the caller to know e.g. which of the transaction items ran into a conflict, which can sometimes allow app logic to better handle the error without needing to make more requests.