Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
run_install: |
- recursive: true
args: [--no-frozen-lockfile]
args: [--frozen-lockfile]

# No need to install dependencies - npm version works without them
- name: Version bump
Expand Down
6 changes: 3 additions & 3 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda-mcp-server/example",
"version": "1.1.1",
"version": "1.1.2",
"type": "module",
"private": true,
"license": "ISC",
Expand All @@ -18,7 +18,7 @@
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@eslint/js": "^10.0.1",
"@eslint/js": "^9.39.2",
"@hono/mcp": "0.2.3",
"@hono/node-server": "1.19.9",
"@stylistic/eslint-plugin": "^5.8.0",
Expand All @@ -27,7 +27,7 @@
"@vitest/coverage-v8": "4.0.18",
"aws-cdk": "2.1106.0",
"esbuild": "0.27.3",
"eslint": "^10.0.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-promise": "7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-lambda-mcp-server/root",
"private": true,
"version": "1.1.1",
"version": "1.1.2",
"description": "A Hono wrapper for building an MCP (Model Context Protocol) Server that runs on AWS Lambda functions.",
"type": "module",
"scripts": {
Expand Down
16 changes: 8 additions & 8 deletions package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-lambda-mcp-server",
"version": "1.1.1",
"version": "1.1.2",
"description": "A Hono wrapper for building an MCP (Model Context Protocol) Server that runs on AWS Lambda functions.",
"type": "module",
"keywords": [
Expand Down Expand Up @@ -45,10 +45,10 @@
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@eslint/js": "^10.0.1",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.8.0",
"@types/node": "25.2.3",
"eslint": "^10.0.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-promise": "7.2.1",
Expand All @@ -59,11 +59,11 @@
"vitest": "4.0.18"
},
"dependencies": {
"@aws-lambda-powertools/logger": "2.31.0",
"@hono/mcp": "0.2.3",
"@modelcontextprotocol/sdk": "1.26.0",
"hono": "4.11.9",
"zod": "4.3.6"
"@aws-lambda-powertools/logger": "^2.29.0",
"@hono/mcp": "^0.2.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"hono": "^4.10.7",
"zod": "^3.25 || ^4.0"
},
"peerDependencies": {
"@aws-lambda-powertools/logger": "^2.29.0",
Expand Down
18 changes: 6 additions & 12 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ $result -ne 0 ]; then
fi
echo ""
pwd
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix && pnpm up -r && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix && pnpm up -r && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install --frozen-lockfile
result=$?
if [ $result -ne 0 ]; then
cd "${CUR}" || exit
Expand Down
Loading