Skip to content

Commit fbc27a6

Browse files
authored
Merge pull request #37 from aws-solutions/release/v1.0.15
Release v1.0.15
2 parents f2a448e + 253a5a6 commit fbc27a6

File tree

9 files changed

+1462
-1467
lines changed

9 files changed

+1462
-1467
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
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+
## [1.0.15] - 2024-10
9+
10+
### Changed
11+
12+
- Updated dependencies to mitigate CVE-2024-21536
13+
- Add poetry.lock to pin dependency versions for Python code
14+
- Adapt build scripts to use Poetry for dependency management
15+
816
## [1.0.14] - 2024-10
917

1018
### Changed

deployment/build-s3-dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ normal="$(tput sgr0)"
3939
# SETTINGS
4040
#------------------------------------------------------------------------------
4141
# Important: CDK global version number
42-
cdk_version="2.158.0"
42+
cdk_version="2.163.1"
4343
run_helper="true"
4444

4545
#------------------------------------------------------------------------------

source/lambda/poetry.lock

Lines changed: 214 additions & 214 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/lambda/pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ package-mode = false
44

55
[tool.poetry.dependencies]
66
python = "^3.12"
7-
aws-lambda-powertools = "~3.1.0"
7+
aws-lambda-powertools = "~3.2.0"
88
aws-xray-sdk = "~2.14.0"
9-
botocore = "~1.35.41"
10-
boto3 = "~1.35.41"
11-
boto3-stubs = { extras = ["essential", "sts", "organizations", "stepfunctions", "s3", "glacier", "iam", "sns", "sqs", "lambda", "efs", "secretsmanager", "iot", "kms", "apigateway", "events", "sesv2", "ecr", "config", "ssm-incidents", "opensearch", "cloudformation", "glue", "serverlessrepo", "backup", "codeartifact", "codebuild", "mediastore", "ec2"], version = "~1.35.41" }
9+
botocore = "~1.35.46"
10+
boto3 = "~1.35.46"
11+
boto3-stubs = { extras = ["essential", "sts", "organizations", "stepfunctions", "s3", "glacier", "iam", "sns", "sqs", "lambda", "efs", "secretsmanager", "iot", "kms", "apigateway", "events", "sesv2", "ecr", "config", "ssm-incidents", "opensearch", "cloudformation", "glue", "serverlessrepo", "backup", "codeartifact", "codebuild", "mediastore", "ec2"], version = "~1.35.46" }
1212
cfnresponse = "~1.1.5"
1313
requests = "~2.32.3"
1414
pyparsing = "~3.2.0"
@@ -17,8 +17,8 @@ pydantic = "~2.9.2"
1717
[tool.poetry.group.dev.dependencies]
1818
python = "^3.12"
1919
mock = "~5.1.0"
20-
boto3-stubs = { extras = ["essential"], version = "~1.35.41" }
21-
moto = {extras = ["sts", "organizations", "stepfunctions", "s3", "glacier", "iam", "sns", "sqs", "lambda", "efs", "secretsmanager", "iot", "kms", "apigateway", "events", "sesv2", "ecr", "config", "ssm-incidents", "opensearch", "cloudformation", "glue", "serverlessrepo", "backup", "codeartifact", "codebuild", "mediastore", "ec2"], version = "~5.0.17"}
20+
boto3-stubs = { extras = ["essential"], version = "~1.35.46" }
21+
moto = {extras = ["sts", "organizations", "stepfunctions", "s3", "glacier", "iam", "sns", "sqs", "lambda", "efs", "secretsmanager", "iot", "kms", "apigateway", "events", "sesv2", "ecr", "config", "ssm-incidents", "opensearch", "cloudformation", "glue", "serverlessrepo", "backup", "codeartifact", "codebuild", "mediastore", "ec2"], version = "~5.0.18"}
2222
pytest = "~8.3.3"
2323
pytest-mock = "~3.14.0"
2424
pytest-runner = "~6.0.1"

0 commit comments

Comments
 (0)