Skip to content

Commit 7b95f2f

Browse files
fix: Update NPM dependencies (#160)
* fix: Update dependencies * fix: prettier * fix: Node v24 update
1 parent c4c94da commit 7b95f2f

File tree

121 files changed

+1168
-1162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+1168
-1162
lines changed

.github/workflows/common-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: write
99

1010
env:
11-
node_version: 22
11+
node_version: 24
1212

1313
jobs:
1414
lint:

.github/workflows/common-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ permissions:
2525
env:
2626
REAL_NPM: ${{ inputs.mode == 'global' || inputs.mode == 'local' }}
2727
TEST_MONOREPO: ${{ inputs.testMonorepo }}
28-
node_version: 22
28+
node_version: 24
2929

3030
jobs:
3131
test-cdk-basic:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
pull-requests: write
1515

1616
env:
17-
node_version: 22
17+
node_version: 24
1818

1919
jobs:
2020
build:

.github/workflows/update-npm-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77

88
env:
9-
node_version: 22
9+
node_version: 24
1010

1111
jobs:
1212
update-packages:

.github/workflows/vitepress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Node
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: 20
29+
node-version: 24
3030
cache: npm
3131
- name: Setup Pages
3232
uses: actions/configure-pages@v4

package-lock.json

Lines changed: 943 additions & 936 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -84,37 +84,37 @@
8484
},
8585
"devDependencies": {
8686
"@eslint/js": "^9.39.1",
87-
"@tsconfig/node22": "^22.0.5",
87+
"@tsconfig/node24": "^24.0.3",
8888
"@types/aws-iot-device-sdk": "^2.2.9",
8989
"@types/eslint-config-prettier": "^6.11.3",
9090
"@types/inquirer": "^9.0.9",
9191
"@types/node": "^24.10.1",
9292
"@types/serverless": "^3.12.27",
9393
"aws-cdk": "2.1033.0",
94-
"aws-cdk-lib": "2.227.0",
94+
"aws-cdk-lib": "2.230.0",
9595
"constructs": "^10.4.3",
9696
"eslint": "^9.39.1",
9797
"eslint-config-prettier": "^10.1.8",
9898
"globals": "^16.5.0",
9999
"husky": "^9.1.7",
100-
"osls": "^3.59.3",
101-
"prettier": "^3.6.2",
100+
"osls": "^3.60.0",
101+
"prettier": "^3.7.2",
102102
"semantic-release": "^25.0.2",
103103
"serverless": "^3.38.0",
104-
"serverless-esbuild": "^1.56.0",
104+
"serverless-esbuild": "^1.56.1",
105105
"tsx": "^4.20.6",
106-
"typescript-eslint": "^8.47.0",
106+
"typescript-eslint": "^8.48.0",
107107
"vitepress": "^1.6.4",
108-
"vitest": "^4.0.13"
108+
"vitest": "^4.0.14"
109109
},
110110
"dependencies": {
111-
"@aws-sdk/client-cloudformation": "^3.938.0",
112-
"@aws-sdk/client-iam": "^3.936.0",
113-
"@aws-sdk/client-iot": "^3.936.0",
114-
"@aws-sdk/client-iot-data-plane": "^3.936.0",
115-
"@aws-sdk/client-lambda": "^3.938.0",
116-
"@aws-sdk/client-s3": "^3.937.0",
117-
"@aws-sdk/credential-providers": "^3.936.0",
111+
"@aws-sdk/client-cloudformation": "^3.940.0",
112+
"@aws-sdk/client-iam": "^3.940.0",
113+
"@aws-sdk/client-iot": "^3.940.0",
114+
"@aws-sdk/client-iot-data-plane": "^3.940.0",
115+
"@aws-sdk/client-lambda": "^3.940.0",
116+
"@aws-sdk/client-s3": "^3.940.0",
117+
"@aws-sdk/credential-providers": "^3.940.0",
118118
"@smithy/shared-ini-file-loader": "^4.4.0",
119119
"aws-iot-device-sdk": "^2.2.16",
120120
"chalk": "^5.6.2",

src/cloudFormation.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@ async function getCloudFormationStackTemplate(
6464
*/
6565
async function getCloudFormationClient(awsConfiguration: AwsConfiguration) {
6666
if (!cloudFormationClient) {
67-
const { CloudFormationClient } = await import(
68-
'@aws-sdk/client-cloudformation'
69-
);
67+
const { CloudFormationClient } =
68+
await import('@aws-sdk/client-cloudformation');
7069
cloudFormationClient = new CloudFormationClient({
7170
region: awsConfiguration.region,
7271
credentials: AwsCredentials.getCredentialsProvider(awsConfiguration),

src/extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"@types/aws-lambda": "^8.10.159"
1414
},
1515
"dependencies": {
16-
"@aws-sdk/client-iot": "^3.936.0",
17-
"@aws-sdk/client-lambda": "^3.938.0",
18-
"@aws-sdk/client-s3": "^3.937.0",
16+
"@aws-sdk/client-iot": "^3.940.0",
17+
"@aws-sdk/client-lambda": "^3.940.0",
18+
"@aws-sdk/client-s3": "^3.940.0",
1919
"aws-iot-device-sdk": "^2.2.16"
2020
}
2121
}

src/extension/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@tsconfig/node22/tsconfig.json",
2+
"extends": "@tsconfig/node24/tsconfig.json",
33
"compilerOptions": {
44
"module": "CommonJS",
55
"moduleResolution": "node"

0 commit comments

Comments
 (0)