Skip to content

Commit

Permalink
Update all non-major dependencies (#823)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Adam <[email protected]>
  • Loading branch information
renovate[bot] and beeequeue authored Nov 19, 2024
1 parent 7db2683 commit 8b9beb4
Show file tree
Hide file tree
Showing 7 changed files with 299 additions and 671 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
packageRules: [
{
packageNames: ["node"],
allowedVersions: "<=20",
allowedVersions: "<=22",
rangeStrategy: "replace",
},
{
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- run: corepack enable

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- run: corepack enable

Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- run: corepack enable

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS runtime_deps
FROM node:22-alpine AS runtime_deps

RUN corepack enable

Expand All @@ -13,7 +13,7 @@ ENV NODE_ENV=production
# Install dependencies
RUN pnpm install --frozen-lockfile

FROM node:20-alpine AS docs
FROM node:22-alpine AS docs

RUN corepack enable

Expand All @@ -30,7 +30,7 @@ RUN pnpm install --frozen-lockfile

RUN pnpm run docs

FROM node:20-alpine
FROM node:22-alpine

RUN corepack enable

Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"private": true,
"license": "AGPL-3.0-only",
"homepage": "https://arm.haglund.dev/docs",
"packageManager": "pnpm@9.12.1",
"packageManager": "pnpm@9.13.2",
"engines": {
"node": ">=20"
"node": ">=22"
},
"simple-git-hooks": {
"pre-commit": "pnpm --silent lint-staged"
"pre-commit": "node_modules/.bin/nano-staged"
},
"lint-staged": {
"*.{js,ts,json}": ["biome check --fix"]
"nano-staged": {
"*.{js,cjs,mjs,ts,cts,mts,json}": ["biome check --fix"]
},
"scripts": {
"dev": "onchange --initial --kill 'src/**' pnpm-lock.yaml -- pnpm --silent run start",
Expand All @@ -36,43 +36,43 @@
"esbuild": "0.24.0"
},
"dependencies": {
"@hono/node-server": "1.13.2",
"@hono/node-server": "1.13.7",
"@hono/sentry": "1.2.0",
"@hono/zod-validator": "0.4.1",
"@sentry/node": "8.34.0",
"@tsconfig/node20": "20.1.4",
"@sentry/node": "8.38.0",
"@tsconfig/node22": "22.0.0",
"@tsconfig/strictest": "2.0.5",
"better-sqlite3": "11.3.0",
"hono": "4.6.5",
"better-sqlite3": "11.5.0",
"hono": "4.6.10",
"is-ci": "3.0.1",
"knex": "3.1.0",
"ofetch": "1.4.1",
"pino": "9.4.0",
"pino": "9.5.0",
"pino-pretty": "13.0.0",
"rambda": "9.3.0",
"sucrase": "3.35.0",
"tsx": "4.19.1",
"type-fest": "4.26.1",
"tsx": "4.19.2",
"type-fest": "4.27.0",
"typescript": "5.6.3",
"zod": "3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "3.8.0",
"@biomejs/biome": "1.9.3",
"@biomejs/biome": "1.9.4",
"@types/json-schema": "7.0.15",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "2.1.5",
"dotenv": "16.4.5",
"eslint": "9.14.0",
"lint-staged": "15.2.10",
"nano-staged": "0.8.0",
"onchange": "7.1.0",
"simple-git-hooks": "2.11.1",
"tsconfig-paths": "4.2.0",
"vitest": "2.1.5"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1"
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1"
}
}
}
Loading

0 comments on commit 8b9beb4

Please sign in to comment.