@aws-cdk/cloud-assembly-schema 1.203.0 → 1.204.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/.jsii +4 -3
- package/.jsii.tabl.json +1 -1
- package/README.md +8 -1
- package/lib/manifest.js +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -3,7 +3,14 @@
|
|
|
3
3
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-

|
|
7
|
+
|
|
8
|
+
> AWS CDK v1 has reached End-of-Support on 2023-06-01.
|
|
9
|
+
> This package is no longer being updated, and users should migrate to AWS CDK v2.
|
|
10
|
+
>
|
|
11
|
+
> For more information on how to migrate, see the [_Migrating to AWS CDK v2_ guide][doc].
|
|
12
|
+
>
|
|
13
|
+
> [doc]: https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html
|
|
7
14
|
|
|
8
15
|
---
|
|
9
16
|
|
package/lib/manifest.js
CHANGED
|
@@ -255,7 +255,7 @@ class Manifest {
|
|
|
255
255
|
}
|
|
256
256
|
exports.Manifest = Manifest;
|
|
257
257
|
_a = JSII_RTTI_SYMBOL_1;
|
|
258
|
-
Manifest[_a] = { fqn: "@aws-cdk/cloud-assembly-schema.Manifest", version: "1.
|
|
258
|
+
Manifest[_a] = { fqn: "@aws-cdk/cloud-assembly-schema.Manifest", version: "1.204.0" };
|
|
259
259
|
function mapValues(xs, fn) {
|
|
260
260
|
if (!xs) {
|
|
261
261
|
return undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-cdk/cloud-assembly-schema",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.204.0",
|
|
4
4
|
"description": "Cloud Assembly Schema",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
},
|
|
61
61
|
"license": "Apache-2.0",
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@aws-cdk/cdk-build-tools": "1.
|
|
64
|
-
"@aws-cdk/pkglint": "1.
|
|
63
|
+
"@aws-cdk/cdk-build-tools": "1.204.0",
|
|
64
|
+
"@aws-cdk/pkglint": "1.204.0",
|
|
65
65
|
"@types/jest": "^27.5.2",
|
|
66
66
|
"@types/mock-fs": "^4.13.1",
|
|
67
67
|
"@types/semver": "^7.3.13",
|
|
@@ -97,8 +97,9 @@
|
|
|
97
97
|
"awscdkio": {
|
|
98
98
|
"announce": false
|
|
99
99
|
},
|
|
100
|
-
"maturity": "
|
|
100
|
+
"maturity": "end-of-support",
|
|
101
101
|
"publishConfig": {
|
|
102
102
|
"tag": "latest-1"
|
|
103
|
-
}
|
|
103
|
+
},
|
|
104
|
+
"deprecated": "AWS CDK v1 has reached End-of-Support on 2023-06-01.\nThis package is no longer being updated, and users should migrate to AWS CDK v2.\n\nFor more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html"
|
|
104
105
|
}
|