cdk-assets 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/README.md CHANGED
@@ -3,13 +3,14 @@
3
3
 
4
4
  ---
5
5
 
6
- ![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)
7
-
8
- > The APIs of higher level constructs in this module are experimental and under active development.
9
- > They are subject to non-backward compatible changes or removal in any future version. These are
10
- > not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be
11
- > announced in the release notes. This means that while you may use them, you may need to update
12
- > your source code when upgrading to a newer version of this package.
6
+ ![End-of-Support](https://img.shields.io/badge/End--of--Support-critical.svg?style=for-the-badge)
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
13
14
 
14
15
  ---
15
16
 
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "cdk-assets",
3
- "version": "1.203.0",
3
+ "version": "1.204.0",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
7
7
  "@aws-cdk/cloud-assembly-schema": {
8
- "version": "1.203.0",
8
+ "version": "1.204.0",
9
9
  "requires": {
10
10
  "jsonschema": "^1.4.1",
11
11
  "semver": "^7.3.8"
12
12
  }
13
13
  },
14
14
  "@aws-cdk/cx-api": {
15
- "version": "1.203.0",
15
+ "version": "1.204.0",
16
16
  "requires": {
17
- "@aws-cdk/cloud-assembly-schema": "1.203.0",
17
+ "@aws-cdk/cloud-assembly-schema": "1.204.0",
18
18
  "semver": "^7.3.8"
19
19
  }
20
20
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cdk-assets",
3
3
  "description": "CDK Asset Publishing Tool",
4
- "version": "1.203.0",
4
+ "version": "1.204.0",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
7
7
  "bin": {
@@ -37,15 +37,15 @@
37
37
  "@types/mock-fs": "^4.13.1",
38
38
  "@types/node": "^10.17.60",
39
39
  "@types/yargs": "^15.0.15",
40
- "@aws-cdk/cdk-build-tools": "1.203.0",
40
+ "@aws-cdk/cdk-build-tools": "1.204.0",
41
41
  "jest": "^27.5.1",
42
42
  "jszip": "^3.10.1",
43
43
  "mock-fs": "^4.14.0",
44
- "@aws-cdk/pkglint": "1.203.0"
44
+ "@aws-cdk/pkglint": "1.204.0"
45
45
  },
46
46
  "dependencies": {
47
- "@aws-cdk/cloud-assembly-schema": "1.203.0",
48
- "@aws-cdk/cx-api": "1.203.0",
47
+ "@aws-cdk/cloud-assembly-schema": "1.204.0",
48
+ "@aws-cdk/cx-api": "1.204.0",
49
49
  "archiver": "^5.3.1",
50
50
  "aws-sdk": "^2.1093.0",
51
51
  "glob": "^7.2.3",
@@ -76,8 +76,9 @@
76
76
  ]
77
77
  },
78
78
  "stability": "experimental",
79
- "maturity": "experimental",
79
+ "maturity": "end-of-support",
80
80
  "publishConfig": {
81
81
  "tag": "latest-1"
82
- }
82
+ },
83
+ "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"
83
84
  }