Skip to content

Commit 80fc388

Browse files
authored
release/v3.3.18 (#156)
* release/v3.3.18
1 parent 53f3a0a commit 80fc388

File tree

16 files changed

+1942
-2053
lines changed

16 files changed

+1942
-2053
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.3.18] - 2025-07-30
9+
10+
### Security
11+
12+
- Bump `form-data` to address [CVE-2025-7783] (<https://avd.aquasec.com/nvd/cve-2025-7783>)
13+
- Bump `brace-expansion` to address [CVE-2025-5889]
14+
- Bump `urllib3` to address [CVE-2025-50181], [CVE-2025-50182] (<https://avd.aquasec.com/nvd/cve-2025-50181>), (<https://avd.aquasec.com/nvd/cve-2025-50182>)
15+
16+
### Removed
17+
18+
- AppRegistry application tags at resource level
19+
820
## [3.3.17] - 2025-06-10
921

1022
### Security
@@ -106,7 +118,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
106118
### Changed
107119

108120
- `resource_exception_handler` decorator does not catch `IncorrectState`
109-
exception, allowing the exception to be raised as `ResourceBusyException `
121+
exception, allowing the exception to be raised as `ResourceBusyException`
110122
by `service_exception_handler` decorator
111123

112124
### Security

NOTICE.txt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ This software includes third party software subject to the following copyrights:
1414

1515
@aws-amplify/auth under the Apache-2.0 license.
1616
@aws-amplify/core under the Apache-2.0 license.
17+
@aws-sdk/nested-clients under the Apache-2.0 license.
18+
@babel/helper-globals under the MIT license.
19+
@types/uuid under the MIT license.
1720
@jest/environment under the MIT license.
1821
@jest/types under the MIT license.
1922
ansi-styles under the MIT license.
@@ -1582,10 +1585,16 @@ six under the MIT license.
15821585
tomli under the MIT license.
15831586
types-awscrt under the MIT license.
15841587
types-s3transfer under the MIT license.
1585-
typing-extensions
1586-
urllib3
1588+
typing-extensions under the MIT license.
1589+
urllib3 under the MIT license.
15871590
werkzeug under the 0BSD license.
15881591
xmltodict under the MIT license.
1592+
is-inside-container under the MIT license.
1593+
default-browser under the MIT license.
1594+
bundle-name under the MIT license.
1595+
run-applescript under the MIT license.
1596+
default-browser-id under the MIT license.
1597+
is-network-error under the MIT license.
15891598

15901599
********************
15911600
OPEN SOURCE LICENSES

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ VERSION=custom001
132132
```
133133
cd ./deployment
134134
chmod +x ./build-s3-dist.sh
135-
./build-s3-dist.sh $DIST_OUTPUT_BUCKET $SOLUTION_NAME $VERSION
135+
./build-s3-dist.sh $DIST_OUTPUT_BUCKET $SOLUTION_NAME $VERSION $DIST_OUTPUT_BUCKET-$REGION
136136
```
137137

138138
_✅ All assets are now built. You should see templates under deployment/global-s3-assets and other artifacts (console and lambda binaries) under deployment/regional-s3-assets._

deployment/build-s3-dist.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ find . -type f -name ".coverage" -delete
6262
headline "[Configure] Poetry"
6363
poetry config virtualenvs.in-project true --local
6464
poetry config virtualenvs.options.no-pip true --local
65-
poetry config virtualenvs.options.always-copy true --local
65+
poetry config virtualenvs.options.always-copy false --local
6666

6767

6868
headline "[Install] Solution python package"
@@ -139,6 +139,9 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
139139
sed -i '' -e $replace $template_dist_dir/network-orchestration-organization-role.template
140140
sed -i '' -e $replace $template_dist_dir/network-orchestration-hub-service-linked-roles.template
141141
sed -i '' -e $replace $template_dist_dir/network-orchestration-spoke-service-linked-roles.template
142+
# Replace template bucket name
143+
replace="s/%TEMPLATE_OUTPUT_BUCKET%/$4/g"
144+
sed -i '' -e $replace $template_dist_dir/network-orchestration-spoke.template
142145
else
143146
# Other linux
144147
# Replace source code s3 bucket name with real value

0 commit comments

Comments
 (0)