@aligent/cdk-aspects 0.5.0 → 0.5.2
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/CHANGELOG.md +20 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @aligent/cdk-aspects
|
|
2
2
|
|
|
3
|
+
## 0.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1609](https://github.com/aligent/cdk-constructs/pull/1609) [`ba5bc76`](https://github.com/aligent/cdk-constructs/commit/ba5bc7641349972a11dd8f0f993e236bb270c468) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump esbuild from 0.25.0 to 0.27.3 in the esbuild group across 1 directory
|
|
8
|
+
|
|
9
|
+
## 0.5.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#1622](https://github.com/aligent/cdk-constructs/pull/1622) [`57b9148`](https://github.com/aligent/cdk-constructs/commit/57b9148b8ed80bcc40ee5c7461b353289b87f659) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps-dev): bump the dev-tools group across 1 directory with 4 updates
|
|
14
|
+
|
|
15
|
+
- [#1633](https://github.com/aligent/cdk-constructs/pull/1633) [`9276087`](https://github.com/aligent/cdk-constructs/commit/927608749f1ac2340e0e2f758ba3ccf02e54d405) Thanks [@aikido-autofix](https://github.com/apps/aikido-autofix)! - [Aikido] Fix 5 security issues in yaml, minimatch, ajv
|
|
16
|
+
|
|
17
|
+
- [#1634](https://github.com/aligent/cdk-constructs/pull/1634) [`38d563f`](https://github.com/aligent/cdk-constructs/commit/38d563f2b5d67401b1234736f11cee446e5ae7d7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates
|
|
18
|
+
|
|
19
|
+
- [#1636](https://github.com/aligent/cdk-constructs/pull/1636) [`6805acb`](https://github.com/aligent/cdk-constructs/commit/6805acbb180625de5a494fd2fe11827520a77b76) Thanks [@aikido-autofix](https://github.com/apps/aikido-autofix)! - [Aikido] Fix security issue in aws-cdk-lib via minor version upgrade from 2.235.1 to 2.245.0
|
|
20
|
+
|
|
21
|
+
- [#1638](https://github.com/aligent/cdk-constructs/pull/1638) [`7a8d347`](https://github.com/aligent/cdk-constructs/commit/7a8d3470b97fbdc769f18d55ce1c1a35b96cdf18) Thanks [@TheOrangePuff](https://github.com/TheOrangePuff)! - Update constructs peer dependency from ^10.3.0/^10.4.2 to ^10.5.0 to match aws-cdk-lib@2.245.0 requirements
|
|
22
|
+
|
|
3
23
|
## 0.5.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aligent/cdk-aspects",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Collection of CDK Asppects",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/jest": "^29.5.10",
|
|
23
|
-
"@types/node": "^20.19.
|
|
23
|
+
"@types/node": "^20.19.39",
|
|
24
24
|
"aws-cdk": "^2.1019.1",
|
|
25
25
|
"jest": "^29.7.0",
|
|
26
26
|
"ts-jest": "^29.1.1",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"aws-cdk-lib": "^2.201.0",
|
|
32
|
-
"constructs": "^10.
|
|
33
|
-
"esbuild": "^0.
|
|
32
|
+
"constructs": "^10.5.0",
|
|
33
|
+
"esbuild": "^0.28.0",
|
|
34
34
|
"source-map-support": "^0.5.21"
|
|
35
35
|
}
|
|
36
36
|
}
|