Skip to content

Commit c3fb4b5

Browse files
committed
Upgrade to version v2.1.6
1 parent 09eb433 commit c3fb4b5

File tree

41 files changed

+474
-2092
lines changed

Some content is hidden

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

41 files changed

+474
-2092
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.6] - 2025-03-12
9+
10+
### Security
11+
12+
- Upgraded axios to `1.8.2`
13+
- Upgraded prismjs to `1.30.0`
14+
- Upgraded @babel/helpers and @babel/runtime to `7.26.10`
15+
816
## [2.1.5] - 2025-03-06
917

1018
### Security
@@ -24,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2432
- Fixed a bug where source documents were not displaying when streaming was disabled ([#164](https://github.com/aws-solutions/generative-ai-application-builder-on-aws/issues/164)).
2533
- Fixed a bug where the prompt editing disable feature would result in UI failures ([#165](https://github.com/aws-solutions/generative-ai-application-builder-on-aws/issues/165)).
2634
- Fixed a bug where a new conversation was created whenever a Chat error occurs ([#166](https://github.com/aws-solutions/generative-ai-application-builder-on-aws/issues/166)).
27-
- Fixed annoymized metrics collection by updating to supported timeframe of every 3 hours
35+
- Fixed annonymized metrics collection by updating to supported timeframe of every 3 hours
2836

2937
### Security
3038

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.5 template-bucket-name"
33+
echo "For example: ./build-s3-dist.sh solutions trademarked-solution-name v2.1.6 template-bucket-name"
3434
exit 1
3535
fi
3636

source/infrastructure/package-lock.json

+20-20
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.5",
3+
"version": "2.1.6",
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.5",
3+
"version": "2.1.6",
44
"description": "A mock lambda implementation for CDK infrastructure unit",
55
"main": "index.js",
66
"scripts": {

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.5"
3+
version = "2.1.6"
44
authors = [ "Amazon Web Services" ]
55
description = "Mock lambda implementation to unit test infrastructure code"
66
packages = [

0 commit comments

Comments
 (0)