diff --git a/CHANGELOG.md b/CHANGELOG.md index eac2216..36a898b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # LocalStack Python Client Change Log +* v2.11: Add endpoint config for S3 Tables * v2.10: Remove endpoints for 'bedrock-runtime' and 'textract' because overriding them is not supported by the AWS Terraform provider * v2.9: Add endpoints for Account Management, Private Certificate Authority, Bedrock, CloudControl, CodeBuild, CodeCommit, CodeConnections, CodeDeploy, CodePipeline, ElasticTranscoder, MemoryDB, Shield, Textract and Verified Permissions * v2.8: Removes support for python `3.6` and `3.7` and adds `3.12` and `3.13` for parity with boto3 diff --git a/localstack_client/config.py b/localstack_client/config.py index 10ba740..e4482ad 100644 --- a/localstack_client/config.py +++ b/localstack_client/config.py @@ -113,6 +113,7 @@ "route53resolver": 4580, "s3": 4572, "s3control": 4627, + "s3tables": 4566, "sagemaker": 4609, "sagemaker-runtime": 4609, "scheduler": 4566, diff --git a/setup.cfg b/setup.cfg index 412f97f..59d206d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = localstack-client -version = 2.10 +version = 2.11 url = https://github.com/localstack/localstack-python-client author = LocalStack Team author_email = info@localstack.cloud