From 3c9920ddfe27d0f86af6c467c698cd64393c1c9b Mon Sep 17 00:00:00 2001 From: Viren Nadkarni Date: Tue, 19 Sep 2023 13:35:14 +0530 Subject: [PATCH 1/2] Add endpoint for Resource Access Manager --- localstack_client/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/localstack_client/config.py b/localstack_client/config.py index 59b5b23..9163d12 100644 --- a/localstack_client/config.py +++ b/localstack_client/config.py @@ -120,6 +120,7 @@ "route53domains": 4566, "keyspaces": 4566, "scheduler": 4566, + "ram": 4566, } # TODO remove service port mapping above entirely From 5c7de46489c08df370f50ced752640156f933b57 Mon Sep 17 00:00:00 2001 From: Viren Nadkarni Date: Tue, 19 Sep 2023 13:36:17 +0530 Subject: [PATCH 2/2] Bump version and update changelog --- CHANGELOG.md | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3e3dbe..caf711c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # LocalStack Python Client Change Log +* 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 * v2.1: Consider `AWS_ENDPOINT_URL` configuration when resolving service endpoints diff --git a/setup.cfg b/setup.cfg index 22e762c..b7cc704 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = localstack-client -version = 2.3 +version = 2.4 url = https://github.com/localstack/localstack-python-client author = LocalStack Team author_email = info@localstack.cloud