v28.0.0
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.