Skip to content

Commit f6f1051

Browse files
Bump the npm group across 3 directories with 3 updates (#21)
* Bump the npm group across 3 directories with 3 updates Bumps the npm group with 3 updates in the / directory: [zod](https://github.com/colinhacks/zod), [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) and [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda). Bumps the npm group with 3 updates in the /example directory: [zod](https://github.com/colinhacks/zod), [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) and [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda). Bumps the npm group with 1 update in the /package directory: [zod](https://github.com/colinhacks/zod). Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v3.25.76...v4.1.12) Updates `@stylistic/eslint-plugin` from 5.5.0 to 5.6.0 - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases) - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v5.6.0/packages/eslint-plugin) Updates `@types/aws-lambda` from 8.10.158 to 8.10.159 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v3.25.76...v4.1.12) Updates `@stylistic/eslint-plugin` from 5.5.0 to 5.6.0 - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases) - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v5.6.0/packages/eslint-plugin) Updates `@types/aws-lambda` from 8.10.158 to 8.10.159 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: npm - dependency-name: "@stylistic/eslint-plugin" dependency-version: 5.6.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: "@types/aws-lambda" dependency-version: 8.10.159 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: npm - dependency-name: "@stylistic/eslint-plugin" dependency-version: 5.6.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: "@types/aws-lambda" dependency-version: 8.10.159 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * Downgrade zod to v3 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kenji Saito <ken-yo@mbr.nifty.com>
1 parent 0d8b491 commit f6f1051

4 files changed

Lines changed: 26 additions & 33 deletions

File tree

example/lambda/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const createMcpServer = () => {
1818
description: 'Greets the user with a friendly message.',
1919
inputSchema: { who: z.string() },
2020
},
21-
async ({ who }) => ({
21+
async ({ who }: { who: string }) => ({
2222
content: [{
2323
type: 'text',
2424
text: `${who} さん、こんにちは!`,

example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"@eslint/js": "^9.39.1",
2222
"@hono/mcp": "^0.1.5",
2323
"@hono/node-server": "^1.19.6",
24-
"@stylistic/eslint-plugin": "^5.5.0",
25-
"@types/aws-lambda": "^8.10.158",
24+
"@stylistic/eslint-plugin": "^5.6.0",
25+
"@types/aws-lambda": "^8.10.159",
2626
"@types/node": "^24.10.1",
2727
"@vitest/coverage-v8": "^4.0.10",
2828
"aws-cdk": "^2.1032.0",

package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"devDependencies": {
4747
"@eslint/compat": "^2.0.0",
4848
"@eslint/js": "^9.39.1",
49-
"@stylistic/eslint-plugin": "^5.5.0",
49+
"@stylistic/eslint-plugin": "^5.6.0",
5050
"@types/node": "24.10.1",
5151
"eslint": "^9.39.1",
5252
"eslint-import-resolver-typescript": "^4.4.4",

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)