Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
<!-- markdownlint-disable MD041 -->

## 概要

概要を記述。

## 変更点

| 追加・変更・削除したファイル (リポジトリルートからの相対パス) | 変更内容 | 事由 |
|-----------------------------------------------------|---------|-----|
| --------------------------------------------------- | ------- | --- |
| 変更したファイルのリポジトリルートからの相対パス | どんな変更を行なったのか? | 何故、変更が必要だったのか? |

## 関連Issue

-
- あれば記述(なければセクションを削除)

## 確認事項

- [ ] (Typescriptの場合) `pnpm audit --fix` で脆弱性を修正済みか?
- [ ] (Typescriptの場合) `pnpm lint-fix` でコードスタイルは修正済みか?
- [ ] (Markdownの場合)`markdownlint-2` で Markdown の lint は修正済みか?
- [ ] (Markdownの場合)`npx -y markdownlint-cli2@latest . --fix` で Markdown の lint は修正済みか?

## 特記事項

あれば記述する
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ updates:
rebase-strategy: auto
assignees:
- poad
ignore:
- dependency-name: "@types/node"
versions: ["25.x", "27.x", "29.x"] # 奇数バージョン(非LTS)を無視
groups:
npm:
patterns:
Expand Down
4 changes: 2 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@hono/node-server": "1.19.9",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/aws-lambda": "8.10.160",
"@types/node": "25.3.0",
"@types/node": "^24.10.13",
"@vitest/coverage-v8": "4.0.18",
"aws-cdk": "2.1106.1",
"esbuild": "0.27.3",
Expand All @@ -45,7 +45,7 @@
"aws-cdk-lib": "2.238.0",
"aws-lambda-mcp-server": "workspace:*",
"constructs": "10.5.1",
"hono": "4.12.0",
"hono": "4.12.1",
"zod": "4.3.6"
}
}
4 changes: 2 additions & 2 deletions package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@eslint/compat": "2.0.2",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/node": "25.3.0",
"@types/node": "^24.10.13",
"eslint": "^10.0.1",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
Expand All @@ -62,7 +62,7 @@
"@aws-lambda-powertools/logger": "^2.31.0",
"@hono/mcp": "^0.2.3",
"@modelcontextprotocol/sdk": "^1.26.0",
"hono": "^4.12.0",
"hono": "^4.12.1",
"zod": "^4.3.6"
},
"peerDependencies": {
Expand Down
Loading