Skip to content

Commit 2799dc8

Browse files
authored
chore(release): v1.60.1 (#3590)
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
1 parent ebcefe6 commit 2799dc8

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
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.
44

5+
## [1.60.1](https://github.com/aws/jsii/compare/v1.60.0...v1.60.1) (2022-06-09)
6+
7+
### Bug Fixes
8+
9+
* **@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))
10+
511
## [1.60.0](https://github.com/aws/jsii/compare/v1.59.0...v1.60.0) (2022-06-08)
612

713

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"rejectCycles": true
1111
}
1212
},
13-
"version": "1.60.0"
13+
"version": "1.60.1"
1414
}

packages/@jsii/check-node/src/constants.ts

-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ export class NodeRelease {
2727
// Past end-of-life releases
2828
new NodeRelease(13, { endOfLife: new Date('2020-06-01') }),
2929
new NodeRelease(15, { endOfLife: new Date('2021-06-01') }),
30-
31-
// Deprecated releases
3230
new NodeRelease(12, {
3331
endOfLife: new Date('2022-04-30'),
3432
supportedRange: '^12.7.0',
+7-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
"extends": "../../../tsconfig-base",
33
"compilerOptions": {
4+
"target": "es2018", // Needs to target older releases of node or else it'll crash on start when using those
45
"outDir": "./lib",
56
"rootDir": "./src",
67
},
7-
"include": ["src/**/*.ts"],
8-
"exclude": ["jest.config.ts"],
8+
"include": [
9+
"src/**/*.ts"
10+
],
11+
"exclude": [
12+
"jest.config.ts"
13+
],
914
}

packages/@jsii/runtime/webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
iife: false,
1919
},
2020
devtool: 'source-map',
21-
target: 'node14.5',
21+
target: 'node12', // Continue to target node 12 so that check-node does not fail to load on it.
2222
node: {
2323
global: false,
2424
__filename: false,

0 commit comments

Comments
 (0)