Skip to content

Commit 690bfff

Browse files
authoredAug 14, 2024
Merge pull request #3637 from aws/release-v1.90.0
Release 1.90.0 (to main)
2 parents 44562dc + b86f1c5 commit 690bfff

File tree

53 files changed

+3686
-1063
lines changed

Some content is hidden

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

53 files changed

+3686
-1063
lines changed
 

‎.cfnlintrc.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ ignore_templates:
8585
- tests/translator/output/**/function_with_event_dest_conditional.json
8686
- tests/translator/output/**/function_with_event_schedule_state.json
8787
- tests/translator/output/**/function_with_file_system_config.json
88+
- tests/translator/output/**/function_with_event_filtering.json # TODO: remove once Event's KmsKeyArn is available
8889
- tests/translator/output/**/function_with_function_url_config_conditions.json
8990
- tests/translator/output/**/function_with_globals_role_path.json
9091
- tests/translator/output/**/function_with_intrinsic_architecture.json

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ black-check:
5050
make format-check
5151

5252
lint:
53-
ruff samtranslator bin schema_source integration tests
53+
ruff check samtranslator bin schema_source integration tests
5454
# mypy performs type check
5555
mypy --strict samtranslator bin schema_source
5656
# cfn-lint to make sure generated CloudFormation makes sense
5757
bin/run_cfn_lint.sh
5858

5959
lint-fix:
60-
ruff --fix samtranslator bin schema_source integration tests
60+
ruff check --fix samtranslator bin schema_source integration tests
6161

6262
prepare-companion-stack:
6363
pytest -v --no-cov integration/setup -m setup

0 commit comments

Comments
 (0)
Failed to load comments.