From 8419276d6e5e4ea15206ec4bf803df6b3bb1ac1b Mon Sep 17 00:00:00 2001 From: katsumata <12413150+winor30@users.noreply.github.com> Date: Mon, 20 Oct 2025 07:11:11 +0900 Subject: [PATCH 1/3] Update package manager to pnpm@10.18.3 - Update project to use `pnpm` as the package manager. - Specify version `10.18.3` in the `package.json` for consistency and compatibility. Signed-off-by: katsumata <12413150+winor30@users.noreply.github.com> --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ddbee89..77c81de 100644 --- a/package.json +++ b/package.json @@ -76,5 +76,6 @@ "*.{json,md}": [ "prettier --write" ] - } + }, + "packageManager": "pnpm@10.18.3" } From 4eb7e7f77f5a9a109836ad730027c7bcefaeeb1c Mon Sep 17 00:00:00 2001 From: katsumata <12413150+winor30@users.noreply.github.com> Date: Mon, 20 Oct 2025 07:11:22 +0900 Subject: [PATCH 2/3] 1.7.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 77c81de..2878c8a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@winor30/mcp-server-datadog", - "version": "1.6.0", + "version": "1.7.0", "description": "MCP server for interacting with Datadog API", "repository": { "type": "git", From 2a6a630244331a4f3507eccd122ee9cac7b6505b Mon Sep 17 00:00:00 2001 From: katsumata <12413150+winor30@users.noreply.github.com> Date: Mon, 20 Oct 2025 07:31:56 +0900 Subject: [PATCH 3/3] Improve CI configuration and Node.js setup - Refactor CI and publish workflows for improved consistency and readability. - Standardize Node.js and pnpm versions across all jobs. - Implement a frozen lockfile for dependency installation in the publish workflow. Signed-off-by: katsumata <12413150+winor30@users.noreply.github.com> --- .github/workflows/ci.yml | 8 -------- .github/workflows/publish.yml | 2 -- 2 files changed, 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 623c8c5..e8daf6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,6 @@ jobs: node-version: 20 - uses: pnpm/action-setup@v4 - with: - version: 10 - name: Install dependencies run: pnpm install --frozen-lockfile @@ -40,8 +38,6 @@ jobs: node-version: 20 - uses: pnpm/action-setup@v4 - with: - version: 10 - name: Install dependencies run: pnpm install --frozen-lockfile @@ -61,8 +57,6 @@ jobs: node-version: 20 - uses: pnpm/action-setup@v4 - with: - version: 10 - name: Install dependencies run: pnpm install --frozen-lockfile @@ -87,8 +81,6 @@ jobs: node-version: 20 - uses: pnpm/action-setup@v4 - with: - version: 10 - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dede4d9..574a152 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,8 +23,6 @@ jobs: registry-url: 'https://registry.npmjs.org/' - uses: pnpm/action-setup@v4 - with: - version: 10 - name: Install dependencies run: pnpm install --frozen-lockfile