Skip to content

Commit 8f96129

Browse files
committed
Bumps node modules
1 parent 31f4b4f commit 8f96129

10 files changed

Lines changed: 55 additions & 48 deletions

File tree

.github/workflows/create-release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
check-latest: true
4242
package-manager-cache: false
4343

44-
- uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6.0.4
44+
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
4545
with:
4646
run_install: |
4747
- recursive: true

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828

29-
- uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6.0.4
29+
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
3030
name: Install pnpm
3131
with:
3232
run_install: |
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- name: Configure AWS Credentials
50-
uses: aws-actions/configure-aws-credentials@ec61189d14ec14c8efccab744f656cffd0e33f37 # v6.1.0
50+
uses: aws-actions/configure-aws-credentials@d979d5b3a71173a29b74b5b88418bfda9437d885 # v6.1.1
5151
with:
5252
role-to-assume: ${{ env.OIDC_IAM_ROLE_ARN }}
5353
role-session-name: GitHubActions
@@ -62,7 +62,7 @@ jobs:
6262
check-latest: true
6363
package-manager-cache: false
6464

65-
- uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6.0.4
65+
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
6666
name: Install pnpm
6767
with:
6868
run_install: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
echo "Updated npm version: $(npm -v)"
5959
6060
- name: Install pnpm
61-
uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6.0.4
61+
uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
6262
with:
6363
run_install: |
6464
- recursive: true

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ jobs:
7575
# Upload the results to GitHub's code scanning dashboard (optional).
7676
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7777
- name: "Upload to code-scanning"
78-
uses: github/codeql-action/upload-sarif@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
78+
uses: github/codeql-action/upload-sarif@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
7979
with:
8080
sarif_file: results.sarif

example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@eslint/compat": "2.0.5",
2020
"@eslint/js": "10.0.1",
2121
"@hono/mcp": "0.2.5",
22-
"@hono/node-server": "^2.0.1",
22+
"@hono/node-server": "2.0.1",
2323
"@stylistic/eslint-plugin": "5.10.0",
2424
"@types/aws-lambda": "8.10.161",
2525
"@types/node": "25.6.0",
@@ -42,7 +42,7 @@
4242
"aws-cdk-lib": "2.252.0",
4343
"aws-lambda-mcp-server": "workspace:*",
4444
"constructs": "10.6.0",
45-
"hono": "^4.12.16",
45+
"hono": "4.12.16",
4646
"zod": "4.4.1"
4747
}
4848
}

package/eslint.config.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,21 @@ const eslintConfig: Config[] = defineConfig(
3636
pluginPromise.configs['flat/recommended'],
3737
{
3838
files: ['**/*.ts'],
39-
plugins: {
40-
'import-x': importX,
41-
'@stylistic': stylistic,
42-
},
4339
languageOptions: {
4440
ecmaVersion: 'latest',
4541
sourceType: 'module',
4642
parser,
4743
parserOptions: {
48-
projectService: false,
44+
projectService: {
45+
allowDefaultProject: ['eslint.config.ts'],
46+
},
4947
tsconfigRootDir: __dirname,
50-
project: ['./tsconfig-eslint.json'],
5148
},
5249
},
50+
plugins: {
51+
'import-x': importX,
52+
'@stylistic': stylistic,
53+
},
5354
extends: [
5455
'import-x/flat/recommended',
5556
],

package/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@
5858
"typescript-eslint": "8.59.1"
5959
},
6060
"dependencies": {
61-
"@aws-lambda-powertools/logger": "^2.33.0",
62-
"@hono/mcp": "^0.2.5",
63-
"@modelcontextprotocol/sdk": "^1.29.0",
64-
"hono": "^4.12.16",
65-
"zod": "^4.4.1"
61+
"@aws-lambda-powertools/logger": "2.33.0",
62+
"@hono/mcp": "0.2.5",
63+
"@modelcontextprotocol/sdk": "1.29.0",
64+
"hono": "4.12.16",
65+
"zod": "4.4.1"
6666
},
6767
"peerDependencies": {
6868
"@aws-lambda-powertools/logger": "^2.33.0",
69-
"@hono/mcp": "^0.2.4",
69+
"@hono/mcp": "^0.2.5",
7070
"@modelcontextprotocol/sdk": "^1.29.0",
71-
"hono": "^4.12.9",
71+
"hono": "^4.12.16",
7272
"zod": "^3.25 || ^4.0"
7373
}
7474
}

pnpm-lock.yaml

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

pnpm-workspace.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
packages:
22
- package
33
- example
4+
45
allowBuilds:
56
esbuild: false
67
unrs-resolver: false
8+
9+
blockExoticSubdeps: true
10+
711
minimumReleaseAge: 10080 # 7 days in minutes
12+
813
minimumReleaseAgeExclude:
9-
- '@hono/node-server@1.19.13'
10-
- hono@4.12.12
1114
- ip-address@10.1.1
1215

1316
overrides:
14-
'@hono/node-server@<1.19.13': '>=1.19.13'
15-
hono: '>=4.12.12'
1617
ip-address@<=10.1.0: ^10.1.1
17-
path-to-regexp@>=8.0.0 <8.4.0: '>=8.4.0'
1818
semver: '>=7'
1919

2020
publishBranch: main

update.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ if [ $result -ne 0 ]; then
1414
fi
1515
echo ""
1616
pwd
17-
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix override && pnpm up -r && pnpm -r --if-present --parallel build && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install -r --no-frozen-lockfile
18-
result=$?
19-
if [ $result -ne 0 ]; then
17+
18+
if ! (npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix override && pnpm up -r && pnpm -r --if-present --parallel build && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install -r --no-frozen-lockfile); then
2019
cd "${CUR}" || exit
21-
exit $result
20+
exit 1
2221
fi
2322
git commit -am "Bumps node modules" && git push
2423
result=$?

0 commit comments

Comments
 (0)