diff --git a/CHANGELOG.md b/CHANGELOG.md index caf711c..3e305ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # LocalStack Python Client Change Log +* v2.5: Add endpoint config for AppConfig Data * v2.4: Add endpoint config for Resource Access Manager * v2.3: Add endpoint config for Amazon EventBridge Scheduler * v2.2: Add endpoint configs for `emr-serverless` and a few other services diff --git a/localstack_client/config.py b/localstack_client/config.py index 9163d12..1e9073f 100644 --- a/localstack_client/config.py +++ b/localstack_client/config.py @@ -99,6 +99,7 @@ "servicediscovery": 4630, "serverlessrepo": 4631, "appconfig": 4632, + "appconfigdata": 4632, "ce": 4633, "mediaconvert": 4634, "resourcegroupstaggingapi": 4635, diff --git a/setup.cfg b/setup.cfg index b7cc704..205dac9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = localstack-client -version = 2.4 +version = 2.5 url = https://github.com/localstack/localstack-python-client author = LocalStack Team author_email = info@localstack.cloud @@ -12,6 +12,8 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 License :: OSI Approved :: Apache Software License Topic :: Software Development :: Testing