Skip to content

Commit e429c41

Browse files
authored
v0.7.15 (#368)
### Bug Fixes * **jsii-pacmack:** default to target directory mode ([#363](#363)) ([967d917](967d917)) * **java-runtime:** Bump version of Jackson because of CVEs ([#362](#362)) ([140aa4d](140aa4d)) * **jsii:** detect double interface member declarations ([#360](#360)) ([b2b2c89](b2b2c89)), closes [#340](#340)
1 parent e16d904 commit e429c41

File tree

91 files changed

+15784
-4454
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+15784
-4454
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="0.7.15"></a>
7+
## [0.7.15](https://github.com/awslabs/jsii/compare/v0.7.14...v0.7.15) (2019-02-27)
8+
9+
10+
### Bug Fixes
11+
12+
* **jsii-pacmack:** default to target directory mode ([#363](https://github.com/awslabs/jsii/issues/363)) ([967d917](https://github.com/awslabs/jsii/commit/967d917))
13+
* **java-runtime:** Bump version of Jackson because of CVEs ([#362](https://github.com/awslabs/jsii/issues/362)) ([140aa4d](https://github.com/awslabs/jsii/commit/140aa4d))
14+
* **jsii:** detect double interface member declarations ([#360](https://github.com/awslabs/jsii/issues/360)) ([b2b2c89](https://github.com/awslabs/jsii/commit/b2b2c89)), closes [#340](https://github.com/awslabs/jsii/issues/340)
15+
16+
17+
18+
619
<a name="0.7.14"></a>
720
## [0.7.14](https://github.com/awslabs/jsii/compare/v0.7.13...v0.7.14) (2019-02-04)
821

install.sh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
#!/bin/bash
22
set -euo pipefail
33

4+
export NODE_OPTIONS="--max-old-space-size=4096 ${NODE_OPTIONS:-}"
5+
6+
if ! npm ci --help; then
7+
echo "upgrading npm, because "npm ci" is not supported"
8+
npm i -g npm@~6.8.0
9+
fi
10+
411
echo "============================================================================================="
512
echo "installing repo-global dependencies..."
6-
npm i --global-style
13+
npm ci --global-style
714

815
export PATH=node_modules/.bin:$PATH
916

1017
echo "============================================================================================="
1118
echo "boostrapping..."
12-
lerna bootstrap --reject-cycles
19+
lerna bootstrap --reject-cycles --ci

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"rejectCycles": true
99
}
1010
},
11-
"version": "0.7.14"
11+
"version": "0.7.15"
1212
}

0 commit comments

Comments
 (0)