Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 83a7393

Browse files
authored
Merge pull request #763 from aws-solutions/release/v5.1.7
Updates for v5.1.7
2 parents ffdf6b5 + 546379f commit 83a7393

12 files changed

Lines changed: 32 additions & 23 deletions

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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+
## [5.1.7] - 2024-06-11
9+
10+
### Changed
11+
12+
- Bumping security vulnerable package dependencies
13+
- Specify chalice version in build script
14+
815
## [5.1.6] - 2024-03-20
916

1017
### Changed

solution-manifest.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: SO0163
22
name: media-insights-on-aws
3-
version: 5.1.6
3+
version: 5.1.7
44
cloudformation_templates:
55
- template: media-insights-on-aws-stack.template
66
main_template: true
@@ -9,3 +9,5 @@ cloudformation_templates:
99
- template: media-insights-on-aws-dataplane-api-stack.template
1010
- template: media-insights-on-aws-operator-library.template
1111
- template: media-insights-on-aws-workflow-api-stack.template
12+
build_environment:
13+
build_image: 'aws/codebuild/standard:7.0'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
requests==2.31.0
1+
requests==2.32.2

source/cdk/package-lock.json

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

source/cdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "media-insights-on-aws",
3-
"version": "5.1.6",
3+
"version": "5.1.7",
44
"description": "Synthesize templates for Media Insights on AWS using AWS Cloud Development Kit (CDK).",
55
"license": "Apache-2.0",
66
"private": true,

source/cdk/test/__snapshots__/media-insights-dataplane-api-stack.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ exports[`Snapshot media-insights-dataplane-api stack test 1`] = `
150150
},
151151
"Runtime": "python3.11",
152152
"Tags": {
153-
"aws-chalice": "version=1.31.0:stage=dev:app=dataplaneapi",
153+
"aws-chalice": "version=1.31.2:stage=dev:app=dataplaneapi",
154154
},
155155
"Timeout": 120,
156156
"Tracing": {

source/cdk/test/__snapshots__/media-insights-stack.test.ts.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2077,7 +2077,7 @@ exports[`Snapshot media-insights root stack test 1`] = `
20772077
"CodeKeyPrefix",
20782078
],
20792079
},
2080-
"media_insights_on_aws_lambda_layer_python3.10-v5.1.6.zip",
2080+
"media_insights_on_aws_lambda_layer_python3.10-v5.1.7.zip",
20812081
],
20822082
],
20832083
},
@@ -2124,7 +2124,7 @@ exports[`Snapshot media-insights root stack test 1`] = `
21242124
"CodeKeyPrefix",
21252125
],
21262126
},
2127-
"media_insights_on_aws_lambda_layer_python3.11-v5.1.6.zip",
2127+
"media_insights_on_aws_lambda_layer_python3.11-v5.1.7.zip",
21282128
],
21292129
],
21302130
},
@@ -2171,7 +2171,7 @@ exports[`Snapshot media-insights root stack test 1`] = `
21712171
"CodeKeyPrefix",
21722172
],
21732173
},
2174-
"media_insights_on_aws_lambda_layer_python3.9-v5.1.6.zip",
2174+
"media_insights_on_aws_lambda_layer_python3.9-v5.1.7.zip",
21752175
],
21762176
],
21772177
},

source/cdk/test/__snapshots__/media-insights-workflow-api-stack.test.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ exports[`Snapshot media-insights-workflow-api stack test 1`] = `
246246
},
247247
"Runtime": "python3.11",
248248
"Tags": {
249-
"aws-chalice": "version=1.31.0:stage=dev:app=workflowapi",
249+
"aws-chalice": "version=1.31.2:stage=dev:app=workflowapi",
250250
},
251251
"Timeout": 60,
252252
"Tracing": {
@@ -4877,7 +4877,7 @@ Raises:
48774877
},
48784878
"Runtime": "python3.11",
48794879
"Tags": {
4880-
"aws-chalice": "version=1.31.0:stage=dev:app=workflowapi",
4880+
"aws-chalice": "version=1.31.2:stage=dev:app=workflowapi",
48814881
},
48824882
"Timeout": 180,
48834883
"Tracing": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nltk>=3.6.5
1+
nltk>=3.8.1

test/e2e/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
boto3==1.28.5
22
botocore==1.31.7
33
pytest==7.2.0
4-
requests==2.31.0
4+
requests==2.32.2
55
urllib3==1.26.18
66
jsonschema==4.17.0
77
requests_aws4auth==1.2.0

0 commit comments

Comments
 (0)