Skip to content

v49.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Dec 08:08
· 1232 commits to main since this release
5aeb850

49.0.0 (2022-12-14)

  • refactor(GuSnsTopic)!: Remove GuSnsTopic construct (20e8a8e)

BREAKING CHANGES

  • GuSnsTopic is removed.

Use AWS's Topic directly instead.

// before
import { GuSnsTopic } from "../sns";
new GuSnsTopic();

// after
import { Topic } from "aws-cdk-lib/aws-sns";
new Topic();