Skip to content

v28.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Nov 12:32
· 2311 commits to main since this release
2bf57ee

28.0.0 (2021-11-09)

BREAKING CHANGES

  • AppIdentity is required in more places.

Arguments for withStageDependentValue on GuStack now require an AppIdentity.
Add an app property to the function arguments.

From:

scope.withStageDependentValue({
  variableName: "something",
  stageValues: {
    [Stage.CODE]: "value-for-code-stage",
    [Stage.PROD]: "value-for-prod-stage",
  },
})

To:

scope.withStageDependentValue({
  app: "my-app", // <- new
  variableName: "something",
  stageValues: {
    [Stage.CODE]: "value-for-code-stage",
    [Stage.PROD]: "value-for-prod-stage",
  },
})

GuAlarm now requires an AppIdentity when instantiated.