Skip to content

Commit 4960606

Browse files
authoredNov 9, 2024
Merge pull request #3675 from aws/release-v1.92.0
Release 1.92.0 (to main)
2 parents 0388e20 + 0561992 commit 4960606

File tree

165 files changed

+5351
-1927
lines changed

Some content is hidden

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

165 files changed

+5351
-1927
lines changed
 

‎.cfnlintrc.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,16 @@ ignore_templates:
131131
- tests/translator/output/**/function_with_mq.json # Property "EventSourceArn" can Fn::GetAtt to a resource of types [AWS::DynamoDB::GlobalTable, AWS::DynamoDB::Table, AWS::Kinesis::Stream, AWS::Kinesis::StreamConsumer, AWS::SQS::Queue]
132132
- tests/translator/output/**/function_with_mq_using_autogen_role.json # Property "EventSourceArn" can Fn::GetAtt to a resource of types [AWS::DynamoDB::GlobalTable, AWS::DynamoDB::Table, AWS::Kinesis::Stream, AWS::Kinesis::StreamConsumer, AWS::SQS::Queue]
133133
- tests/translator/output/**/function_with_recursive_loop.json # Invalid Property Resources/RecursiveLoopParameterFunction/Properties/RecursiveLoop
134+
- tests/translator/output/**/function_with_sourcekmskeyarn.json # Invalid Property Resources/SourceKMSKeyArnParameterFunction/Properties/SourceKMSKeyArn
134135
- tests/translator/output/**/function_with_tracing.json # Obsolete DependsOn on resource
135136
- tests/translator/output/**/api_with_propagate_tags.json # TODO: Intentional error transform tests. Will be updated.
136137
- tests/translator/output/**/function_with_intrinsics_resource_attribute.json # CFN now supports intrinsics in DeletionPolicy
138+
- tests/translator/output/**/function_with_snapstart.json # Snapstart intentionally not attached to a lambda version which causes lint issues
139+
- tests/translator/output/**/managed_policies_everything.json # intentionally contains wrong arns
137140
ignore_checks:
138141
- E2531 # Deprecated runtime; not relevant for transform tests
142+
- E2533 # Another deprecated runtime; not relevant for transform tests
139143
- W2531 # EOL runtime; not relevant for transform tests
140144
- E3001 # Invalid or unsupported Type; common in transform tests since they focus on SAM resources
141145
- W2001 # Parameter not used
146+
- E3006 # Resource type check; we have some Foo Bar resources

‎DEVELOPMENT_GUIDE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ We format our code using [Black](https://github.com/python/black) and verify the
5959
during PR checks. Black will be installed automatically with `make init`.
6060

6161
After installing, you can run our formatting through our Makefile by `make format` or integrating Black directly in your favorite IDE (instructions
62-
can be found [here](https://black.readthedocs.io/en/stable/editor_integration.html))
62+
can be found [here](https://black.readthedocs.io/en/stable/integrations/editors.html))
6363

6464
##### (Workaround) Integrating Black directly in your favorite IDE
65-
Since black is installed in virtualenv, when you follow [this instruction](https://black.readthedocs.io/en/stable/editor_integration.html), `which black` might give you this
65+
Since black is installed in virtualenv, when you follow [this instruction](https://black.readthedocs.io/en/stable/integrations/editors.html), `which black` might give you this
6666

6767
```bash
6868
(sam38) $ where black

0 commit comments

Comments
 (0)
Failed to load comments.