awslint 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.
Files changed (2) hide show
  1. package/README.md +8 -7
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -3,13 +3,14 @@
3
3
 
4
4
  ---
5
5
 
6
- ![cdk-constructs: Developer Preview](https://img.shields.io/badge/cdk--constructs-developer--preview-informational.svg?style=for-the-badge)
7
-
8
- > The APIs of higher level constructs in this module are in **developer preview** before they
9
- > become stable. We will only make breaking changes to address unforeseen API issues. Therefore,
10
- > these APIs are not subject to [Semantic Versioning](https://semver.org/), and breaking changes
11
- > will be announced in release notes. This means that while you may use them, you may need to
12
- > update 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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awslint",
3
- "version": "1.203.0",
3
+ "version": "1.204.0",
4
4
  "description": "Enforces the AWS Construct Library guidelines",
5
5
  "scripts": {
6
6
  "build": "tsc -b && eslint . --ext=.ts && pkglint && chmod +x bin/awslint",
@@ -18,25 +18,25 @@
18
18
  "awslint": "bin/awslint"
19
19
  },
20
20
  "dependencies": {
21
- "@jsii/spec": "^1.74.0",
21
+ "@jsii/spec": "^1.84.0",
22
22
  "camelcase": "^6.3.0",
23
23
  "chalk": "^4",
24
24
  "fs-extra": "^9.1.0",
25
- "jsii-reflect": "^1.74.0",
25
+ "jsii-reflect": "^1.84.0",
26
26
  "yargs": "^16.2.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/fs-extra": "^8.1.2",
30
30
  "@types/jest": "^27.5.2",
31
31
  "@types/yargs": "^15.0.15",
32
- "@aws-cdk/pkglint": "1.203.0",
32
+ "@aws-cdk/pkglint": "1.204.0",
33
33
  "typescript": "~3.9.10",
34
34
  "@typescript-eslint/eslint-plugin": "^4.33.0",
35
35
  "@typescript-eslint/parser": "^4.33.0",
36
36
  "eslint": "^7.32.0",
37
37
  "eslint-import-resolver-node": "^0.3.7",
38
38
  "eslint-import-resolver-typescript": "^2.7.1",
39
- "@aws-cdk/eslint-plugin": "1.203.0",
39
+ "@aws-cdk/eslint-plugin": "1.204.0",
40
40
  "eslint-plugin-import": "^2.27.5",
41
41
  "eslint-plugin-jest": "^24.7.0",
42
42
  "jest": "^27.5.1"
@@ -57,7 +57,7 @@
57
57
  "aws",
58
58
  "cdk"
59
59
  ],
60
- "maturity": "developer-preview",
60
+ "maturity": "end-of-support",
61
61
  "stability": "experimental",
62
62
  "engines": {
63
63
  "node": ">= 14.15.0"
@@ -70,5 +70,6 @@
70
70
  },
71
71
  "publishConfig": {
72
72
  "tag": "latest-1"
73
- }
73
+ },
74
+ "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"
74
75
  }