diff --git a/README.md b/README.md index 52c007d1e..15f0e57e7 100644 --- a/README.md +++ b/README.md @@ -44,14 +44,14 @@ aws --version Install CDK matching the current version of the Blueprints QuickStart (which can be found in package.json). ```bash -npm install -g aws-cdk@2.114.1 +npm install -g aws-cdk@2.115.0 ``` Verify the installation. ```bash cdk --version -# must output 2.114.1 +# must output 2.115.0 ``` Create a new CDK project. We use `typescript` for this example. diff --git a/docs/README.md b/docs/README.md index d61694adf..68ae27c8d 100644 --- a/docs/README.md +++ b/docs/README.md @@ -44,14 +44,14 @@ aws --version Install CDK matching the current version of the Blueprints QuickStart (which can be found in package.json). ```bash -npm install -g aws-cdk@2.114.1 +npm install -g aws-cdk@2.115.0 ``` Verify the installation. ```bash cdk --version -# must output 2.114.1 +# must output 2.115.0 ``` Create a new CDK project. We use `typescript` for this example. diff --git a/docs/getting-started.md b/docs/getting-started.md index e45057154..e9e5a7646 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -26,8 +26,8 @@ Create a directory that represents you project (e.g. `my-blueprints`) and then c ```bash npm install -g n # may require sudo n stable # may require sudo -npm install -g aws-cdk@2.114.1 # may require sudo (Ubuntu) depending on configuration -cdk --version # must produce 2.114.1 +npm install -g aws-cdk@2.115.0 # may require sudo (Ubuntu) depending on configuration +cdk --version # must produce 2.115.0 mkdir my-blueprints cd my-blueprints cdk init app --language typescript diff --git a/docs/internal/ci.md b/docs/internal/ci.md index 912b0ca85..a835369c9 100644 --- a/docs/internal/ci.md +++ b/docs/internal/ci.md @@ -19,7 +19,7 @@ cd cdk-eks-blueprints Install CDK (please review and install any missing [pre-requisites](https://docs.aws.amazon.com/cdk/latest/guide/getting_started.html) for your environment) ```sh -npm install -g aws-cdk@2.114.1 +npm install -g aws-cdk@2.115.0 ``` Install the dependencies for this project. diff --git a/lib/addons/appmesh/index.ts b/lib/addons/appmesh/index.ts index 32ba7c8cd..3cddedc6c 100644 --- a/lib/addons/appmesh/index.ts +++ b/lib/addons/appmesh/index.ts @@ -45,7 +45,7 @@ const defaultProps = { name: "appmesh-controller", namespace: "appmesh-system", chart: "appmesh-controller", - version: "1.12.5", + version: "1.12.7", release: "appmesh-release", repository: "https://aws.github.io/eks-charts" }; diff --git a/lib/addons/fluxcd/index.ts b/lib/addons/fluxcd/index.ts index 891a282dc..445cf7ed8 100644 --- a/lib/addons/fluxcd/index.ts +++ b/lib/addons/fluxcd/index.ts @@ -95,7 +95,7 @@ const defaultProps: HelmAddOnProps & FluxCDAddOnProps = { name: "fluxcd-addon", namespace: "flux-system", chart: "flux2", - version: "2.12.0", + version: "2.12.1", release: "blueprints-fluxcd-addon", repository: "https://fluxcd-community.github.io/helm-charts", values: {}, diff --git a/lib/pipelines/code-pipeline.ts b/lib/pipelines/code-pipeline.ts index a2df73b4a..0d2f1eb54 100644 --- a/lib/pipelines/code-pipeline.ts +++ b/lib/pipelines/code-pipeline.ts @@ -441,7 +441,7 @@ class CodePipeline { input: codePipelineSource, installCommands: [ 'n stable', - 'npm install -g aws-cdk@2.114.1', + 'npm install -g aws-cdk@2.115.0', `cd ${path} && npm install`, ], commands: [`cd ${path}`, 'npm run build', 'npx cdk synth ' + app] diff --git a/package.json b/package.json index 1f13602f6..5617ccf30 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "@types/uuid": "^9.0.7", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", - "aws-cdk": "2.114.1", + "aws-cdk": "2.115.0", "copyfiles": "^2.4.1", "eslint": "^8.55.0", "jest": "^29.7.0", @@ -47,7 +47,7 @@ "@types/bcrypt": "^5.0.2", "@types/lodash.clonedeep": "^4.5.9", "@types/uuid": "^9.0.7", - "aws-cdk-lib": "2.114.1", + "aws-cdk-lib": "2.115.0", "bcrypt": "^5.1.1", "constructs": "^10.3.0", "dot-object": "^2.1.4",