Skip to content

Commit

Permalink
Prepare release 5.0.14 (getmoto#8104)
Browse files Browse the repository at this point in the history
  • Loading branch information
bblommers authored Sep 8, 2024
1 parent a4653ae commit 97c238d
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 10 deletions.
58 changes: 58 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,64 @@
Moto Changelog
==============

5.0.14
-----
Docker Digest for 5.0.14: <autopopulateddigest>

General:
* All JSON files in the binary distribution are shipped compressed, significantly reducing the size on disk

New Services:
* Shield:
* create_subscription()
* describe_subscription()

* TimestreamQuery:
* create_scheduled_query()
* delete_scheduled_query()
* describe_endpoints()
* describe_scheduled_query()
* query()
* update_scheduled_query()

New Methods:
* AppMesh:
* create_virtual_node()
* delete_virtual_node()
* describe_virtual_node()
* list_virtual_nodes()
* update_virtual_node()
* create_virtual_router()
* delete_virtual_router()
* describe_virtual_router()
* list_virtual_routers()
* update_virtual_router()
* create_route()
* delete_route()
* describe_route()
* list_routes()
* update_route()

Miscellaneous:
* CloudFormation templates now support the Fn::Base64-function
* CognitoIDP: Enhanced support for MFA flows/challenges
* DynamoDB: update_item() now validates empty string sets
* EC2: describe_snapshots() now supports the kms-key-id filter
* EC2: run_instances() now supports the parameter Ipv6AddressCount
* ECS: Tasks can now be created with unknown security groups
* IAM: generate_credentials_report() now shows active certificates
* KMS: sign() now supports Alias ARNs
* Route53: list_resource_record_sets() now validates record names
* S3: create_bucket() now has additional LocationConstraint-validation
* S3: delete_objects() now respects BucketPolicy and ObjectLocks
* S3: head_object() now handles Range-parameter correctly
* SageMaker: search() now supports the CONTAINS filter
* Sagemaker Runtime: invoke_endpoint_async() now supports failure responses
* SNS: Signature of HTTP Messages are now valid
* SSM: get_maintenance_window() now returns an exception if the window does not exist
* SQS: delete_message_batch() now validates there's at least one entry


5.0.13
-----
Docker Digest for 5.0.13: _sha256:de97faba597d8f1bfb4dab1c7d562e1997ac5e0ba1186c4392430650b0f6bd4e_
Expand Down
18 changes: 9 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ all =
openapi-spec-validator>=0.5.0
pyparsing>=3.0.7
jsondiff>=1.1.2
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
aws-xray-sdk!=0.96,>=0.93
setuptools
multipart
Expand All @@ -70,7 +70,7 @@ proxy =
openapi-spec-validator>=0.5.0
pyparsing>=3.0.7
jsondiff>=1.1.2
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
aws-xray-sdk!=0.96,>=0.93
setuptools
multipart
Expand All @@ -85,7 +85,7 @@ server =
openapi-spec-validator>=0.5.0
pyparsing>=3.0.7
jsondiff>=1.1.2
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
aws-xray-sdk!=0.96,>=0.93
setuptools
flask!=2.2.0,!=2.2.1
Expand Down Expand Up @@ -120,7 +120,7 @@ cloudformation =
openapi-spec-validator>=0.5.0
pyparsing>=3.0.7
jsondiff>=1.1.2
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
aws-xray-sdk!=0.96,>=0.93
setuptools
cloudfront =
Expand All @@ -142,10 +142,10 @@ dms =
ds =
dynamodb =
docker>=3.0.0
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
dynamodbstreams =
docker>=3.0.0
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
ebs =
ec2 =
ec2instanceconnect =
Expand Down Expand Up @@ -209,15 +209,15 @@ resourcegroupstaggingapi =
openapi-spec-validator>=0.5.0
pyparsing>=3.0.7
jsondiff>=1.1.2
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
route53 =
route53resolver =
s3 =
PyYAML>=5.1
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
s3crc32c =
PyYAML>=5.1
py-partiql-parser==0.5.5
py-partiql-parser==0.5.6
crc32c
s3control =
sagemaker =
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dynamodb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def dynamodb_aws_verified(
def inner(func):
@wraps(func)
def pagination_wrapper(**kwargs):
table_name = "t" + str(uuid4())[0:6]
table_name = "T" + str(uuid4())[0:6]
if create_table:
kwargs["table_name"] = table_name

Expand Down

0 comments on commit 97c238d

Please sign in to comment.