💥 Breaking Change in CDK
If you are using "HttpUserPoolAuthorizer" from "@aws-cdk/aws-apigatewayv2-authorizers", userPoolClient
is now renamed to userPoolClients
. Chage this:
new HttpUserPoolAuthorizer({
userPool,
userPoolClient,
})
to:
new HttpUserPoolAuthorizer({
userPool,
userPoolClients: [userPoolClient],
})
🐛 Bug Fix
- #1050 Update CDK to v1.132.0 (@fwang)
- #1051 EventBus: fix event bus cannot be imported by name (@fwang)
- #1052 Console: incorrect route path in Api panel for custom stage (@fwang)
- #1053 Table: add instructions for importing tables with stream enabled (@fwang)
- #1054 Core: after a deploy failure, redeploy detects no changes (@fwang)
📝 Documentation
- #997 Added Sentry example (@Manitej66)
- #989 added Datadog example (@Manitej66)
Contributors
- Maniteja Pratha (@Manitej66)