Skip to content

Commit

Permalink
chore(release): 1.33.0 (#2954)
Browse files Browse the repository at this point in the history
See CHANGELOG
  • Loading branch information
RomainMuller authored Aug 16, 2021
2 parents 3f4fe23 + 6b6c144 commit 7951e32
Show file tree
Hide file tree
Showing 83 changed files with 3,776 additions and 2,828 deletions.
10 changes: 10 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -1177,6 +1177,16 @@
"contributions": [
"doc"
]
},
{
"login": "Nycto",
"name": "James",
"avatar_url": "https://avatars.githubusercontent.com/u/30517?v=4",
"profile": "https://github.com/Nycto",
"contributions": [
"bug",
"code"
]
}
],
"repoType": "github",
Expand Down
48 changes: 24 additions & 24 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
contents: read
runs-on: ubuntu-latest
steps:
# Check out the code
- name: Check out
uses: actions/checkout@v2.3.4
# Set up all of our standard runtimes
- name: Set up .NET 5
uses: actions/setup-dotnet@v1
Expand All @@ -38,17 +41,16 @@ jobs:
java-version: '8'
distribution: 'zulu'
- name: Set up Node 12
uses: actions/setup-node@v2.3.0
uses: actions/setup-node@v2.4.0
with:
cache: yarn
node-version: '12'
- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
python-version: '3.6'
- name: Install python3-venv
run: sudo apt install -y python3-venv
- name: Check out
uses: actions/checkout@v2.3.4
- name: Locate Caches
id: cache-locations
run: |-
Expand All @@ -58,13 +60,11 @@ jobs:
echo "::endgroup"
echo "::set-output name=pip-cache::$(python3 -m pip cache dir)"
echo "::set-output name=yarn-cache::$(yarn cache dir)"
- name: Cache
uses: actions/cache@v2.1.6
with:
path: |-
${{ steps.cache-locations.outputs.pip-cache }}
${{ steps.cache-locations.outputs.yarn-cache }}
~/.m2/repository
!~/.m2/repository/software/amazon/jsii/
~/.nuget/packages
Expand Down Expand Up @@ -117,6 +117,9 @@ jobs:
contents: read
runs-on: ubuntu-latest
steps:
# Check out the code
- name: Check out
uses: actions/checkout@v2.3.4
# Set up all of our standard runtimes
- name: Set up .NET 5
uses: actions/setup-dotnet@v1
Expand All @@ -132,17 +135,16 @@ jobs:
java-version: '8'
distribution: 'zulu'
- name: Set up Node 12
uses: actions/setup-node@v2.3.0
uses: actions/setup-node@v2.4.0
with:
cache: yarn
node-version: '12'
- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
python-version: '3.6'
- name: Install python3-venv
run: sudo apt install -y python3-venv
- name: Check out
uses: actions/checkout@v2.3.4
- name: Locate Caches
id: cache-locations
run: |-
Expand All @@ -152,13 +154,11 @@ jobs:
echo "::endgroup"
echo "::set-output name=pip-cache::$(python3 -m pip cache dir)"
echo "::set-output name=yarn-cache::$(yarn cache dir)"
- name: Cache
uses: actions/cache@v2.1.6
with:
path: |-
${{ steps.cache-locations.outputs.pip-cache }}
${{ steps.cache-locations.outputs.yarn-cache }}
~/.m2/repository
!~/.m2/repository/software/amazon/jsii/
~/.nuget/packages
Expand Down Expand Up @@ -276,6 +276,18 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
# Check out the code
- name: Download Artifact
uses: actions/download-artifact@v2
with:
name: built-tree
- name: Extract Artifact
run: |-
echo "::group::Untar Archive"
tar zxvf built-tree.tgz
echo "::endgroup"
rm built-tree.tgz
# Set up all of our standard runtimes (this is matrix-based)
- name: Set up .NET ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v1
Expand All @@ -292,8 +304,9 @@ jobs:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Set up Node ${{ matrix.node }}
uses: actions/setup-node@v2.3.0
uses: actions/setup-node@v2.4.0
with:
cache: yarn
node-version: ${{ matrix.node }}
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
Expand All @@ -302,17 +315,6 @@ jobs:
- name: 'Linux: Install python3-venv'
if: runner.os == 'Linux'
run: sudo apt install -y python3-venv
- name: Download Artifact
uses: actions/download-artifact@v2
with:
name: built-tree
- name: Extract Artifact
run: |-
echo "::group::Untar Archive"
tar zxvf built-tree.tgz
echo "::endgroup"
rm built-tree.tgz
- name: Locate Caches
id: cache-locations
run: |-
Expand All @@ -322,13 +324,11 @@ jobs:
echo "::endgroup"
echo "::set-output name=pip-cache::$(python3 -m pip cache dir)"
echo "::set-output name=yarn-cache::$(yarn cache dir)"
- name: Cache
uses: actions/cache@v2.1.6
with:
path: |-
${{ steps.cache-locations.outputs.pip-cache }}
${{ steps.cache-locations.outputs.yarn-cache }}
~/.m2/repository
!~/.m2/repository/software/amazon/jsii/
~/.nuget/packages
Expand Down
19 changes: 4 additions & 15 deletions .github/workflows/yarn-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,19 @@ jobs:
upgrade:
name: Yarn Upgrade
permissions:
content: read
contents: read
runs-on: ubuntu-latest
steps:

- name: Check Out
uses: actions/checkout@v2.3.4

- name: Set up Node
uses: actions/setup-node@v2.3.0
uses: actions/setup-node@v2.4.0
with:
cache: yarn
node-version: 10

- name: Locate Yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Restore Yarn cache
uses: actions/cache@v2.1.6
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |-
${{ runner.os }}-yarn-
- name: Install Tools
run: |-
npm -g install lerna npm-check-updates@^9.0.0
Expand Down Expand Up @@ -97,7 +86,7 @@ jobs:
# Upgrade all other dependencies (devDependencies) to the latest
lerna exec --parallel ncu -- --upgrade --target=latest \
--reject='@types/fs-extra,typescript,${{ steps.production-dependencies.outputs.list }},${{ steps.monorepo-packages.outputs.list }}'
--reject='@types/node,@types/fs-extra,typescript,${{ steps.production-dependencies.outputs.list }},${{ steps.monorepo-packages.outputs.list }}'
# This will ensure the current lockfile is up-to-date with the dependency specifications (necessary for "yarn update" to run)
- name: Run "yarn install"
Expand Down
2 changes: 1 addition & 1 deletion .mergify/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pull_request_rules:
label:
add: [contribution/core]
conditions:
- author~=^(eladb|RomainMuller|garnaat|nija-at|skinny85|rix0rrr|NGL321|Jerry-AWS|SomayaB|MrArnoldPalmer|NetaNir|iliapolo|njlynch|madeline-k|BenChaimberg)$
- author~=^(eladb|RomainMuller|garnaat|nija-at|skinny85|rix0rrr|NGL321|Jerry-AWS|SomayaB|MrArnoldPalmer|NetaNir|iliapolo|njlynch|madeline-k|BenChaimberg|comcalvi|kaizen3031593|Chriscbr)$
- -label~="contribution/core"
- name: Tell them we're good now
actions:
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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.

## [1.33.0](https://github.com/aws/jsii/compare/v1.32.0...v1.33.0) (2021-08-16)


### Features

* node runtime version check ([#2948](https://github.com/aws/jsii/issues/2948)) ([f0a9ec6](https://github.com/aws/jsii/commit/f0a9ec6d9275be5126bcb2a455d43df2107a9262))


### Bug Fixes

* **java:** Disable covariants for java builder params ([#2853](https://github.com/aws/jsii/issues/2853)) ([e729f5d](https://github.com/aws/jsii/commit/e729f5d53311224b9b742d024dc4cdf768e24e48)), closes [#2839](https://github.com/aws/jsii/issues/2839)
* **java:** implemented interface is not registered ([#2952](https://github.com/aws/jsii/issues/2952)) ([99da7a6](https://github.com/aws/jsii/commit/99da7a690a75bd6347fa5da15318c0f262b606a8)), closes [#2951](https://github.com/aws/jsii/issues/2951)

## [1.32.0](https://github.com/aws/jsii/compare/v1.30.0...v1.32.0) (2021-07-22)


Expand Down
Loading

0 comments on commit 7951e32

Please sign in to comment.