-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade CDK (v2.119), SAM (v1.107), Jinja2 (v3.1.3), and others to la…
…test compatible version (#676) * Upgrade CDK (v2.113), SAM (v1.103), and others to latest compatible version **Why?** To use the latest versions as made available in the meanwhile. **What?** * Upgrade CDK (v2.113), SAM (v1.103), and others to latest compatible version * Remove Python based awscli v1, rely on default AWS CLI part of CodeBuild instead. * Fix Terraform Enabled Parameter Store test * Hide logs emitted by tests. * Upgrade CDK (v2.115), SAM (v1.105), Python (v3.12) and others to latest compatible **Why?** To use the latest versions as made available in the meanwhile. **What?** * Upgrade CDK (v2.115), SAM (v1.105), and others to latest compatible version * Update to Python v3.12. * Ensure Regular Expressions use raw strings where required. * Upgrade CDK (v2.118.0) and ARM64 **Why?** To use the latest versions as made available in the meanwhile. **What?** * Upgrade CDK (v2.118.0). * Upgrade AWS SAM CLI to v1.107.0. * Switch to the ARM64 architecture for Lambda functions. * Add the new required ImageId property for Cloud9 instances in the service catalog sample. * Undo ARM64 for all Lambda functions Reverting, due to `ruamel-yaml-clib==0.2.8(wheel)` dependency error. * Bump jinja2 Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](pallets/jinja@3.1.2...3.1.3) --- updated-dependencies: - dependency-name: jinja2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Bump jinja2 from 3.1.2 to 3.1.3 in /src/lambda_codebase/initial_commit Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](pallets/jinja@3.1.2...3.1.3) --- updated-dependencies: - dependency-name: jinja2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Upgrade ADF Workflow to Python 3.12 * Fix repeated headers blocker in providers guide * Upgrade to CDK v2.119 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0c038b2
commit 8d0445b
Showing
55 changed files
with
235 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
cfn-lint==0.78.2 | ||
isort==5.12.0 | ||
cfn-lint==0.83.8 | ||
isort==5.13.2 | ||
mock==5.1.0 | ||
pylint==2.17.4 | ||
pytest~=7.4.0 | ||
pytest-cov==3.0.0 | ||
tox==3.28.0 | ||
yamllint==1.32.0 | ||
pylint==3.0.3 | ||
pytest~=7.4.4 | ||
pytest-cov==4.1.0 | ||
tox==4.11.4 | ||
yamllint==1.33.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
astroid==2.15.6 | ||
boto3==1.28.8 | ||
botocore==1.31.8 | ||
astroid==3.0.2 | ||
aws-sam-cli==1.107.0 | ||
boto3==1.34.17 | ||
botocore==1.34.17 | ||
pyyaml~=6.0.1 | ||
schema==0.7.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ version: 0.2 | |
phases: | ||
install: | ||
runtime-versions: | ||
python: 3.11 | ||
python: 3.12 | ||
|
||
build: | ||
commands: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,7 @@ version: 0.2 | |
phases: | ||
install: | ||
runtime-versions: | ||
docker: 20 | ||
python: 3.11 | ||
python: 3.12 | ||
|
||
build: | ||
commands: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
s3==3.0.0 | ||
boto3==1.28.8 | ||
boto3==1.34.17 | ||
argparse==1.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ version: 0.2 | |
phases: | ||
install: | ||
runtime-versions: | ||
python: 3.11 | ||
python: 3.12 | ||
|
||
build: | ||
commands: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ env: | |
phases: | ||
install: | ||
runtime-versions: | ||
python: 3.11 | ||
python: 3.12 | ||
|
||
build: | ||
commands: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ env: | |
phases: | ||
install: | ||
runtime-versions: | ||
python: 3.9 | ||
python: 3.12 | ||
|
||
build: | ||
commands: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ env: | |
phases: | ||
install: | ||
runtime-versions: | ||
python: 3.11 | ||
python: 3.12 | ||
|
||
build: | ||
commands: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
aws-xray-sdk==2.12.0 | ||
aws-xray-sdk==2.12.1 | ||
pyyaml~=6.0.1 | ||
wrapt==1.14.1 # https://github.com/aws/aws-lambda-builders/issues/302 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...sitory/adf-bootstrap/deployment/lambda_codebase/determine_default_branch/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
boto3==1.28.8 | ||
boto3==1.34.17 | ||
cfn-custom-resource~=1.0.1 |
4 changes: 2 additions & 2 deletions
4
...strap_repository/adf-bootstrap/deployment/lambda_codebase/initial_commit/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Jinja2==3.1.2 | ||
boto3==1.28.8 | ||
Jinja2==3.1.3 | ||
boto3==1.34.17 | ||
cfn-custom-resource~=1.0.1 | ||
markupsafe==2.1.3 |
3 changes: 1 addition & 2 deletions
3
..._repository/adf-bootstrap/deployment/lambda_codebase/pipeline_management/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
pyyaml~=6.0.1 | ||
schema==0.7.5 | ||
tenacity==8.2.2 | ||
wrapt==1.14.1 # https://github.com/aws/aws-lambda-builders/issues/302 | ||
tenacity==8.2.3 |
Oops, something went wrong.