Skip to content

Commit b6f3340

Browse files
chore(deps): update all non-major dependencies (#113)
This PR contains the following updates: | Package | Change | Age | Confidence | Type | Update | Pending | |---|---|---|---|---|---|---| | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`22.15.32` -> `22.15.34`](https://renovatebot.com/diffs/npm/@types%2fnode/22.15.32/22.15.34) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.15.34?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/22.15.32/22.15.34?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch | `22.16.0` (+1) | | docker.io/node | `22.16.0-bookworm-slim` -> `22.17.0-bookworm-slim` | [![age](https://developer.mend.io/api/mc/badges/age/docker/docker.io%2fnode/22.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/docker.io%2fnode/22.16.0/22.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | final | minor | | | [eslint](https://eslint.org) ([source](https://redirect.github.com/eslint/eslint)) | [`9.29.0` -> `9.30.0`](https://renovatebot.com/diffs/npm/eslint/9.29.0/9.30.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/9.30.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/9.29.0/9.30.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | `9.30.1` | | [github/codeql-action](https://redirect.github.com/github/codeql-action) | `v3.29.1` -> `v3.29.2` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/github%2fcodeql-action/v3.29.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/github%2fcodeql-action/v3.29.1/v3.29.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | action | patch | | | [prettier](https://prettier.io) ([source](https://redirect.github.com/prettier/prettier)) | [`3.5.3` -> `3.6.2`](https://renovatebot.com/diffs/npm/prettier/3.5.3/3.6.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.5.3/3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | | | [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint)) | [`8.34.1` -> `8.35.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.34.1/8.35.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript-eslint/8.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript-eslint/8.34.1/8.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | minor | `8.35.1` | --- ### Release Notes <details> <summary>eslint/eslint (eslint)</summary> ### [`v9.30.0`](https://redirect.github.com/eslint/eslint/compare/v9.29.0...ad1d63951773acc7828bcc1eafbb731567447298) [Compare Source](https://redirect.github.com/eslint/eslint/compare/v9.29.0...v9.30.0) </details> <details> <summary>github/codeql-action (github/codeql-action)</summary> ### [`v3.29.2`](https://redirect.github.com/github/codeql-action/compare/v3.29.1...v3.29.2) [Compare Source](https://redirect.github.com/github/codeql-action/compare/v3.29.1...v3.29.2) </details> <details> <summary>prettier/prettier (prettier)</summary> ### [`v3.6.2`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#362) [Compare Source](https://redirect.github.com/prettier/prettier/compare/3.6.1...3.6.2) [diff](https://redirect.github.com/prettier/prettier/compare/3.6.1...3.6.2) ##### Markdown: Add missing blank line around code block ([#&#8203;17675](https://redirect.github.com/prettier/prettier/pull/17675) by [@&#8203;fisker](https://redirect.github.com/fisker)) <!-- prettier-ignore --> ````md <!-- Input --> 1. Some text, and code block below, with newline after code block ```yaml --- foo: bar ``` 1. Another 2. List <!-- Prettier 3.6.1 --> 1. Some text, and code block below, with newline after code block ```yaml --- foo: bar ``` 1. Another 2. List <!-- Prettier 3.6.2 --> 1. Some text, and code block below, with newline after code block ```yaml --- foo: bar ``` 1. Another 2. List ```` ### [`v3.6.1`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#361) [Compare Source](https://redirect.github.com/prettier/prettier/compare/3.6.0...3.6.1) [diff](https://redirect.github.com/prettier/prettier/compare/3.6.0...3.6.1) ##### TypeScript: Allow const without initializer ([#&#8203;17650](https://redirect.github.com/prettier/prettier/pull/17650), [#&#8203;17654](https://redirect.github.com/prettier/prettier/pull/17654) by [@&#8203;fisker](https://redirect.github.com/fisker)) <!-- prettier-ignore --> ```jsx // Input export const version: string; // Prettier 3.6.0 (--parser=babel-ts) SyntaxError: Unexpected token (1:21) > 1 | export const version: string; | ^ // Prettier 3.6.0 (--parser=oxc-ts) SyntaxError: Missing initializer in const declaration (1:14) > 1 | export const version: string; | ^^^^^^^^^^^^^^^ // Prettier 3.6.1 export const version: string; ``` ##### Miscellaneous: Avoid closing files multiple times ([#&#8203;17665](https://redirect.github.com/prettier/prettier/pull/17665) by [@&#8203;43081j](https://redirect.github.com/43081j)) When reading a file to infer the interpreter from a shebang, we use the `n-readlines` library to read the first line in order to get the shebang. This library closes files when it reaches EOF, and we later try close the same files again. We now close files only if `n-readlines` did not already close them. ### [`v3.6.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#360) [Compare Source](https://redirect.github.com/prettier/prettier/compare/3.5.3...3.6.0) [diff](https://redirect.github.com/prettier/prettier/compare/3.5.3...3.6.0) 🔗 [Release Notes](https://prettier.io/blog/2025/06/23/3.6.0) </details> <details> <summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary> ### [`v8.35.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8350-2025-06-23) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.34.1...v8.35.0) This was a version bump only for typescript-eslint to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on Sunday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [x] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/8hobbies/commitrack). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNy4yIiwidXBkYXRlZEluVmVyIjoiNDEuMTcuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent b02a344 commit b6f3340

File tree

10 files changed

+355
-355
lines changed

10 files changed

+355
-355
lines changed

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ jobs:
5555
continue-on-error: true
5656

5757
- name: Upload Trivy fs scan results to GitHub Security tab
58-
uses: github/codeql-action/[email protected].1
58+
uses: github/codeql-action/[email protected].2
5959
with:
6060
category: "trivy-fs"
6161
sarif_file: "fs.sarif"
6262

6363
- name: Upload Trivy image scan results to GitHub Security tab
64-
uses: github/codeql-action/[email protected].1
64+
uses: github/codeql-action/[email protected].2
6565
with:
6666
category: "trivy-image"
6767
sarif_file: "image.sarif"

package-lock.json

Lines changed: 84 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
"@8hobbies/eslint-conf-baseline": "6.0.0",
2727
"@prisma/client": "6.10.1",
2828
"@types/eslint": "9.6.1",
29-
"@types/node": "22.15.32",
30-
"eslint": "9.29.0",
29+
"@types/node": "22.15.34",
30+
"eslint": "9.30.0",
3131
"globals": "16.2.0",
32-
"prettier": "3.5.3",
32+
"prettier": "3.6.2",
3333
"prisma": "6.10.1",
3434
"tsx": "4.20.3",
3535
"typescript": "5.8.3",
36-
"typescript-eslint": "8.34.1",
36+
"typescript-eslint": "8.35.0",
3737
"vitest": "3.2.4"
3838
}
3939
}

packages/api-server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ COPY --from=root packages/common/ /common
2727
RUN npm install -g npm && npm ci && npm run build && rm dist/*.tsbuildinfo
2828

2929
# Production image --------------
30-
FROM docker.io/node:22.16.0-bookworm-slim@sha256:048ed02c5fd52e86fda6fbd2f6a76cf0d4492fd6c6fee9e2c463ed5108da0e34 AS runner
30+
FROM docker.io/node:22.17.0-bookworm-slim@sha256:b2fa526a10dad3c5ab4b3779eca81607ed05a96160ef5497c36cd4ebed68803d AS runner
3131
WORKDIR /app
3232

3333
LABEL org.opencontainers.image.authors="8 Hobbies, LLC"

0 commit comments

Comments
 (0)