Skip to content

Commit

Permalink
Merge pull request #705 from aws/bump/0.42.0
Browse files Browse the repository at this point in the history
chore(release): 0.42.0
  • Loading branch information
jericht authored Jun 20, 2022
2 parents e61d72c + f87a9d8 commit 141d281
Show file tree
Hide file tree
Showing 46 changed files with 3,794 additions and 3,758 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
auto-approve:
runs-on: ubuntu-latest
steps:
- uses: hmarr/auto-approve-action@v2.1.0
- uses: hmarr/auto-approve-action@v2.2.1
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
-
name: Run Labeler
if: success()
uses: crazy-max/ghaction-github-labeler@v3.1.1
uses: crazy-max/ghaction-github-labeler@v4.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/config/labels.yml
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.42.0](https://github.com/aws/aws-rfdk/compare/v0.41.0...v0.42.0) (2022-06-18)


### Supported CDK Version

* [1.160.0](https://github.com/aws/aws-cdk/releases/tag/v1.160.0)


### Officially Supported Deadline Versions

* [10.1.9.2 to 10.1.21.4](https://docs.thinkboxsoftware.com/products/deadline/10.1/1_User%20Manual/manual/release-notes.html)


### ⚠ BREAKING CHANGES

* **deps:** The minimum supported version of Node.js has been
changed to Node.js 14

### Bug Fixes

* **lambda-layers:** add ap-southeast-3 to region deny list ([#685](https://github.com/aws/aws-rfdk/issues/685)) ([6806951](https://github.com/aws/aws-rfdk/commit/6806951ae664840f3baf9ea250617da82d31df9d))

## [0.41.0](https://github.com/aws/aws-rfdk/compare/v0.40.0...v0.41.0) (2022-04-01)


Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ and let us know if it's not up-to-date (even better, submit a PR with your corr
The RFDK is written in Typescript and converted, using [jsii](https://github.com/aws/jsii), into Python. Thus, the
minimal development environment must include:

- Node.js >= 12.18.3
- Node.js >= 14.19.3
- docker >= 18

We also recommend developing on a Linux system.
Expand All @@ -39,10 +39,10 @@ the [instructions](https://github.com/nvm-sh/nvm#installing-and-updating) to ins
then you can install a version of Node.js and set your shell to make it available when you login:

```bash
# For example, the latest version of Node.js 12.x
# For example, the latest version of Node.js 14.x

# Find out the version number for latest
LATEST_VERSION=$(nvm ls-remote | grep v12 | grep 'Latest' | awk '{print $1}')
LATEST_VERSION=$(nvm ls-remote | grep v14 | grep 'Latest' | awk '{print $1}')

# Install it
nvm install ${LATEST_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ It offers high-level object-oriented abstractions to define render farm infrastr
using the power of Python and Typescript.

The RFDK is available in:
- Javascript, Typescript ([Node.js >= 12.18.3](https://nodejs.org/download/release/latest-v12.x/))
- Javascript, Typescript ([Node.js >= 14.19.3](https://nodejs.org/download/release/latest-v14.x/))
- We recommend using an [Active LTS Release](https://nodejs.org/en/about/releases/)
- Python ([Python >= 3.6](https://www.python.org/downloads/))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
packages=setuptools.find_packages(where="package"),

install_requires=[
"aws-cdk.core==1.138.0",
"aws-rfdk==0.41.0"
"aws-cdk.core==1.160.0",
"aws-rfdk==0.42.0"
],

python_requires=">=3.7",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "all-in-farm-basic",
"version": "0.41.0",
"version": "0.42.0",
"bin": {
"app": "bin/app.js"
},
Expand All @@ -13,14 +13,14 @@
"watch": "tsc -w"
},
"devDependencies": {
"@types/node": "^17.0.2",
"aws-cdk": "1.149.0",
"ts-node": "^10.4.0",
"typescript": "~4.5.4"
"@types/node": "^18.0.0",
"aws-cdk": "1.160.0",
"ts-node": "^10.8.1",
"typescript": "~4.7.3"
},
"dependencies": {
"@aws-cdk/core": "1.149.0",
"aws-rfdk": "0.41.0",
"@aws-cdk/core": "1.160.0",
"aws-rfdk": "0.42.0",
"source-map-support": "^0.5.21"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
packages=setuptools.find_packages(where="package"),

install_requires=[
"aws-cdk.core==1.138.0",
"aws-rfdk==0.41.0"
"aws-cdk.core==1.160.0",
"aws-rfdk==0.42.0"
],

python_requires=">=3.7",
Expand Down
14 changes: 7 additions & 7 deletions examples/deadline/All-In-AWS-Infrastructure-SEP/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "all-in-farm-sep",
"version": "0.41.0",
"version": "0.42.0",
"bin": {
"app": "bin/app.js"
},
Expand All @@ -18,14 +18,14 @@
"watch": "tsc -w"
},
"devDependencies": {
"@types/node": "^17.0.2",
"aws-cdk": "1.149.0",
"ts-node": "^10.4.0",
"typescript": "~4.5.4"
"@types/node": "^18.0.0",
"aws-cdk": "1.160.0",
"ts-node": "^10.8.1",
"typescript": "~4.7.3"
},
"dependencies": {
"@aws-cdk/core": "1.149.0",
"aws-rfdk": "0.41.0",
"@aws-cdk/core": "1.160.0",
"aws-rfdk": "0.42.0",
"source-map-support": "^0.5.21"
}
}
12 changes: 6 additions & 6 deletions examples/deadline/EC2-Image-Builder/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
packages=setuptools.find_packages(where="package"),

install_requires=[
"aws-cdk.aws-iam==1.138.0",
"aws-cdk.aws-imagebuilder==1.138.0",
"aws-cdk.aws-ec2==1.138.0",
"aws-cdk.aws-s3-assets==1.138.0",
"aws-cdk.core==1.138.0",
"aws-rfdk==0.41.0",
"aws-cdk.aws-iam==1.160.0",
"aws-cdk.aws-imagebuilder==1.160.0",
"aws-cdk.aws-ec2==1.160.0",
"aws-cdk.aws-s3-assets==1.160.0",
"aws-cdk.core==1.160.0",
"aws-rfdk==0.42.0",
],

python_requires=">=3.7",
Expand Down
22 changes: 11 additions & 11 deletions examples/deadline/EC2-Image-Builder/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "all-in-farm-image-builder",
"version": "0.41.0",
"version": "0.42.0",
"bin": {
"app": "bin/app.js"
},
Expand All @@ -14,17 +14,17 @@
"watch": "tsc -w"
},
"devDependencies": {
"@types/node": "^17.0.2",
"aws-cdk": "1.149.0",
"ts-node": "^10.4.0",
"typescript": "~4.5.4"
"@types/node": "^18.0.0",
"aws-cdk": "1.160.0",
"ts-node": "^10.8.1",
"typescript": "~4.7.3"
},
"dependencies": {
"@aws-cdk/aws-ec2": "1.149.0",
"@aws-cdk/aws-iam": "1.149.0",
"@aws-cdk/aws-imagebuilder": "1.149.0",
"@aws-cdk/aws-s3-assets": "1.149.0",
"@aws-cdk/core": "1.149.0",
"aws-rfdk": "0.41.0"
"@aws-cdk/aws-ec2": "1.160.0",
"@aws-cdk/aws-iam": "1.160.0",
"@aws-cdk/aws-imagebuilder": "1.160.0",
"@aws-cdk/aws-s3-assets": "1.160.0",
"@aws-cdk/core": "1.160.0",
"aws-rfdk": "0.42.0"
}
}
10 changes: 5 additions & 5 deletions examples/deadline/Local-Zone/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
packages=setuptools.find_packages(where="package"),

install_requires=[
"aws-cdk.aws-ec2==1.138.0",
"aws-cdk.aws-elasticloadbalancingv2==1.138.0",
"aws-cdk.aws-route53==1.138.0",
"aws-cdk.core==1.138.0",
"aws-rfdk==0.41.0",
"aws-cdk.aws-ec2==1.160.0",
"aws-cdk.aws-elasticloadbalancingv2==1.160.0",
"aws-cdk.aws-route53==1.160.0",
"aws-cdk.core==1.160.0",
"aws-rfdk==0.42.0",
"jsii==1.50.0",
],

Expand Down
20 changes: 10 additions & 10 deletions examples/deadline/Local-Zone/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "all-in-farm-local-zone",
"version": "0.41.0",
"version": "0.42.0",
"bin": {
"app": "bin/app.js"
},
Expand All @@ -13,17 +13,17 @@
"watch": "tsc -w"
},
"devDependencies": {
"@types/node": "^17.0.2",
"aws-cdk": "1.149.0",
"ts-node": "^10.4.0",
"typescript": "~4.5.4"
"@types/node": "^18.0.0",
"aws-cdk": "1.160.0",
"ts-node": "^10.8.1",
"typescript": "~4.7.3"
},
"dependencies": {
"@aws-cdk/aws-ec2": "1.149.0",
"@aws-cdk/aws-elasticloadbalancingv2": "1.149.0",
"@aws-cdk/aws-route53": "1.149.0",
"@aws-cdk/core": "1.149.0",
"aws-rfdk": "0.41.0",
"@aws-cdk/aws-ec2": "1.160.0",
"@aws-cdk/aws-elasticloadbalancingv2": "1.160.0",
"@aws-cdk/aws-route53": "1.160.0",
"@aws-cdk/core": "1.160.0",
"aws-rfdk": "0.42.0",
"source-map-support": "^0.5.21"
}
}
100 changes: 50 additions & 50 deletions integ/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "integ",
"version": "0.41.0",
"version": "0.42.0",
"private": false,
"description": "Integration tests for RFDK constructs",
"bin": {
Expand Down Expand Up @@ -55,62 +55,62 @@
"pkglint": "pkglint -f"
},
"devDependencies": {
"@aws-cdk/assert": "1.149.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"aws-cdk": "1.149.0",
"eslint": "^8.6.0",
"@aws-cdk/assert": "1.160.0",
"@types/jest": "^27.5.2",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"aws-cdk": "1.160.0",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-license-header": "^0.3.0",
"jest": "^27.4.5",
"pkglint": "0.41.0",
"ts-jest": "^27.1.4",
"typescript": "~4.5.4"
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-license-header": "^0.4.0",
"jest": "^27.5.1",
"pkglint": "0.42.0",
"ts-jest": "^27.1.5",
"typescript": "~4.7.3"
},
"dependencies": {
"@aws-cdk/aws-autoscaling": "1.149.0",
"@aws-cdk/aws-docdb": "1.149.0",
"@aws-cdk/aws-ec2": "1.149.0",
"@aws-cdk/aws-ecr": "1.149.0",
"@aws-cdk/aws-ecs": "1.149.0",
"@aws-cdk/aws-efs": "1.149.0",
"@aws-cdk/aws-elasticloadbalancingv2": "1.149.0",
"@aws-cdk/aws-iam": "1.149.0",
"@aws-cdk/aws-logs": "1.149.0",
"@aws-cdk/aws-route53": "1.149.0",
"@aws-cdk/aws-s3": "1.149.0",
"@aws-cdk/aws-s3-assets": "1.149.0",
"@aws-cdk/aws-secretsmanager": "1.149.0",
"@aws-cdk/core": "1.149.0",
"@aws-sdk/client-cloudformation": "^3.57.0",
"@aws-sdk/client-cloudwatch-logs": "^3.57.0",
"@aws-sdk/client-secrets-manager": "^3.57.0",
"@aws-sdk/client-ssm": "^3.57.0",
"aws-rfdk": "0.41.0"
"@aws-cdk/aws-autoscaling": "1.160.0",
"@aws-cdk/aws-docdb": "1.160.0",
"@aws-cdk/aws-ec2": "1.160.0",
"@aws-cdk/aws-ecr": "1.160.0",
"@aws-cdk/aws-ecs": "1.160.0",
"@aws-cdk/aws-efs": "1.160.0",
"@aws-cdk/aws-elasticloadbalancingv2": "1.160.0",
"@aws-cdk/aws-iam": "1.160.0",
"@aws-cdk/aws-logs": "1.160.0",
"@aws-cdk/aws-route53": "1.160.0",
"@aws-cdk/aws-s3": "1.160.0",
"@aws-cdk/aws-s3-assets": "1.160.0",
"@aws-cdk/aws-secretsmanager": "1.160.0",
"@aws-cdk/core": "1.160.0",
"@aws-sdk/client-cloudformation": "^3.110.0",
"@aws-sdk/client-cloudwatch-logs": "^3.110.0",
"@aws-sdk/client-secrets-manager": "^3.110.0",
"@aws-sdk/client-ssm": "^3.110.0",
"aws-rfdk": "0.42.0"
},
"peerDependencies": {
"@aws-cdk/aws-autoscaling": "1.149.0",
"@aws-cdk/aws-docdb": "1.149.0",
"@aws-cdk/aws-ec2": "1.149.0",
"@aws-cdk/aws-ecr": "1.149.0",
"@aws-cdk/aws-ecs": "1.149.0",
"@aws-cdk/aws-efs": "1.149.0",
"@aws-cdk/aws-elasticloadbalancingv2": "1.149.0",
"@aws-cdk/aws-iam": "1.149.0",
"@aws-cdk/aws-logs": "1.149.0",
"@aws-cdk/aws-route53": "1.149.0",
"@aws-cdk/aws-s3": "1.149.0",
"@aws-cdk/aws-s3-assets": "1.149.0",
"@aws-cdk/aws-secretsmanager": "1.149.0",
"@aws-cdk/core": "1.149.0",
"aws-rfdk": "0.41.0"
"@aws-cdk/aws-autoscaling": "1.160.0",
"@aws-cdk/aws-docdb": "1.160.0",
"@aws-cdk/aws-ec2": "1.160.0",
"@aws-cdk/aws-ecr": "1.160.0",
"@aws-cdk/aws-ecs": "1.160.0",
"@aws-cdk/aws-efs": "1.160.0",
"@aws-cdk/aws-elasticloadbalancingv2": "1.160.0",
"@aws-cdk/aws-iam": "1.160.0",
"@aws-cdk/aws-logs": "1.160.0",
"@aws-cdk/aws-route53": "1.160.0",
"@aws-cdk/aws-s3": "1.160.0",
"@aws-cdk/aws-s3-assets": "1.160.0",
"@aws-cdk/aws-secretsmanager": "1.160.0",
"@aws-cdk/core": "1.160.0",
"aws-rfdk": "0.42.0"
},
"engines": {
"node": ">= 12.18.3 <13 || >=13.7.0"
"node": ">= 14.15.0"
}
}
Loading

0 comments on commit 141d281

Please sign in to comment.