Skip to content

Commit

Permalink
Merge pull request #567 from aws-quickstart/tasks/1.5.4-release-prep
Browse files Browse the repository at this point in the history
1.5.4 Release
  • Loading branch information
shapirov103 authored Jan 13, 2023
2 parents 2323118 + e775d66 commit 5d98348
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @aws-quickstart/ssp-eks-internal @aws-ia-ci @aws-quickstart/aws_quickstart_team @askulkarni2 @parkand1 @shapirov10
* @aws-quickstart/ssp-eks-internal @aws-ia-ci @aws-quickstart/aws_quickstart_team @askulkarni2 @parkand1 @shapirov103 youngjeong46
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.59.0
npm install -g aws-cdk@2.60.0
```

Verify the installation.

```bash
cdk --version
# must output 2.59.0
# must output 2.60.0
```

Create a new CDK project. We use `typescript` for this example.
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.59.0
npm install -g aws-cdk@2.60.0
```

Verify the installation.

```bash
cdk --version
# must output 2.59.0
# must output 2.60.0
```

Create a new CDK project. We use `typescript` for this example.
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Create a directory that represents you project (e.g. `my-blueprints`) and then c

```bash
n stable # may require sudo
npm install -g aws-cdk@2.59.0 # may require sudo (Ubuntu) depending on configuration
cdk --version # must produce 2.59.0
npm install -g aws-cdk@2.60.0 # may require sudo (Ubuntu) depending on configuration
cdk --version # must produce 2.60.0
mkdir my-blueprints
cd my-blueprints
cdk init app --language typescript
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/aws-loadbalancer-controller/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const defaultProps: AwsLoadBalancerControllerProps = {
chart: AWS_LOAD_BALANCER_CONTROLLER,
repository: 'https://aws.github.io/eks-charts',
release: AWS_LOAD_BALANCER_CONTROLLER,
version: '1.4.6',
version: '1.4.7',
enableShield: false,
enableWaf: false,
enableWafv2: false,
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/nginx/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const defaultProps: NginxAddOnProps = {
name: "nginx-ingress",
chart: "nginx-ingress",
release: "blueprints-addon-nginx",
version: "0.15.2",
version: "0.16.0",
repository: "https://helm.nginx.com/stable",
backendProtocol: 'tcp',
crossZoneEnabled: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/pipelines/code-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ class CodePipeline {
input: codePipelineSource,
installCommands: [
'n stable',
'npm install -g aws-cdk@2.59.0',
'npm install -g aws-cdk@2.60.0',
'npm install',
],
commands: ['npm run build', 'npx cdk synth']
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-quickstart/eks-blueprints",
"version": "1.5.3",
"version": "1.5.4",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -19,7 +19,7 @@
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"aws-cdk": "2.59.0",
"aws-cdk": "2.60.0",
"copyfiles": "^2.4.1",
"eslint": "^8.26.0",
"jest": "^29.2.2",
Expand All @@ -36,7 +36,7 @@
"@types/assert": "^1.5.6",
"@types/bcrypt": "^5.0.0",
"@types/lodash.clonedeep": "^4.5.7",
"aws-cdk-lib": "2.59.0",
"aws-cdk-lib": "2.60.0",
"aws-sdk": "2.1260.0",
"bcrypt": "^5.1.0",
"dot-object": "^2.1.4",
Expand Down

0 comments on commit 5d98348

Please sign in to comment.