Skip to content

Commit 4ad1838

Browse files
committed
bump version of aws-proxy extension
1 parent 34e0e0e commit 4ad1838

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

aws-proxy/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ If you wish to access the deprecated instructions, they can be found [here](http
126126

127127
## Change Log
128128

129+
* `0.2.3`: Enhance proxy support and tests for several services (API Gateway v1/v2, CloudWatch, AppSync, Kinesis, KMS, SNS, Cognito-IDP)
129130
* `0.2.2`: Refactor UI to use WebAppExtension pattern
130131
* `0.2.1`: Restructure project to use pyproject.toml
131132
* `0.2.0`: Rename extension from `localstack-extension-aws-replicator` to `localstack-extension-aws-proxy`

aws-proxy/aws_proxy/server/aws_request_forwarder.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,10 @@ def _is_read_request(self, context: RequestContext) -> bool:
283283
"BatchGetServiceLevelIndicatorReport",
284284
}:
285285
return True
286+
if context.service.service_name == "apigatewayv2" and operation_name in {
287+
"ExportApi",
288+
}:
289+
return True
286290
# TODO: add more rules
287291
return False
288292

aws-proxy/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
[project]
77
name = "localstack-extension-aws-proxy"
88
readme = "README.md"
9-
version = "0.2.2"
9+
version = "0.2.3"
1010
description = "LocalStack extension that proxies AWS resources into your LocalStack instance"
1111
authors = [
1212
{ name = "LocalStack Team", email = "info@localstack.cloud"}

0 commit comments

Comments
 (0)