jsii-pacmak 1.90.0 → 1.92.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.
@@ -90,7 +90,7 @@ async function updateNpmIgnore(packageDir, excludeOutdir) {
90
90
  // if this is a fresh .npmignore, we can be a bit more opinionated
91
91
  // otherwise, we add just add stuff that's critical
92
92
  if (lines.length === 0) {
93
- excludePattern('Exclude typescript source and config', '*.ts', 'tsconfig.json');
93
+ excludePattern('Exclude typescript source and config', '*.ts', 'tsconfig.json', '*.tsbuildinfo');
94
94
  includePattern('Include javascript files and typescript declarations', '*.js', '*.d.ts');
95
95
  }
96
96
  if (excludeOutdir) {
@@ -1449,7 +1449,7 @@ class Package {
1449
1449
  package_dir: { '': 'src' },
1450
1450
  packages: modules.map((m) => m.pythonName),
1451
1451
  package_data: packageData,
1452
- python_requires: '~=3.7',
1452
+ python_requires: '~=3.8',
1453
1453
  install_requires: [
1454
1454
  `jsii${(0, version_utils_1.toPythonVersionRange)(`^${version_1.VERSION}`)}`,
1455
1455
  'publication>=0.0.3',
@@ -1462,7 +1462,6 @@ class Package {
1462
1462
  'Operating System :: OS Independent',
1463
1463
  'Programming Language :: JavaScript',
1464
1464
  'Programming Language :: Python :: 3 :: Only',
1465
- 'Programming Language :: Python :: 3.7',
1466
1465
  'Programming Language :: Python :: 3.8',
1467
1466
  'Programming Language :: Python :: 3.9',
1468
1467
  'Programming Language :: Python :: 3.10',
@@ -1555,7 +1554,7 @@ class Package {
1555
1554
  code.line();
1556
1555
  code.line('[tool.pyright]');
1557
1556
  code.line('defineConstant = { DEBUG = true }');
1558
- code.line('pythonVersion = "3.7"');
1557
+ code.line('pythonVersion = "3.8"');
1559
1558
  code.line('pythonPlatform = "All"');
1560
1559
  code.line('reportSelfClsParameterName = false');
1561
1560
  code.closeFile('pyproject.toml');
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.90.0 (build d6bdb4d)";
4
+ export declare const VERSION_DESC = "1.92.0 (build db7f27d)";
5
5
  //# sourceMappingURL=version.d.ts.map
package/lib/version.js CHANGED
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
- // Generated at 2023-10-06T20:47:12Z by generate.sh
2
+ // Generated at 2023-11-16T15:08:11Z 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.90.0';
7
+ exports.VERSION = '1.92.0';
8
8
  /** The qualified version number for this jsii-pacmak release (e.g: `X.Y.Z (build #######)`) */
9
- exports.VERSION_DESC = '1.90.0 (build d6bdb4d)';
9
+ exports.VERSION_DESC = '1.92.0 (build db7f27d)';
10
10
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsii-pacmak",
3
- "version": "1.90.0",
3
+ "version": "1.92.0",
4
4
  "description": "A code generation framework for jsii backend languages",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -37,35 +37,35 @@
37
37
  "package": "package-js"
38
38
  },
39
39
  "dependencies": {
40
- "@jsii/check-node": "1.90.0",
41
- "@jsii/spec": "^1.90.0",
40
+ "@jsii/check-node": "1.92.0",
41
+ "@jsii/spec": "^1.92.0",
42
42
  "clone": "^2.1.2",
43
- "codemaker": "^1.90.0",
43
+ "codemaker": "^1.92.0",
44
44
  "commonmark": "^0.30.0",
45
45
  "escape-string-regexp": "^4.0.0",
46
46
  "fs-extra": "^10.1.0",
47
- "jsii-reflect": "^1.90.0",
48
- "jsii-rosetta": "^1.90.0",
47
+ "jsii-reflect": "^1.92.0",
48
+ "jsii-rosetta": "^1.92.0",
49
49
  "semver": "^7.5.4",
50
- "spdx-license-list": "^6.7.0",
50
+ "spdx-license-list": "^6.8.0",
51
51
  "xmlbuilder": "^15.1.1",
52
52
  "yargs": "^16.2.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@jsii/dotnet-runtime": "^1.90.0",
56
- "@jsii/java-runtime": "^1.90.0",
57
- "@jsii/go-runtime": "^1.90.0",
58
- "@scope/jsii-calc-lib": "^1.90.0",
59
- "@types/clone": "^2.1.2",
60
- "@types/diff": "^5.0.5",
61
- "@types/commonmark": "^0.27.7",
55
+ "@jsii/dotnet-runtime": "^1.92.0",
56
+ "@jsii/java-runtime": "^1.92.0",
57
+ "@jsii/go-runtime": "^1.92.0",
58
+ "@scope/jsii-calc-lib": "^1.92.0",
59
+ "@types/clone": "^2.1.4",
60
+ "@types/diff": "^5.0.8",
61
+ "@types/commonmark": "^0.27.9",
62
62
  "@types/fs-extra": "^9.0.13",
63
- "@types/semver": "^7.5.3",
63
+ "@types/semver": "^7.5.5",
64
64
  "diff": "^5.1.0",
65
- "jsii": "^1.90.0",
66
- "jsii-build-tools": "^1.90.0",
65
+ "jsii": "^1.92.0",
66
+ "jsii-build-tools": "^1.92.0",
67
67
  "jsii-calc": "^3.20.120",
68
- "pyright": "^1.1.330"
68
+ "pyright": "^1.1.332"
69
69
  },
70
70
  "keywords": [
71
71
  "jsii",