From 68ba6ac5e257a92611711f64dc950736418fb031 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 8 Mar 2026 16:32:32 +0000 Subject: [PATCH 1/2] chore(deps): bump @clack/prompts in the production-dependencies group Bumps the production-dependencies group with 1 update: [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts). Updates `@clack/prompts` from 1.0.1 to 1.1.0 - [Release notes](https://github.com/bombshell-dev/clack/releases) - [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md) - [Commits](https://github.com/bombshell-dev/clack/commits/@clack/prompts@1.1.0/packages/prompts) --- updated-dependencies: - dependency-name: "@clack/prompts" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] --- package-lock.json | 18 ++++++++---------- package.json | 2 +- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9692e32..de3a2fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "0.0.0-dev", "license": "MIT", "dependencies": { - "@clack/prompts": "^1.0.1", + "@clack/prompts": "^1.1.0", "dset": "^3.1.4", "picocolors": "^1.1.1", "sade": "^1.8.1", @@ -92,23 +92,21 @@ } }, "node_modules/@clack/core": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@clack/core/-/core-1.0.1.tgz", - "integrity": "sha512-WKeyK3NOBwDOzagPR5H08rFk9D/WuN705yEbuZvKqlkmoLM2woKtXb10OO2k1NoSU4SFG947i2/SCYh+2u5e4g==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@clack/core/-/core-1.1.0.tgz", + "integrity": "sha512-SVcm4Dqm2ukn64/8Gub2wnlA5nS2iWJyCkdNHcvNHPIeBTGojpdJ+9cZKwLfmqy7irD4N5qLteSilJlE0WLAtA==", "license": "MIT", "dependencies": { - "picocolors": "^1.0.0", "sisteransi": "^1.0.5" } }, "node_modules/@clack/prompts": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@clack/prompts/-/prompts-1.0.1.tgz", - "integrity": "sha512-/42G73JkuYdyWZ6m8d/CJtBrGl1Hegyc7Fy78m5Ob+jF85TOUmLR5XLce/U3LxYAw0kJ8CT5aI99RIvPHcGp/Q==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@clack/prompts/-/prompts-1.1.0.tgz", + "integrity": "sha512-pkqbPGtohJAvm4Dphs2M8xE29ggupihHdy1x84HNojZuMtFsHiUlRvqD24tM2+XmI+61LlfNceM3Wr7U5QES5g==", "license": "MIT", "dependencies": { - "@clack/core": "1.0.1", - "picocolors": "^1.0.0", + "@clack/core": "1.1.0", "sisteransi": "^1.0.5" } }, diff --git a/package.json b/package.json index ec23b88..403ba18 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "vitest": "^4.0.15" }, "dependencies": { - "@clack/prompts": "^1.0.1", + "@clack/prompts": "^1.1.0", "dset": "^3.1.4", "picocolors": "^1.1.1", "sade": "^1.8.1", From 374a7837f9b5dae78eec9e8916c9c9976f9238f5 Mon Sep 17 00:00:00 2001 From: James Garbutt <43081j@users.noreply.github.com> Date: Sun, 8 Mar 2026 20:29:40 +0000 Subject: [PATCH 2/2] chore: drop node 18 ci --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 43aaa94..83c17db 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x, 22.x] + node-version: [20.x, 22.x, latest] fail-fast: false steps: - name: Checkout