Skip to content

Commit 0aab86b

Browse files
authored
Bump versions for 1.1.12 (#280)
1 parent 414739e commit 0aab86b

File tree

16 files changed

+140
-157
lines changed

16 files changed

+140
-157
lines changed

CHANGELOG.md

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

7+
## [1.1.12] - 2025-03-14
8+
9+
### Security
10+
- Bump axios to `1.8.2` to mitigate [CVE-2025-27152](https://github.com/axios/axios/security/advisories/GHSA-jr5f-v2jv-69x6)
11+
- Bump serialize-javascript to `6.0.2` to mitigate [CVE-2024-11831](https://avd.aquasec.com/nvd/2024/cve-2024-11831/)
12+
- Bump @babel/runtime and @babel/helpers to `7.26.10` to mitigate [CVE-2025-27789](https://avd.aquasec.com/nvd/cve-2025-27789)
13+
714
## [1.1.11] - 2025-02-06
815

916
### Security

deployment/build-s3-dist.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ while getopts ':h' OPTION; do
4040
h)
4141
echo
4242
echo "script usage: $(basename $0) DIST_OUTPUT_BUCKET SOLUTION_NAME VERSION"
43-
echo "example usage: ./$(basename $0) mybucket virtual-waiting-room-on-aws v1.1.11"
43+
echo "example usage: ./$(basename $0) mybucket virtual-waiting-room-on-aws v1.1.12"
4444
echo
4545
echo "If no arguments are passed in, the following default values are used:"
4646
echo "DIST_OUTPUT_BUCKET=rodeolabz"
4747
echo "SOLUTION_NAME=virtual-waiting-room-on-aws"
48-
echo "VERSION=v1.1.11"
48+
echo "VERSION=v1.1.12"
4949
echo
5050
echo "You may export export these variables in your environment and call the script using those variables:"
5151
echo "./$(basename $0) \$DIST_OUTPUT_BUCKET \$SOLUTION_NAME \$VERSION"
@@ -79,16 +79,16 @@ fi
7979

8080
if [ -z "$3" ]
8181
then
82-
echo "Setting default version to v1.1.11"
83-
VERSION='v1.1.11'
82+
echo "Setting default version to v1.1.12"
83+
VERSION='v1.1.12'
8484
fi
8585

8686
template_dir="$PWD" # /deployment
8787
template_dist_dir="$template_dir/global-s3-assets"
8888
build_dist_dir="$template_dir/regional-s3-assets"
8989
pkg_dir="$template_dir/pkg"
9090
source_dir="$template_dir/../source"
91-
common_version=1.1.11
91+
common_version=1.1.12
9292

9393
echo "------------------------------------------------------------------------------"
9494
echo "[Init] Clean old dist, node_modules and bower_components folders"

source/control-panel/package-lock.json

+53-65
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/control-panel/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"url": "https://aws.amazon.com/solutions",
77
"organization": true
88
},
9-
"version": "0.1.0",
9+
"version": "1.1.12",
1010
"private": true,
1111
"license": "Apache-2.0",
1212
"scripts": {

source/core-api-authorizers-sample/chalice/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "chalice"
3-
version = "1.1.11"
3+
version = "1.1.12"
44
description = "Chalice Code"
55
authors = ["Amazon Web Services"]
66
package-mode = false

source/core-api-authorizers-sample/custom_resources/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "custom-resources"
3-
version = "1.1.11"
3+
version = "1.1.12"
44
description = ""
55
authors = ["Amazon Web Services"]
66

source/core-api/custom_resources/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "custom-resources"
3-
version = "1.1.11"
3+
version = "1.1.12"
44
description = "Custom resources for core APIs of Virtual Waitin Room on AWS"
55
authors = ["Amazon Web Services"]
66
package-mode = false

source/openid-waitingroom/chalice/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "custom-resources"
3-
version = "1.1.11"
3+
version = "1.1.12"
44
description = "Open Id waiting room template of Virtual Waitin Room on AWS"
55
authors = ["Amazon Web Services"]
66
package-mode = false

source/openid-waitingroom/custom_resources/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "custom-resources"
3-
version = "1.1.11"
3+
version = "1.1.12"
44
description = "Custom resources for open Id waiting room of Virtual Waitin Room on AWS"
55
authors = ["Amazon Web Services"]
66

source/openid-waitingroom/www/package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)