Skip to content

Commit 479ac76

Browse files
committed
Upgrade to version v2.1.4
1 parent d8b1f8b commit 479ac76

File tree

40 files changed

+639
-332
lines changed

40 files changed

+639
-332
lines changed

.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ deployment/open-source
44

55
**/coverage/
66
**/coverage-reports/
7-
.coverage
7+
.coverage*
88

99
node_modules/
1010

@@ -48,7 +48,6 @@ target/
4848
*.jar
4949
source/infrastructure/test/mock-lambda-func/java-lambda/checkstyle-result.xml
5050
**/*dependency-reduced-pom.xml
51-
.coverage.*
5251

5352
dist/
5453
*.log
@@ -57,7 +56,6 @@ bak.*
5756
*.ipynb*
5857
_bandit_temp.json
5958
RapidAi.code-workspace
60-
source/scripts/v2_migration/poetry.lock
6159

6260
.temp_redpencil
6361
bom.json

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.4] - 2025-02-07
9+
10+
### Security
11+
12+
- Updated package versions to address security vulnerabilities
13+
814
## [2.1.3] - 2025-01-30
915

1016
### Fixed

source/infrastructure/package-lock.json

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

source/infrastructure/package.json

+3-3
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.3",
3+
"version": "2.1.4",
44
"bin": {
55
"infrastructure": "bin/gen-ai-app-builder.js"
66
},
@@ -44,8 +44,8 @@
4444
"@types/npmlog": "^7.0.0",
4545
"@types/uuid": "^10.0.0",
4646
"aws-cdk": "^2.177.0",
47-
"aws-cdk-lib": "^2.172.0",
48-
"cdk": "^2.172.0",
47+
"aws-cdk-lib": "^2.177.0",
48+
"cdk": "^2.177.0",
4949
"cdk-nag": "^2.34.21",
5050
"constructs": "^10.4.2",
5151
"npmlog": "^7.0.1",

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

0 commit comments

Comments
 (0)