cdk-assets 4.4.4 → 4.4.5
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/cdk-assets.js +35 -2
- package/bin/docker-credential-cdk-assets.js +35 -2
- package/package.json +3 -3
package/bin/cdk-assets.js
CHANGED
|
@@ -628,6 +628,8 @@ var init_metadata_schema = __esm({
|
|
|
628
628
|
ArtifactMetadataEntryType4["LOGICAL_ID"] = "aws:cdk:logicalId";
|
|
629
629
|
ArtifactMetadataEntryType4["STACK_TAGS"] = "aws:cdk:stack-tags";
|
|
630
630
|
ArtifactMetadataEntryType4["DO_NOT_REFACTOR"] = "aws:cdk:do-not-refactor";
|
|
631
|
+
ArtifactMetadataEntryType4["CREATION_STACK"] = "aws:cdk:creationStack";
|
|
632
|
+
ArtifactMetadataEntryType4["PROPERTY_ASSIGNMENT"] = "aws:cdk:propertyAssignment";
|
|
631
633
|
return ArtifactMetadataEntryType4;
|
|
632
634
|
})(ArtifactMetadataEntryType || {});
|
|
633
635
|
}
|
|
@@ -4011,7 +4013,7 @@ var require_semver2 = __commonJS({
|
|
|
4011
4013
|
// ../@aws-cdk/cloud-assembly-schema/cli-version.json
|
|
4012
4014
|
var require_cli_version = __commonJS({
|
|
4013
4015
|
"../@aws-cdk/cloud-assembly-schema/cli-version.json"(exports2, module2) {
|
|
4014
|
-
module2.exports = { version: "2.1118.
|
|
4016
|
+
module2.exports = { version: "2.1118.3" };
|
|
4015
4017
|
}
|
|
4016
4018
|
});
|
|
4017
4019
|
|
|
@@ -4436,12 +4438,22 @@ have a unique display name. (Default - no display name)`,
|
|
|
4436
4438
|
{
|
|
4437
4439
|
$ref: "#/definitions/ContainerImageAssetMetadataEntry"
|
|
4438
4440
|
},
|
|
4441
|
+
{
|
|
4442
|
+
$ref: "#/definitions/PropertyMutationMetadataEntry"
|
|
4443
|
+
},
|
|
4439
4444
|
{
|
|
4440
4445
|
type: "array",
|
|
4441
4446
|
items: {
|
|
4442
4447
|
$ref: "#/definitions/Tag"
|
|
4443
4448
|
}
|
|
4444
4449
|
},
|
|
4450
|
+
{
|
|
4451
|
+
description: "Type of creation stack data",
|
|
4452
|
+
type: "array",
|
|
4453
|
+
items: {
|
|
4454
|
+
type: "string"
|
|
4455
|
+
}
|
|
4456
|
+
},
|
|
4445
4457
|
{
|
|
4446
4458
|
type: [
|
|
4447
4459
|
"string",
|
|
@@ -4637,6 +4649,27 @@ have a unique display name. (Default - no display name)`,
|
|
|
4637
4649
|
"type"
|
|
4638
4650
|
]
|
|
4639
4651
|
},
|
|
4652
|
+
PropertyMutationMetadataEntry: {
|
|
4653
|
+
description: "Metadata type of a PropertyMutation",
|
|
4654
|
+
type: "object",
|
|
4655
|
+
properties: {
|
|
4656
|
+
propertyName: {
|
|
4657
|
+
description: "Name of the property",
|
|
4658
|
+
type: "string"
|
|
4659
|
+
},
|
|
4660
|
+
stackTrace: {
|
|
4661
|
+
description: "Stack trace of the mutation",
|
|
4662
|
+
type: "array",
|
|
4663
|
+
items: {
|
|
4664
|
+
type: "string"
|
|
4665
|
+
}
|
|
4666
|
+
}
|
|
4667
|
+
},
|
|
4668
|
+
required: [
|
|
4669
|
+
"propertyName",
|
|
4670
|
+
"stackTrace"
|
|
4671
|
+
]
|
|
4672
|
+
},
|
|
4640
4673
|
Tag: {
|
|
4641
4674
|
description: "Metadata Entry spec for stack tag.",
|
|
4642
4675
|
type: "object",
|
|
@@ -6017,7 +6050,7 @@ var require_integ_schema = __commonJS({
|
|
|
6017
6050
|
var require_version = __commonJS({
|
|
6018
6051
|
"../@aws-cdk/cloud-assembly-schema/schema/version.json"(exports2, module2) {
|
|
6019
6052
|
module2.exports = {
|
|
6020
|
-
schemaHash: "
|
|
6053
|
+
schemaHash: "794dc834654646b4a60c6d8ea46ed0245a71de33e598289f6922082951768d04",
|
|
6021
6054
|
$comment: "Do not hold back the version on additions: jsonschema validation of the manifest by the consumer will trigger errors on unexpected fields.",
|
|
6022
6055
|
revision: 53
|
|
6023
6056
|
};
|
|
@@ -675,6 +675,8 @@ var init_metadata_schema = __esm({
|
|
|
675
675
|
ArtifactMetadataEntryType4["LOGICAL_ID"] = "aws:cdk:logicalId";
|
|
676
676
|
ArtifactMetadataEntryType4["STACK_TAGS"] = "aws:cdk:stack-tags";
|
|
677
677
|
ArtifactMetadataEntryType4["DO_NOT_REFACTOR"] = "aws:cdk:do-not-refactor";
|
|
678
|
+
ArtifactMetadataEntryType4["CREATION_STACK"] = "aws:cdk:creationStack";
|
|
679
|
+
ArtifactMetadataEntryType4["PROPERTY_ASSIGNMENT"] = "aws:cdk:propertyAssignment";
|
|
678
680
|
return ArtifactMetadataEntryType4;
|
|
679
681
|
})(ArtifactMetadataEntryType || {});
|
|
680
682
|
}
|
|
@@ -4058,7 +4060,7 @@ var require_semver2 = __commonJS({
|
|
|
4058
4060
|
// ../@aws-cdk/cloud-assembly-schema/cli-version.json
|
|
4059
4061
|
var require_cli_version = __commonJS({
|
|
4060
4062
|
"../@aws-cdk/cloud-assembly-schema/cli-version.json"(exports2, module2) {
|
|
4061
|
-
module2.exports = { version: "2.1118.
|
|
4063
|
+
module2.exports = { version: "2.1118.3" };
|
|
4062
4064
|
}
|
|
4063
4065
|
});
|
|
4064
4066
|
|
|
@@ -4483,12 +4485,22 @@ have a unique display name. (Default - no display name)`,
|
|
|
4483
4485
|
{
|
|
4484
4486
|
$ref: "#/definitions/ContainerImageAssetMetadataEntry"
|
|
4485
4487
|
},
|
|
4488
|
+
{
|
|
4489
|
+
$ref: "#/definitions/PropertyMutationMetadataEntry"
|
|
4490
|
+
},
|
|
4486
4491
|
{
|
|
4487
4492
|
type: "array",
|
|
4488
4493
|
items: {
|
|
4489
4494
|
$ref: "#/definitions/Tag"
|
|
4490
4495
|
}
|
|
4491
4496
|
},
|
|
4497
|
+
{
|
|
4498
|
+
description: "Type of creation stack data",
|
|
4499
|
+
type: "array",
|
|
4500
|
+
items: {
|
|
4501
|
+
type: "string"
|
|
4502
|
+
}
|
|
4503
|
+
},
|
|
4492
4504
|
{
|
|
4493
4505
|
type: [
|
|
4494
4506
|
"string",
|
|
@@ -4684,6 +4696,27 @@ have a unique display name. (Default - no display name)`,
|
|
|
4684
4696
|
"type"
|
|
4685
4697
|
]
|
|
4686
4698
|
},
|
|
4699
|
+
PropertyMutationMetadataEntry: {
|
|
4700
|
+
description: "Metadata type of a PropertyMutation",
|
|
4701
|
+
type: "object",
|
|
4702
|
+
properties: {
|
|
4703
|
+
propertyName: {
|
|
4704
|
+
description: "Name of the property",
|
|
4705
|
+
type: "string"
|
|
4706
|
+
},
|
|
4707
|
+
stackTrace: {
|
|
4708
|
+
description: "Stack trace of the mutation",
|
|
4709
|
+
type: "array",
|
|
4710
|
+
items: {
|
|
4711
|
+
type: "string"
|
|
4712
|
+
}
|
|
4713
|
+
}
|
|
4714
|
+
},
|
|
4715
|
+
required: [
|
|
4716
|
+
"propertyName",
|
|
4717
|
+
"stackTrace"
|
|
4718
|
+
]
|
|
4719
|
+
},
|
|
4687
4720
|
Tag: {
|
|
4688
4721
|
description: "Metadata Entry spec for stack tag.",
|
|
4689
4722
|
type: "object",
|
|
@@ -6064,7 +6097,7 @@ var require_integ_schema = __commonJS({
|
|
|
6064
6097
|
var require_version = __commonJS({
|
|
6065
6098
|
"../@aws-cdk/cloud-assembly-schema/schema/version.json"(exports2, module2) {
|
|
6066
6099
|
module2.exports = {
|
|
6067
|
-
schemaHash: "
|
|
6100
|
+
schemaHash: "794dc834654646b4a60c6d8ea46ed0245a71de33e598289f6922082951768d04",
|
|
6068
6101
|
$comment: "Do not hold back the version on additions: jsonschema validation of the manifest by the consumer will trigger errors on unexpected fields.",
|
|
6069
6102
|
revision: 53
|
|
6070
6103
|
};
|
package/package.json
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"organization": true
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@aws-cdk/cloud-assembly-schema": "53.
|
|
38
|
+
"@aws-cdk/cloud-assembly-schema": "53.17.0",
|
|
39
39
|
"@aws-sdk/client-s3": "^3.1028.0",
|
|
40
40
|
"@cdklabs/eslint-plugin": "^2.0.0",
|
|
41
41
|
"@stylistic/eslint-plugin": "^3",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"projen": "^0.99.48",
|
|
64
64
|
"ts-jest": "^29.4.9",
|
|
65
65
|
"typescript": "5.9",
|
|
66
|
-
"@aws-cdk/cdk-assets-lib": "^1.4.
|
|
66
|
+
"@aws-cdk/cdk-assets-lib": "^1.4.4",
|
|
67
67
|
"yargs": "^17.7.2"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {},
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public"
|
|
89
89
|
},
|
|
90
|
-
"version": "4.4.
|
|
90
|
+
"version": "4.4.5",
|
|
91
91
|
"packageManager": "yarn@4.13.0",
|
|
92
92
|
"types": "lib/index.d.ts",
|
|
93
93
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"yarn projen\"."
|