Skip to content

Commit d7a3cd4

Browse files
author
Eugene Cheung
authored
feat!: use stable appsync module (#303)
BREAKING CHANGE: requires aws-cdk-lib@^2.60.0 The AppSync module was promoted to stable in https://github.com/aws/aws-cdk/releases/tag/v2.60.0. The peer dependency change is a breaking change, so this bumps this library up to v2. --- _By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license_
1 parent 3ebf3db commit d7a3cd4

30 files changed

+784
-390
lines changed

.projen/deps.json

Lines changed: 11 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/tasks.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const { awscdk, javascript, DependencyType } = require("projen");
22
const { workflows } = require("projen/lib/github");
33

4-
const CDK_VERSION = "2.18.0";
4+
const CDK_VERSION = "2.60.0";
55

66
const project = new awscdk.AwsCdkConstructLibrary({
77
name: "cdk-monitoring-constructs",
@@ -11,7 +11,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
1111
keywords: ["cloudwatch", "monitoring"],
1212

1313
defaultReleaseBranch: "main",
14-
majorVersion: 1,
14+
majorVersion: 2,
1515
stability: "experimental",
1616

1717
cdkVersion: CDK_VERSION,
@@ -79,7 +79,6 @@ _By submitting this pull request, I confirm that my contribution is made under t
7979
// Experimental modules
8080
[
8181
"@aws-cdk/aws-apigatewayv2-alpha",
82-
"@aws-cdk/aws-appsync-alpha",
8382
"@aws-cdk/aws-redshift-alpha",
8483
"@aws-cdk/aws-synthetics-alpha",
8584
].forEach((dep) => {

0 commit comments

Comments
 (0)