Skip to content

Commit 41e702c

Browse files
RomainMullermergify[bot]
authored andcommitted
release: v0.20.6 (#989) (#991)
The Dyanmic proxies were missing an implementation of `__setattr__`, which caused setter invokations to not be forwarded to the `node` process. This is what causes aws/aws-cdk#5032
1 parent e88e5e2 commit 41e702c

109 files changed

Lines changed: 1001 additions & 211 deletions

File tree

Some content is hidden

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

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
## [0.20.6](https://github.com/aws/jsii/compare/v0.20.5...v0.20.6) (2019-11-14)
7+
8+
9+
### Bug Fixes
10+
11+
* **python:** dynamic proxies handling of setters ([eec9640](https://github.com/aws/jsii/commit/eec96403fea1e940b744e40d54a35535b766851d)), closes [aws/aws-cdk#5032](https://github.com/aws/aws-cdk/issues/5032)
12+
13+
14+
15+
16+
617
## [0.20.5](https://github.com/aws/jsii/compare/v0.20.4...v0.20.5) (2019-11-13)
718

819

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"rejectCycles": true
1111
}
1212
},
13-
"version": "0.20.5"
13+
"version": "0.20.6"
1414
}

packages/codemaker/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
## [0.20.6](https://github.com/aws/jsii/compare/v0.20.5...v0.20.6) (2019-11-14)
7+
8+
**Note:** Version bump only for package codemaker
9+
10+
11+
12+
13+
614
## [0.20.5](https://github.com/aws/jsii/compare/v0.20.4...v0.20.5) (2019-11-13)
715

816
**Note:** Version bump only for package codemaker

packages/codemaker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemaker",
3-
"version": "0.20.5",
3+
"version": "0.20.6",
44
"description": "A tiny utility for generating source code",
55
"license": "Apache-2.0",
66
"author": {

packages/jsii-build-tools/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
## [0.20.6](https://github.com/aws/jsii/compare/v0.20.5...v0.20.6) (2019-11-14)
7+
8+
**Note:** Version bump only for package jsii-build-tools
9+
10+
11+
12+
13+
614
## [0.20.5](https://github.com/aws/jsii/compare/v0.20.4...v0.20.5) (2019-11-13)
715

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

packages/jsii-build-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsii-build-tools",
3-
"version": "0.20.5",
3+
"version": "0.20.6",
44
"private": true,
55
"description": "Internal repository-level tools",
66
"license": "Apache-2.0",

packages/jsii-calc-base-of-base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
## [0.20.6](https://github.com/aws/jsii/compare/v0.20.5...v0.20.6) (2019-11-14)
7+
8+
**Note:** Version bump only for package @scope/jsii-calc-base-of-base
9+
10+
11+
12+
13+
614
## [0.20.5](https://github.com/aws/jsii/compare/v0.20.4...v0.20.5) (2019-11-13)
715

816
**Note:** Version bump only for package @scope/jsii-calc-base-of-base

packages/jsii-calc-base-of-base/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scope/jsii-calc-base-of-base",
3-
"version": "0.20.5",
3+
"version": "0.20.6",
44
"private": true,
55
"description": "An example transitive dependency for jsii-calc.",
66
"license": "Apache-2.0",
@@ -29,9 +29,9 @@
2929
"test:update": "npm run build && UPDATE_DIFF=1 npm run test"
3030
},
3131
"devDependencies": {
32-
"jsii": "^0.20.5",
33-
"jsii-rosetta": "^0.20.5",
34-
"jsii-build-tools": "^0.20.5"
32+
"jsii": "^0.20.6",
33+
"jsii-rosetta": "^0.20.6",
34+
"jsii-build-tools": "^0.20.6"
3535
},
3636
"jsii": {
3737
"outdir": "dist",

packages/jsii-calc-base-of-base/test/assembly.jsii

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"description": "An example transitive dependency for jsii-calc.",
1111
"homepage": "https://github.com/aws/jsii",
12-
"jsiiVersion": "0.20.5",
12+
"jsiiVersion": "0.20.6",
1313
"license": "Apache-2.0",
1414
"name": "@scope/jsii-calc-base-of-base",
1515
"repository": {
@@ -110,6 +110,6 @@
110110
]
111111
}
112112
},
113-
"version": "0.20.5",
114-
"fingerprint": "DBNUXuxkMzbp98sCDFuv55EmqNEx4enS6ObVZXVoveI="
113+
"version": "0.20.6",
114+
"fingerprint": "vpWOuY/fOXC3L1MfyV4jwakpEjHt9QryEzq86GzZyzQ="
115115
}

packages/jsii-calc-base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
## [0.20.6](https://github.com/aws/jsii/compare/v0.20.5...v0.20.6) (2019-11-14)
7+
8+
**Note:** Version bump only for package @scope/jsii-calc-base
9+
10+
11+
12+
13+
614
## [0.20.5](https://github.com/aws/jsii/compare/v0.20.4...v0.20.5) (2019-11-13)
715

816
**Note:** Version bump only for package @scope/jsii-calc-base

0 commit comments

Comments
 (0)