Skip to content

Commit 868c511

Browse files
committed
bump version, update changelog
1 parent f9c0349 commit 868c511

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

aws-replicator/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ localstack extensions install "git+https://github.com/localstack/localstack-exte
152152

153153
## Change Log
154154

155+
* `0.1.19`: Print human-readable message for invalid regexes in resource configs; fix logic for proxying S3 requests with host-based addressing
155156
* `0.1.18`: Update environment check to use SDK Docker client and enable starting the proxy from within Docker (e.g., from the LS main container as part of an init script)
156157
* `0.1.17`: Add basic support for ARN-based pattern-matching for `secretsmanager` resources
157158
* `0.1.16`: Update imports for localstack >=3.6 compatibility

aws-replicator/aws_replicator/client/auth_proxy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def _fix_headers(self, request: Request, service_name: str):
274274

275275
def _fix_host_and_path(self, request: Request, service_name: str):
276276
if service_name == "s3":
277-
# fix the path and Host header, to avoid bucket addressing issues
277+
# fix the path and prepend the bucket name, to avoid bucket addressing issues
278278
host = request.headers.pop(HEADER_HOST_ORIGINAL, None)
279279
host = host or request.headers.get("Host") or ""
280280
match = re.match(rf"(.+)\.s3\.{LOCALHOST_HOSTNAME}", host)

aws-replicator/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = localstack-extension-aws-replicator
3-
version = 0.1.18
3+
version = 0.1.19
44
summary = LocalStack Extension: AWS replicator
55
description = Replicate AWS resources into your LocalStack instance
66
long_description = file: README.md

0 commit comments

Comments
 (0)