Skip to content

Commit 383b298

Browse files
fix broken react script source URLs in AWS proxy Web UI (#90)
1 parent 8bddbce commit 383b298

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

aws-replicator/README.md

+1
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.1.23`: Fix unpinned React.js dependencies preventing webui from loading
129130
* `0.1.22`: Fix auth-related imports that prevent the AWS proxy from starting
130131
* `0.1.20`: Fix logic for proxying S3 requests with `*.s3.amazonaws.com` host header
131132
* `0.1.19`: Print human-readable message for invalid regexes in resource configs; fix logic for proxying S3 requests with host-based addressing

aws-replicator/aws_replicator/server/ui/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<meta charset="utf-8">
55
<title>AWS Replicator - LocalStack Extension</title>
66
<link rel="shortcut icon" href="/favicon.png" />
7-
<script src="https://unpkg.com/react/umd/react.development.js"></script>
8-
<script src="https://unpkg.com/react-dom/umd/react-dom.development.js"></script>
7+
<script src="https://unpkg.com/react@18.3.1/umd/react.development.js"></script>
8+
<script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.development.js"></script>
99
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
1010
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js"></script>
1111
<script src="https://unpkg.com/@mui/[email protected]/umd/material-ui.development.js"></script>

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.22
3+
version = 0.1.23
44
summary = LocalStack AWS Proxy Extension
55
description = Proxy AWS resources into your LocalStack instance
66
long_description = file: README.md

0 commit comments

Comments
 (0)