jsii-pacmak 1.83.0 → 1.84.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.
- package/bin/jsii-pacmak.d.ts +1 -0
- package/bin/jsii-pacmak.js +1 -0
- package/lib/targets/java.js +12 -7
- package/lib/targets/python.js +6 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +3 -3
- package/package.json +14 -14
package/bin/jsii-pacmak.d.ts
CHANGED
package/bin/jsii-pacmak.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
require("@jsii/check-node/run");
|
|
5
|
+
require("../lib/suppress-jsii-upgrade-prompts");
|
|
5
6
|
const jsii_rosetta_1 = require("jsii-rosetta");
|
|
6
7
|
const yargs = require("yargs");
|
|
7
8
|
const lib_1 = require("../lib");
|
package/lib/targets/java.js
CHANGED
|
@@ -753,13 +753,18 @@ class JavaGenerator extends generator_1.Generator {
|
|
|
753
753
|
{
|
|
754
754
|
groupId: 'org.apache.maven.plugins',
|
|
755
755
|
artifactId: 'maven-compiler-plugin',
|
|
756
|
-
version: '3.
|
|
757
|
-
configuration: {
|
|
756
|
+
version: '3.11.0',
|
|
757
|
+
configuration: {
|
|
758
|
+
source: '1.8',
|
|
759
|
+
target: '1.8',
|
|
760
|
+
fork: 'true',
|
|
761
|
+
maxmem: '4096m',
|
|
762
|
+
},
|
|
758
763
|
},
|
|
759
764
|
{
|
|
760
765
|
groupId: 'org.apache.maven.plugins',
|
|
761
766
|
artifactId: 'maven-jar-plugin',
|
|
762
|
-
version: '3.
|
|
767
|
+
version: '3.3.0',
|
|
763
768
|
configuration: {
|
|
764
769
|
archive: {
|
|
765
770
|
index: true,
|
|
@@ -773,7 +778,7 @@ class JavaGenerator extends generator_1.Generator {
|
|
|
773
778
|
{
|
|
774
779
|
groupId: 'org.apache.maven.plugins',
|
|
775
780
|
artifactId: 'maven-source-plugin',
|
|
776
|
-
version: '3.
|
|
781
|
+
version: '3.3.0',
|
|
777
782
|
executions: {
|
|
778
783
|
execution: {
|
|
779
784
|
id: 'attach-sources',
|
|
@@ -784,7 +789,7 @@ class JavaGenerator extends generator_1.Generator {
|
|
|
784
789
|
{
|
|
785
790
|
groupId: 'org.apache.maven.plugins',
|
|
786
791
|
artifactId: 'maven-javadoc-plugin',
|
|
787
|
-
version: '3.
|
|
792
|
+
version: '3.5.0',
|
|
788
793
|
executions: {
|
|
789
794
|
execution: {
|
|
790
795
|
id: 'attach-javadocs',
|
|
@@ -813,7 +818,7 @@ class JavaGenerator extends generator_1.Generator {
|
|
|
813
818
|
{
|
|
814
819
|
groupId: 'org.apache.maven.plugins',
|
|
815
820
|
artifactId: 'maven-enforcer-plugin',
|
|
816
|
-
version: '3.
|
|
821
|
+
version: '3.3.0',
|
|
817
822
|
executions: {
|
|
818
823
|
execution: {
|
|
819
824
|
id: 'enforce-maven',
|
|
@@ -829,7 +834,7 @@ class JavaGenerator extends generator_1.Generator {
|
|
|
829
834
|
{
|
|
830
835
|
groupId: 'org.codehaus.mojo',
|
|
831
836
|
artifactId: 'versions-maven-plugin',
|
|
832
|
-
version: '2.
|
|
837
|
+
version: '2.16.0',
|
|
833
838
|
configuration: {
|
|
834
839
|
generateBackupPoms: false,
|
|
835
840
|
},
|
package/lib/targets/python.js
CHANGED
|
@@ -1471,7 +1471,12 @@ class Package {
|
|
|
1471
1471
|
],
|
|
1472
1472
|
scripts,
|
|
1473
1473
|
};
|
|
1474
|
-
|
|
1474
|
+
// Packages w/ a deprecated message may have a non-deprecated stability (e.g: when EoL happens
|
|
1475
|
+
// for a stable package). We pretend it's deprecated for the purpose of trove classifiers when
|
|
1476
|
+
// this happens.
|
|
1477
|
+
switch (this.metadata.docs?.deprecated
|
|
1478
|
+
? spec.Stability.Deprecated
|
|
1479
|
+
: this.metadata.docs?.stability) {
|
|
1475
1480
|
case spec.Stability.Experimental:
|
|
1476
1481
|
setupKwargs.classifiers.push('Development Status :: 4 - Beta');
|
|
1477
1482
|
break;
|
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.
|
|
4
|
+
export declare const VERSION_DESC = "1.84.0 (build 5404dcf)";
|
|
5
5
|
//# sourceMappingURL=version.d.ts.map
|
package/lib/version.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// Generated at 2023-06-
|
|
2
|
+
// Generated at 2023-06-14T08:36:29Z 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.
|
|
7
|
+
exports.VERSION = '1.84.0';
|
|
8
8
|
/** The qualified version number for this jsii-pacmak release (e.g: `X.Y.Z (build #######)`) */
|
|
9
|
-
exports.VERSION_DESC = '1.
|
|
9
|
+
exports.VERSION_DESC = '1.84.0 (build 5404dcf)';
|
|
10
10
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsii-pacmak",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.84.0",
|
|
4
4
|
"description": "A code generation framework for jsii backend languages",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"directory": "packages/jsii-pacmak"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": ">= 14.
|
|
20
|
+
"node": ">= 14.17.0"
|
|
21
21
|
},
|
|
22
22
|
"main": "lib/index.js",
|
|
23
23
|
"types": "lib/index.d.ts",
|
|
@@ -37,35 +37,35 @@
|
|
|
37
37
|
"package": "package-js"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@jsii/check-node": "1.
|
|
41
|
-
"@jsii/spec": "^1.
|
|
40
|
+
"@jsii/check-node": "1.84.0",
|
|
41
|
+
"@jsii/spec": "^1.84.0",
|
|
42
42
|
"clone": "^2.1.2",
|
|
43
|
-
"codemaker": "^1.
|
|
43
|
+
"codemaker": "^1.84.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.
|
|
48
|
-
"jsii-rosetta": "^1.
|
|
47
|
+
"jsii-reflect": "^1.84.0",
|
|
48
|
+
"jsii-rosetta": "^1.84.0",
|
|
49
49
|
"semver": "^7.5.1",
|
|
50
50
|
"spdx-license-list": "^6.6.0",
|
|
51
51
|
"xmlbuilder": "^15.1.1",
|
|
52
52
|
"yargs": "^16.2.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@jsii/dotnet-runtime": "^1.
|
|
56
|
-
"@jsii/java-runtime": "^1.
|
|
57
|
-
"@jsii/go-runtime": "^1.
|
|
58
|
-
"@scope/jsii-calc-lib": "^1.
|
|
55
|
+
"@jsii/dotnet-runtime": "^1.84.0",
|
|
56
|
+
"@jsii/java-runtime": "^1.84.0",
|
|
57
|
+
"@jsii/go-runtime": "^1.84.0",
|
|
58
|
+
"@scope/jsii-calc-lib": "^1.84.0",
|
|
59
59
|
"@types/clone": "^2.1.1",
|
|
60
60
|
"@types/diff": "^5.0.3",
|
|
61
61
|
"@types/commonmark": "^0.27.6",
|
|
62
62
|
"@types/fs-extra": "^9.0.13",
|
|
63
63
|
"@types/semver": "^7.5.0",
|
|
64
64
|
"diff": "^5.1.0",
|
|
65
|
-
"jsii": "^1.
|
|
66
|
-
"jsii-build-tools": "^1.
|
|
65
|
+
"jsii": "^1.84.0",
|
|
66
|
+
"jsii-build-tools": "^1.84.0",
|
|
67
67
|
"jsii-calc": "^3.20.120",
|
|
68
|
-
"pyright": "^1.1.
|
|
68
|
+
"pyright": "^1.1.313"
|
|
69
69
|
},
|
|
70
70
|
"keywords": [
|
|
71
71
|
"jsii",
|