All Versions
21
Latest Version
Avg Release Cycle
54 days
Latest Release
1240 days ago

Changelog History
Page 1

  • v5.0.0.b4 Changes

    November 05, 2020

    ๐Ÿš€ This is a beta release for a major release with breaking changes.

    ๐Ÿš€ Please read the release notes carefully and report any bugs encountered.

  • v5.0.0.b3 Changes

    October 21, 2020

    ๐Ÿš€ This is a beta release for a major release with breaking changes.

    ๐Ÿš€ Please read the release notes carefully and report any bugs encountered.

  • v5.0.0.b2 Changes

    October 12, 2020

    ๐Ÿš€ This is a beta release for a major release with breaking changes.

    ๐Ÿš€ Please read the release notes carefully and report any bugs encountered.

  • v5.0.0.b1 Changes

    September 14, 2020

    ๐Ÿš€ This is a beta release for a major release with breaking changes. Please read the release notes carefully and report any bugs encountered.

  • v4.3.3 Changes

    August 14, 2020

    ๐Ÿš€ This is a backwards compatible, minor release.

    ๐Ÿš€ Please read the release notes for a full list of changes.

  • v4.3.2 Changes

    April 22, 2020

    ๐Ÿš€ This is a backwards compatible, minor release:

    • ๐Ÿ‘‰ Make (GS,LS)Index an indexable type in runtime (#769)

    ๐Ÿš€ Please read the release notes for a full list of changes.

  • v4.3.1 Changes

    January 25, 2020

    ๐Ÿš€ This is a backwards compatible, minor release.

    ๐Ÿš€ Please read the release notes for a full list of changes.

  • v4.3.0 Changes

    January 23, 2020

    ๐Ÿš€ This is a backwards compatible, minor release.

    ๐Ÿš€ Please read the release notes for a full list of changes.

  • v4.2.0 Changes

    October 30, 2019

    ๐Ÿš€ This is a backwards compatible, minor release.

    ๐Ÿš€ Please read the release notes for a full list of changes.

  • v4.1.0 Changes

    October 17, 2019

    ๐Ÿš€ This is a backwards compatible, minor release.

    • In the Model's Meta, you may now provide an AWS session token, which is mostly useful for assumed roles (#700):

      sts_client = boto3.client("sts") role_object = sts_client.assume_role(RoleArn=role_arn, RoleSessionName="role_name", DurationSeconds=BOTO3_CLIENT_DURATION) role_credentials = role_object["Credentials"]class MyModel(Model): class Meta: table_name = "table_name" aws_access_key_id = role_credentials["AccessKeyId"] aws_secret_access_key = role_credentials["SecretAccessKey"] aws_session_token = role_credentials["SessionToken"] hash = UnicodeAttribute(hash_key=True) range = UnicodeAttribute(range_key=True)

    • ๐Ÿ›  Fix warning about inspect.getargspec (#701)

    • ๐Ÿ›  Fix provisioning GSIs when using pay-per-request billing (#690)

    • ๐Ÿ‘ป Suppress Python 3 exception chaining when "re-raising" botocore errors as PynamoDB model exceptions (#705)