Skip to content

Commit

Permalink
chore(release): v1.60.1 (#3590)
Browse files Browse the repository at this point in the history
See CHANGELOG.

---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
  • Loading branch information
RomainMuller committed Jun 9, 2022
1 parent ebcefe6 commit 2799dc8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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.60.1](https://github.com/aws/jsii/compare/v1.60.0...v1.60.1) (2022-06-09)

### Bug Fixes

* **@aws-cdk/check-node** fails to load on older (EOL) releases of node ([#3588](https://github.com/aws/jsii/pull/3588)) ([a1582bf](https://github.com/aws/jsii/commit/a1582bf7d9cc4081dd89e51efb4b3bc76b6e407e))

## [1.60.0](https://github.com/aws/jsii/compare/v1.59.0...v1.60.0) (2022-06-08)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"rejectCycles": true
}
},
"version": "1.60.0"
"version": "1.60.1"
}
2 changes: 0 additions & 2 deletions packages/@jsii/check-node/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ export class NodeRelease {
// Past end-of-life releases
new NodeRelease(13, { endOfLife: new Date('2020-06-01') }),
new NodeRelease(15, { endOfLife: new Date('2021-06-01') }),

// Deprecated releases
new NodeRelease(12, {
endOfLife: new Date('2022-04-30'),
supportedRange: '^12.7.0',
Expand Down
9 changes: 7 additions & 2 deletions packages/@jsii/check-node/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "../../../tsconfig-base",
"compilerOptions": {
"target": "es2018", // Needs to target older releases of node or else it'll crash on start when using those
"outDir": "./lib",
"rootDir": "./src",
},
"include": ["src/**/*.ts"],
"exclude": ["jest.config.ts"],
"include": [
"src/**/*.ts"
],
"exclude": [
"jest.config.ts"
],
}
2 changes: 1 addition & 1 deletion packages/@jsii/runtime/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {
iife: false,
},
devtool: 'source-map',
target: 'node14.5',
target: 'node12', // Continue to target node 12 so that check-node does not fail to load on it.
node: {
global: false,
__filename: false,
Expand Down

0 comments on commit 2799dc8

Please sign in to comment.