Skip to content

Commit 1e7c25d

Browse files
committed
Upgrade to version 2.1.5
1 parent cef1063 commit 1e7c25d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1395
-982
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
## [2.1.5] - 2025-03-06
9+
10+
### Security
11+
12+
- Updated package versions to address security vulnerabilities
13+
814
## [2.1.4] - 2025-02-07
915

1016
### Security

NOTICE.txt

+3
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,9 @@ This software includes third party software subject to the following copyrights:
322322
@esbuild/linux-riscv64 under the MIT license.
323323
@esbuild/linux-s390x under the MIT license.
324324
@esbuild/linux-x64 under the MIT license.
325+
@esbuild/netbsd-arm64 under the MIT license.
325326
@esbuild/netbsd-x64 under the MIT license.
327+
@esbuild/openbsd-arm64 under the MIT license.
326328
@esbuild/openbsd-x64 under the MIT license.
327329
@esbuild/sunos-x64 under the MIT license.
328330
@esbuild/win32-arm64 under the MIT license.
@@ -917,6 +919,7 @@ header-case under the MIT license.
917919
hermes-estree under the MIT license.
918920
hermes-parser under the MIT license.
919921
highlight.js under the BSD-3-Clause license.
922+
highlightjs-vue under the BSD-3-Clause license.
920923
html-encoding-sniffer under the MIT license.
921924
html-escaper under the MIT license.
922925
html-url-attributes under the MIT license.

deployment/build-s3-dist.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -e
3030
# Check to see if input has been provided:
3131
if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ] || [ -z "$4" ]; then
3232
echo "Please provide all required parameters for the build script"
33-
echo "For example: ./build-s3-dist.sh solutions trademarked-solution-name v2.1.2 template-bucket-name"
33+
echo "For example: ./build-s3-dist.sh solutions trademarked-solution-name v2.1.5 template-bucket-name"
3434
exit 1
3535
fi
3636

deployment/run-unit-tests.sh

-4
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@ run_python_scripts_test() {
102102
echo "Initiating virtual environment"
103103
source .venv-test/bin/activate
104104

105-
echo "------------------------------------------------------------------------------"
106-
echo "Check for vulnerabilities"
107-
pip install pip-audit
108-
pip-audit
109105
echo "------------------------------------------------------------------------------"
110106

111107
# setup coverage report path

source/infrastructure/package-lock.json

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

source/infrastructure/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gen-ai-app-builder-on-aws-infrastructure",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"bin": {
55
"infrastructure": "bin/gen-ai-app-builder.js"
66
},

source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json

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

source/infrastructure/test/mock-lambda-func/node-lambda/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "A mock lambda implementation for CDK infrastructure unit",
55
"main": "index.js",
66
"scripts": {

source/infrastructure/test/mock-lambda-func/python-lambda/poetry.lock

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

source/infrastructure/test/mock-lambda-func/python-lambda/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mock-lambda-function"
3-
version = "2.1.4"
3+
version = "2.1.5"
44
authors = [ "Amazon Web Services" ]
55
description = "Mock lambda implementation to unit test infrastructure code"
66
packages = [

source/infrastructure/test/mock-lambda-func/typescript-lambda/package-lock.json

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

source/infrastructure/test/mock-lambda-func/typescript-lambda/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mock-typescript-lambda",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "A mock lambda implementation for CDK infrastructure unit",
55
"main": "index.ts",
66
"scripts": {

0 commit comments

Comments
 (0)