-
Notifications
You must be signed in to change notification settings - Fork 2.4k
chore: merge release/v1.10.0 into master #843
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or 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
- add EKSDescribePolicy - Gives permission to describe or list Amazon EKS clusters
* Add GSIs to `DynamoDBCrudPolicy'.
Add DynamoDBReconfigurePolicy, which grants the user access to dynamodb:UpdateTable https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html
Per #628, `nose` isn't needed as a dependency anymore.
s3 Buckets and lambdas were being generated but lambda didn't have permissions for s3 buckets. Started using prefix and Sub to intrinsically tie them together to circumvent circular dependency issues.
chore: merge master back into develop
* document new property FilterPolicy in the SNS event source * add unit test for sns event source * implement new property FilterPolicy for SNS event source * reorder the filter elements in the translated CloudFormation templates to align with the order in the original SAM template. * add example lambda_sns_filter_policy * add newline at the end of the yaml file
Bring recent changes in examples/ as well as new CodeCov report feature into develop
…ption (#709) This fixes a bug where the layer logical ids were not changing when intrinsic functions were used in certain fields.
This commit adds a new policy to the policy templates that grants permission to call the filter-log-events API, given a Log Group name.
…ested Apps snippet (#726)
* Adds a fix for #665 * remove comment of code structure * Update samtranslator/model/eventsources/push.py Co-Authored-By: sthulb <[email protected]> * Update samtranslator/model/eventsources/push.py Co-Authored-By: sthulb <[email protected]> * updates regex based on suggestion * adds extra test case for singular /
* Allow Api.Auth in Globals section * Add Auth to expected error for error_globals_api_with_stage_name * Added auth check to globals_for_api * Added valid swagger body to explicitApi for global auth test * Added definition body to us-gov and cn global_for_api tests * Fixed output for normal partition for api globals test * us-gov test for api globals passes * update tests for aws-cn * Updated tests for py27 * Updated other deployment hashes
Properly scoped `Environment` key to `HelloWorldFuntion`'s `Properties`
* Override Auth NONE Added how to make specific Functions public in case of global authorizer configured * docs: fix grammar
keetonian
approved these changes
Mar 6, 2019
jlhood
approved these changes
Mar 6, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do it! 🚀
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
SAM v1.10.0 Release: Conditions for Serverless resources
You can now define conditions on AWS::Serverless resources. Conditions are statements that let you define the circumstances under which resources get created or configured. With this release, you can conditionally create AWS::Serverless resources. For example, if you deploy your serverless application to multiple environments such as test and prod, you can choose to only deploy specific AWS::Serverless::Functions to your test environment. Conditions on AWS::Serverless resources are also applied to other generated resources (#755), and the swagger definitions generated by SAM on AWS::Serverless::Api resources (#804).
Change Log:
Policy Templates
(#620 #686) Add GSIs to DynamoDBReadPolicy and DynamoDBCrudPolicy
(#615) Add DynamoDBReconfigurePolicy
(#426) Add CostExplorerReadOnlyPolicy and OrganizationsListAccountsPolicy
(#556) Add EKSDescribePolicy
(#715) Add SESBulkTemplatedCrudPolicy
(#729) Add FilterLogEventsPolicy
(#625) Add SSMParameterReadPolicy
(#723) Add SESEmailTemplateCrudPolicy
(#769) Add s3:PutObjectAcl to S3CrudPolicy
Other changes
(#464) Add allow_credentials CORS option
(#643) Add support for AccessLogSetting and CanarySetting Serverless::Api properties
(#657 Add support for X-Ray in Serverless::Api
(#786 Add support for MinimumCompressionSize in Serverless::Api
(#682 Add Auth to Serverless::Api globals
(#763 Remove trailing slashes from APIGW permissions
(#648 Add SNS FilterPolicy and an example application
(#690 Add Enabled property to Serverless::Function event sources
(#782 Add support for PermissionsBoundary in Serverless::Function
(#697 Fix boto3 client initialization
(#700 Add PublicAccessBlockConfiguration property to S3 bucket resource
(#705 Make PAY_PER_REQUEST default mode for Serverless::SimpleTable
(#709 Add limited support for resolving intrinsics in Serverless::LayerVersion
(#720 SAM now uses Flake8
(#737 Add example application for S3 Events written in Go
(#604 #632 #644 #741) Updated several example applications