Skip to content

Commit

Permalink
v0.10.0 (#462)
Browse files Browse the repository at this point in the history
See CHANGELOG
  • Loading branch information
rix0rrr committed Apr 17, 2019
1 parent 6e91eb7 commit c54f7d8
Show file tree
Hide file tree
Showing 88 changed files with 731 additions and 243 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.10.0](https://github.com/awslabs/jsii/compare/v0.9.0...v0.10.0) (2019-04-16)


### Bug Fixes

* exit with non-zero exit code if there are compilation errors ([#442](https://github.com/awslabs/jsii/issues/442)) ([6265bf6](https://github.com/awslabs/jsii/commit/6265bf6)), closes [#383](https://github.com/awslabs/jsii/issues/383) [#441](https://github.com/awslabs/jsii/issues/441)
* **dotnet:** fix doc comment model parsing in .NET generator ([#455](https://github.com/awslabs/jsii/issues/455)) ([ae85aa5](https://github.com/awslabs/jsii/commit/ae85aa5))
* **java:** Stop using Streams to render params ([#459](https://github.com/awslabs/jsii/issues/459)) ([a5e8a93](https://github.com/awslabs/jsii/commit/a5e8a93))
* **jsii:** check that static and nonstatic members don't share a name ([#430](https://github.com/awslabs/jsii/issues/430)) ([a0741cc](https://github.com/awslabs/jsii/commit/a0741cc)), closes [#427](https://github.com/awslabs/jsii/issues/427)
* **jsii:** flatten out dependency list ([#454](https://github.com/awslabs/jsii/issues/454)) ([ebdd10d](https://github.com/awslabs/jsii/commit/ebdd10d)), closes [#453](https://github.com/awslabs/jsii/issues/453)
* **jsii-reflect:** don't load same assembly multiple times ([#461](https://github.com/awslabs/jsii/issues/461)) ([3a6b21c](https://github.com/awslabs/jsii/commit/3a6b21c))
* **jsii-spec:** show deep validation errors ([#452](https://github.com/awslabs/jsii/issues/452)) ([4d84e0b](https://github.com/awslabs/jsii/commit/4d84e0b))
* **kernel:** Set `this` in static contexts ([#460](https://github.com/awslabs/jsii/issues/460)) ([c81b4c1](https://github.com/awslabs/jsii/commit/c81b4c1)), closes [awslabs/aws-cdk#2304](https://github.com/awslabs/aws-cdk/issues/2304)
* **pacmak:** fix Maven dependency collector. ([#449](https://github.com/awslabs/jsii/issues/449)) ([675b86a](https://github.com/awslabs/jsii/commit/675b86a)), closes [#447](https://github.com/awslabs/jsii/issues/447)


### Features

* **jsii-spec:** Model parameter optionality ([#432](https://github.com/awslabs/jsii/issues/432)) ([21e485a](https://github.com/awslabs/jsii/commit/21e485a)), closes [#296](https://github.com/awslabs/jsii/issues/296) [#414](https://github.com/awslabs/jsii/issues/414)


### BREAKING CHANGES

* **jsii-spec:** JSII assemblies generated by older versions of the tool
will fail loading with this new version, and vice-versa. Re-compile your
projects in order to fix this.





## [0.9.0](https://github.com/awslabs/jsii/compare/v0.8.2...v0.9.0) (2019-04-04)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"rejectCycles": true
}
},
"version": "0.9.0"
"version": "0.10.0"
}
18 changes: 18 additions & 0 deletions packages/codemaker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/awslabs/jsii/compare/v0.9.0...v0.10.0) (2019-04-16)


### Features

* **jsii-spec:** Model parameter optionality ([#432](https://github.com/awslabs/jsii/issues/432)) ([21e485a](https://github.com/awslabs/jsii/commit/21e485a)), closes [#296](https://github.com/awslabs/jsii/issues/296) [#414](https://github.com/awslabs/jsii/issues/414)


### BREAKING CHANGES

* **jsii-spec:** JSII assemblies generated by older versions of the tool
will fail loading with this new version, and vice-versa. Re-compile your
projects in order to fix this.





# [0.9.0](https://github.com/awslabs/jsii/compare/v0.8.2...v0.9.0) (2019-04-04)


Expand Down
2 changes: 1 addition & 1 deletion packages/codemaker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codemaker",
"version": "0.9.0",
"version": "0.10.0",
"description": "A tiny utility for generating source code",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/jsii-build-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/awslabs/jsii/compare/v0.9.0...v0.10.0) (2019-04-16)

**Note:** Version bump only for package jsii-build-tools





# [0.9.0](https://github.com/awslabs/jsii/compare/v0.8.2...v0.9.0) (2019-04-04)


Expand Down
2 changes: 1 addition & 1 deletion packages/jsii-build-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsii-build-tools",
"version": "0.9.0",
"version": "0.10.0",
"description": "Internal repository-level tools",
"private": true,
"bin": {
Expand Down
23 changes: 23 additions & 0 deletions packages/jsii-calc-base-of-base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/awslabs/jsii/compare/v0.9.0...v0.10.0) (2019-04-16)


### Bug Fixes

* **jsii:** flatten out dependency list ([#454](https://github.com/awslabs/jsii/issues/454)) ([ebdd10d](https://github.com/awslabs/jsii/commit/ebdd10d)), closes [#453](https://github.com/awslabs/jsii/issues/453)


### Features

* **jsii-spec:** Model parameter optionality ([#432](https://github.com/awslabs/jsii/issues/432)) ([21e485a](https://github.com/awslabs/jsii/commit/21e485a)), closes [#296](https://github.com/awslabs/jsii/issues/296) [#414](https://github.com/awslabs/jsii/issues/414)


### BREAKING CHANGES

* **jsii-spec:** JSII assemblies generated by older versions of the tool
will fail loading with this new version, and vice-versa. Re-compile your
projects in order to fix this.





# [0.9.0](https://github.com/awslabs/jsii/compare/v0.8.2...v0.9.0) (2019-04-04)


Expand Down
6 changes: 3 additions & 3 deletions packages/jsii-calc-base-of-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scope/jsii-calc-base-of-base",
"version": "0.9.0",
"version": "0.10.0",
"description": "An example transitive dependency for jsii-calc.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -32,8 +32,8 @@
"test": "diff-test test/assembly.jsii .jsii"
},
"devDependencies": {
"jsii": "^0.9.0",
"jsii-build-tools": "^0.9.0"
"jsii": "^0.10.0",
"jsii-build-tools": "^0.10.0"
},
"author": {
"name": "Amazon Web Services",
Expand Down
6 changes: 3 additions & 3 deletions packages/jsii-calc-base-of-base/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"description": "An example transitive dependency for jsii-calc.",
"homepage": "https://github.com/awslabs/jsii.git",
"jsiiVersion": "0.9.0",
"jsiiVersion": "0.10.0",
"license": "Apache-2.0",
"name": "@scope/jsii-calc-base-of-base",
"repository": {
Expand Down Expand Up @@ -110,6 +110,6 @@
]
}
},
"version": "0.9.0",
"fingerprint": "ENFUcMchPwpuq+F97Ft6h/qSsOv03zzW/rOn+EpnPkM="
"version": "0.10.0",
"fingerprint": "mq//BRCd+SJ5atugApD8YLXQbpnAFecz68BqTeokb54="
}
23 changes: 23 additions & 0 deletions packages/jsii-calc-base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/awslabs/jsii/compare/v0.9.0...v0.10.0) (2019-04-16)


### Bug Fixes

* **jsii:** flatten out dependency list ([#454](https://github.com/awslabs/jsii/issues/454)) ([ebdd10d](https://github.com/awslabs/jsii/commit/ebdd10d)), closes [#453](https://github.com/awslabs/jsii/issues/453)


### Features

* **jsii-spec:** Model parameter optionality ([#432](https://github.com/awslabs/jsii/issues/432)) ([21e485a](https://github.com/awslabs/jsii/commit/21e485a)), closes [#296](https://github.com/awslabs/jsii/issues/296) [#414](https://github.com/awslabs/jsii/issues/414)


### BREAKING CHANGES

* **jsii-spec:** JSII assemblies generated by older versions of the tool
will fail loading with this new version, and vice-versa. Re-compile your
projects in order to fix this.





# [0.9.0](https://github.com/awslabs/jsii/compare/v0.8.2...v0.9.0) (2019-04-04)


Expand Down
10 changes: 5 additions & 5 deletions packages/jsii-calc-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scope/jsii-calc-base",
"version": "0.9.0",
"version": "0.10.0",
"description": "An example direct dependency for jsii-calc.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -32,14 +32,14 @@
"test": "diff-test test/assembly.jsii .jsii"
},
"devDependencies": {
"jsii": "^0.9.0",
"jsii-build-tools": "^0.9.0"
"jsii": "^0.10.0",
"jsii-build-tools": "^0.10.0"
},
"dependencies": {
"@scope/jsii-calc-base-of-base": "^0.9.0"
"@scope/jsii-calc-base-of-base": "^0.10.0"
},
"peerDependencies": {
"@scope/jsii-calc-base-of-base": "^0.9.0"
"@scope/jsii-calc-base-of-base": "^0.10.0"
},
"author": {
"name": "Amazon Web Services",
Expand Down
10 changes: 5 additions & 5 deletions packages/jsii-calc-base/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"sphinx": {}
},
"version": "0.9.0"
"version": "0.10.0"
}
},
"dependencyClosure": {
Expand All @@ -56,12 +56,12 @@
},
"sphinx": {}
},
"version": "0.9.0"
"version": "0.10.0"
}
},
"description": "An example direct dependency for jsii-calc.",
"homepage": "https://github.com/awslabs/jsii.git",
"jsiiVersion": "0.9.0",
"jsiiVersion": "0.10.0",
"license": "Apache-2.0",
"name": "@scope/jsii-calc-base",
"repository": {
Expand Down Expand Up @@ -175,6 +175,6 @@
"name": "IBaseInterface"
}
},
"version": "0.9.0",
"fingerprint": "8qBW6Salzbq8ies06F/P6IebT87rHy8zDsbL8JqBrvI="
"version": "0.10.0",
"fingerprint": "GaAu/FcgPjdHMgE+wZdZAhh9rx/I56a7PXer1xIslxI="
}
18 changes: 18 additions & 0 deletions packages/jsii-calc-bundled/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/awslabs/jsii/compare/v0.9.0...v0.10.0) (2019-04-16)


### Features

* **jsii-spec:** Model parameter optionality ([#432](https://github.com/awslabs/jsii/issues/432)) ([21e485a](https://github.com/awslabs/jsii/commit/21e485a)), closes [#296](https://github.com/awslabs/jsii/issues/296) [#414](https://github.com/awslabs/jsii/issues/414)


### BREAKING CHANGES

* **jsii-spec:** JSII assemblies generated by older versions of the tool
will fail loading with this new version, and vice-versa. Re-compile your
projects in order to fix this.





# [0.9.0](https://github.com/awslabs/jsii/compare/v0.8.2...v0.9.0) (2019-04-04)

**Note:** Version bump only for package jsii-calc-bundled
Expand Down
2 changes: 1 addition & 1 deletion packages/jsii-calc-bundled/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsii-calc-bundled",
"version": "0.9.0",
"version": "0.10.0",
"main": "index.js",
"private": true,
"author": {
Expand Down
23 changes: 23 additions & 0 deletions packages/jsii-calc-lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/awslabs/jsii/compare/v0.9.0...v0.10.0) (2019-04-16)


### Bug Fixes

* **jsii:** flatten out dependency list ([#454](https://github.com/awslabs/jsii/issues/454)) ([ebdd10d](https://github.com/awslabs/jsii/commit/ebdd10d)), closes [#453](https://github.com/awslabs/jsii/issues/453)


### Features

* **jsii-spec:** Model parameter optionality ([#432](https://github.com/awslabs/jsii/issues/432)) ([21e485a](https://github.com/awslabs/jsii/commit/21e485a)), closes [#296](https://github.com/awslabs/jsii/issues/296) [#414](https://github.com/awslabs/jsii/issues/414)


### BREAKING CHANGES

* **jsii-spec:** JSII assemblies generated by older versions of the tool
will fail loading with this new version, and vice-versa. Re-compile your
projects in order to fix this.





# [0.9.0](https://github.com/awslabs/jsii/compare/v0.8.2...v0.9.0) (2019-04-04)


Expand Down
10 changes: 5 additions & 5 deletions packages/jsii-calc-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scope/jsii-calc-lib",
"version": "0.9.0",
"version": "0.10.0",
"description": "A simple calcuator library built on JSII.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -32,14 +32,14 @@
"test": "diff-test test/assembly.jsii .jsii"
},
"devDependencies": {
"jsii": "^0.9.0",
"jsii-build-tools": "^0.9.0"
"jsii": "^0.10.0",
"jsii-build-tools": "^0.10.0"
},
"dependencies": {
"@scope/jsii-calc-base": "^0.9.0"
"@scope/jsii-calc-base": "^0.10.0"
},
"peerDependencies": {
"@scope/jsii-calc-base": "^0.9.0"
"@scope/jsii-calc-base": "^0.10.0"
},
"author": {
"name": "Amazon Web Services",
Expand Down
12 changes: 6 additions & 6 deletions packages/jsii-calc-lib/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"sphinx": {}
},
"version": "0.9.0"
"version": "0.10.0"
}
},
"dependencyClosure": {
Expand All @@ -56,7 +56,7 @@
},
"sphinx": {}
},
"version": "0.9.0"
"version": "0.10.0"
},
"@scope/jsii-calc-base-of-base": {
"targets": {
Expand All @@ -80,12 +80,12 @@
},
"sphinx": {}
},
"version": "0.9.0"
"version": "0.10.0"
}
},
"description": "A simple calcuator library built on JSII.",
"homepage": "https://github.com/awslabs/jsii.git",
"jsiiVersion": "0.9.0",
"jsiiVersion": "0.10.0",
"license": "Apache-2.0",
"name": "@scope/jsii-calc-lib",
"repository": {
Expand Down Expand Up @@ -495,6 +495,6 @@
]
}
},
"version": "0.9.0",
"fingerprint": "bBNOrdlsau3qqxF1iTo055PjEb8RSSExF6rQNNnIwAY="
"version": "0.10.0",
"fingerprint": "xJraf0U4706PRYF38PzXX1oAqIzhsbnNtM83906wSqg="
}
Loading

0 comments on commit c54f7d8

Please sign in to comment.