diff --git a/CHANGELOG.md b/CHANGELOG.md index 26f51b6..d3e3dbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # LocalStack Python Client Change Log +* v2.3: Add endpoint config for Amazon EventBridge Scheduler * v2.2: Add endpoint configs for `emr-serverless` and a few other services * v2.1: Consider `AWS_ENDPOINT_URL` configuration when resolving service endpoints * v2.0: Change `LOCALSTACK_HOSTNAME` from `` to `:`; remove `EDGE_PORT` environment variable diff --git a/localstack_client/config.py b/localstack_client/config.py index 51f8c13..59b5b23 100644 --- a/localstack_client/config.py +++ b/localstack_client/config.py @@ -119,6 +119,7 @@ "appflow": 4566, "route53domains": 4566, "keyspaces": 4566, + "scheduler": 4566, } # TODO remove service port mapping above entirely diff --git a/setup.cfg b/setup.cfg index 41f493c..22e762c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = localstack-client -version = 2.2 +version = 2.3 url = https://github.com/localstack/localstack-python-client author = LocalStack Team author_email = info@localstack.cloud