Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

v4.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Nov 18:40
· 546 commits to master since this release

4.0.0 (2019-11-30)

BREAKING CHANGES

  • This change refactors the DependsOn, Metadata, CreationPolicy,
    UpdatePolicy and DeletionPolicy methods on each resource to a new
    name. This is required, as some CloudFormation resources use these
    keywords as properties (AWS::AppMesh::Route.GrpcRouteMatch has a
    Metadata field for example), which causes a conflict.

resource.DependsOn() method is refactored to resource.AWSCloudFormationDependsOn field.
resource.SetDependsOn() method is refactored to resource.AWSCloudFormationDependsOn field.
resource.Metadata() method is refactored to resource.AWSCloudFormationMetadata field.
resource.SetMetadata() method is refactored to resource.AWSCloudFormationMetadata field.
resource.CreationPolicy() method is refactored to resource.AWSCloudFormationCreationPolicy field.
resource.SetCreationPolicy() method is refactored to resource.AWSCloudFormationCreationPolicy field.
resource.UpdatePolicy() method is refactored to resource.AWSCloudFormationUpdatePolicy field.
resource.SetUpdatePolicy() method is refactored to resource.AWSCloudFormationUpdatePolicy field.
resource.DeletionPolicy() method is refactored to resource.AWSCloudFormationDeletionPolicy field.
resource.SetDeletionPolicy() method is refactored to resource.AWSCloudFormationDeletionPolicy field.