jsii-pacmak 1.119.0 → 1.120.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1582,6 +1582,10 @@ class Package {
1582
1582
  code.line(this.rootModule?.moduleDocumentation ??
1583
1583
  `${this.name}\n${'='.repeat(this.name.length)}`);
1584
1584
  code.closeFile('README.md');
1585
+ // 3.x and newer perform an additional runtime check on interfaces that our interfaces fail.
1586
+ // Stick to this old version. <https://github.com/aws/constructs/issues/2825>
1587
+ // Defined as a constant to hopefully prevent Dependabot from automatically updating this.
1588
+ const typeguardVersion = '2.13.3';
1585
1589
  const setupKwargs = {
1586
1590
  name: this.name,
1587
1591
  version: this.version,
@@ -1606,8 +1610,7 @@ class Package {
1606
1610
  install_requires: [
1607
1611
  `jsii${(0, version_utils_1.toPythonVersionRange)(`^${version_1.VERSION}`)}`,
1608
1612
  'publication>=0.0.3',
1609
- // 4.3.0 is incompatible with generated bindings, see https://github.com/aws/jsii/issues/4658
1610
- 'typeguard>=2.13.3,<4.3.0',
1613
+ `typeguard==${typeguardVersion}`,
1611
1614
  ]
1612
1615
  .concat(dependencies)
1613
1616
  .sort(),
package/lib/version.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /** The short version number for this jsii-pacmak release (e.g: `X.Y.Z`) */
2
2
  export declare const VERSION: string;
3
3
  /** The qualified version number for this jsii-pacmak release (e.g: `X.Y.Z (build #######)`) */
4
- export declare const VERSION_DESC = "1.119.0 (build 1634eac)";
4
+ export declare const VERSION_DESC = "1.120.0 (build 192dc88)";
5
5
  //# sourceMappingURL=version.d.ts.map
package/lib/version.js CHANGED
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
- // Generated at 2025-11-10T14:25:15Z by generate.sh
2
+ // Generated at 2025-11-24T11:51:54Z by generate.sh
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.VERSION_DESC = exports.VERSION = void 0;
5
5
  /** The short version number for this jsii-pacmak release (e.g: `X.Y.Z`) */
6
6
  // eslint-disable-next-line @typescript-eslint/no-inferrable-types
7
- exports.VERSION = '1.119.0';
7
+ exports.VERSION = '1.120.0';
8
8
  /** The qualified version number for this jsii-pacmak release (e.g: `X.Y.Z (build #######)`) */
9
- exports.VERSION_DESC = '1.119.0 (build 1634eac)';
9
+ exports.VERSION_DESC = '1.120.0 (build 192dc88)';
10
10
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsii-pacmak",
3
- "version": "1.119.0",
3
+ "version": "1.120.0",
4
4
  "description": "A code generation framework for jsii backend languages",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -37,24 +37,24 @@
37
37
  "package": "package-js"
38
38
  },
39
39
  "dependencies": {
40
- "@jsii/check-node": "1.119.0",
41
- "@jsii/spec": "1.119.0",
40
+ "@jsii/check-node": "1.120.0",
41
+ "@jsii/spec": "1.120.0",
42
42
  "clone": "^2.1.2",
43
- "codemaker": "^1.119.0",
43
+ "codemaker": "^1.120.0",
44
44
  "commonmark": "^0.31.2",
45
45
  "escape-string-regexp": "^4.0.0",
46
46
  "fs-extra": "^10.1.0",
47
- "jsii-reflect": "^1.119.0",
47
+ "jsii-reflect": "^1.120.0",
48
48
  "semver": "^7.7.2",
49
49
  "spdx-license-list": "^6.10.0",
50
50
  "xmlbuilder": "^15.1.1",
51
51
  "yargs": "^17.7.2"
52
52
  },
53
53
  "devDependencies": {
54
- "@jsii/dotnet-runtime": "^1.119.0",
55
- "@jsii/go-runtime": "^1.119.0",
56
- "@jsii/java-runtime": "^1.119.0",
57
- "@scope/jsii-calc-lib": "^1.119.0",
54
+ "@jsii/dotnet-runtime": "^1.120.0",
55
+ "@jsii/go-runtime": "^1.120.0",
56
+ "@jsii/java-runtime": "^1.120.0",
57
+ "@scope/jsii-calc-lib": "^1.120.0",
58
58
  "@types/clone": "^2.1.4",
59
59
  "@types/commonmark": "^0.27.10",
60
60
  "@types/diff": "^5.2.3",
@@ -63,7 +63,7 @@
63
63
  "@types/yargs": "^17.0.33",
64
64
  "diff": "^5.2.0",
65
65
  "jsii": "^5.9.10",
66
- "jsii-build-tools": "^1.119.0",
66
+ "jsii-build-tools": "^1.120.0",
67
67
  "jsii-calc": "^3.20.120",
68
68
  "jsii-rosetta": "~5.9.10",
69
69
  "pyright": "^1.1.403"