Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

Bumps the dependencies group with 4 updates in the / directory: zod, @biomejs/biome, @types/node and knip.

Updates zod from 4.1.13 to 4.2.1

Release notes

Sourced from zod's releases.

v4.2.1

Commits:

  • 5b5b129315fbc94a3b0d6244185eaeefcbe438d1 4.2.1

v4.2.0

Features

Implement Standard JSON Schema

standard-schema/standard-schema#134

Implement z.fromJSONSchema()

const jsonSchema = {
  type: "object",
  properties: {
    name: { type: "string" },
    age: { type: "number" }
  },
  required: ["name"]
};
const schema = z.fromJSONSchema(jsonSchema);

Implement z.xor()

const schema = z.xor(
  z.object({ type: "user", name: z.string() }),
  z.object({ type: "admin", role: z.string() })
);
// Exactly one of the schemas must match

Implement z.looseRecord()

const schema = z.looseRecord(z.string(), z.number());
// Allows additional properties beyond those defined

Commits:

  • af49c084f66339110d00e37ff71dc7b3b9f2b7ef Update docs for JSON Schema conversion of z.undefined() (#5504)
  • 767f320318986e422f524b939f1a7174544fda2e Add .toJSONSchema() method (#5477)
  • e17dcb63573397063e87d7c7fe10a5a78968181a Add z.fromJSONSchema(), z.looseRecord(), z.xor() (#5534)
Commits

Updates @biomejs/biome from 2.3.8 to 2.3.10

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.10

2.3.10

Patch Changes

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.10

Patch Changes

2.3.9

Patch Changes

  • #8232 84c9e08 Thanks @​ruidosujeira! - Added the nursery rule noScriptUrl.

    This rule disallows the use of javascript: URLs, which are considered a form of eval and can pose security risks such as XSS vulnerabilities.

    <a href="javascript:alert('XSS')">Click me</a>
  • #8341 343dc4d Thanks @​arendjr! - Added the nursery rule useAwaitThenable, which enforces that await is only used on Promise values.

    Invalid

    await "value";
    const createValue = () => "value";
    await createValue();

... (truncated)

Commits

Updates @types/node from 24.10.1 to 25.0.3

Commits

Updates knip from 5.72.0 to 5.76.3

Release notes

Sourced from knip's releases.

Release 5.76.3

  • #1381 Config default to packageManager if present in PackageJSON (#1402) (da7045bfe195accb4162a62a94220a279a22b25a) - thanks @​AlexanderKaran!
  • Release v0.0.7 packages (c9b2625c677b5cbec35cdc7895e1dcc45c1c1430)
  • Release vscode-knip@0.0.11 (593e7ac19e6a30be7f52ead5648cf4f2e39b4b33)
  • Read package.json only once (b5238895acc314c6e7b490e29c02b8819f2fb602)
  • Release @​knip/create-config@​1.1.0 (805ee2ed4eae96e6b930db768e17c416764247b9)
  • Add release script for @​knip/create-config (7e6de6e48f6c7dbeb7f3c7a2bc51bbed22f78ecc)
  • Improve bunx handler (resolve #1410) (5ab0488ae59b9f06d82709df86b038c2fc125e93)
  • Improve bun/node test runner handling (resolve #1411) (d66834572e89d9baa7cdac8fe9a7d692ed6eda13)
  • Skip externalRefs work if we're not in a session (0fc619424771e7d00e7c2718aca64f261944ecd9)
  • Skip work for e.g. --files or --dependencies runs (60d760cb7630ceec3868073b0d41b9c49744d844)
  • Skip work if we're not reporting dependency issues (2456dcf29a829454f222701edd7ecf7ec8b1050d)
  • Auto-format (95cf1a96e7035ff7d0cadac1757eb4f86f2bb20f)

Release 5.76.2

  • fix docs url (#1408) (bcbb1dd2a96eebb0ba673c011bb82f5bb331cecb) - thanks @​GameRoMan!
  • Release v0.0.5 packages (e92537e424e4f3e5130efc3b0d39eb23b843db59)
  • Release v0.0.10 vscode-knip (c4b8c318593e49f17b8c080091a44fa307bd0d5a)
  • Less foo-ing (b71704ab05a63bb529a56064ec0ecbed4a74e15d)
  • Add link to extension on openvsx registry (2923c971861ace5c65b10c2e4117ea521e0bef00)
  • Extend biome config (696b8e65102b8b13f62ccc3c32b25198701a4d97)
  • Extend AGENTS.md (a02e0b59e739702abeecf5e264bf78edbca7f4e7)
  • Add note re. internal workspaces in Nx setting (#1395) (f8cfcf140374c179eb491a365e2969ceadb62ace)
  • Update release scripts (95c2f516dad6bcbb011aa3669e3ba99b49f9ca29)
  • Release v0.0.6 packages (38c3fdea710387b398b64f0dbad78faa2ab5bce6)
  • Re-gen plugin list (419b8ef19baeba9365afa777c48980bfe7e1b1ba)
  • Update sponsors page (60965788d91698d00fee0522d489069f4f1fe3b5)
  • Add note to Nx plugin (close #1395) (527d64ea778850a6b82d3bb3bf2799eb36891e4f)
  • Improve bun script file resolver (resolve #1409) (e1ca76e90845b0724191f0dba20cf205716b169f)
  • Improve script handling (#1404) (8d47360686859d38d73c41fb322ac2680590ab4f)
  • Add enabled plugins to tool results (avoid unnecessary entries) (906a49f7136fa36f241aba022afee24580a055c6)
  • Fix var name in ci job error handler (9d0ebe0794dd62dfdab0cc1fee72207eb0bab5dc)

Release 5.76.1

  • Session re-export monorepo test setup (#1407) (69050886a9e62b51bfba9b716841643f08b81854) - thanks @​Sheraff!
  • Release v0.0.3 packages (344fab2057419c7ef5fd275bef7bde6c12b6c83b)
  • Fix jiti src + mcp docs (fa6cf89431a1ff079ec113857871bf7f8c4faa81)
  • Release v0.0.9 vscode-knip (69b32a9612cfca1410cb8d1166eab508d1a8ed0d)
  • Walk through entry files (resolve #1397) (96f884eae5baaac5c9c0707ce7344657364fcf99)
  • Fix glob-likes & links in workspaces in imports tree view (413cc8c57ca0e56b2cd541d6348733e3e4ed362b)
  • Improve extension build script (dad8a8c1e25bb107ab49eae85a3ae752d6064ca4)

Release 5.76.0

  • fix: Unexpected error when pnpm catalogs are empty (#1406) (e2dc8ba8f935f07bad08d2d7e7562f111fa65da7) - thanks @​Promise2679!
  • Release v0.0.3 packages (b4baaa03f4247b1e8470a2e10f1fa91262c3efd2)
  • Release v0.0.8 vscode-knip (3af5727104099ad3a9bac60af59c0db60ee61f90)
  • Fix link to self (63e51438551b48cac2e723d430a677e5997d3d7b)
  • Fix excessive output/handling for files outside project scope (7df0da846dae10bea15f12514051c926793a9e85)
  • Add getDependencyUsage operation to explorer (3ff7afae57245bdba9801839b561b2276c2d0871)
  • Add --trace-dependency flag + trace reporter (a4a8528528f60576f727761380e3e2fb11711ff1)

... (truncated)

Commits
  • a7383ac Release 5.76.3
  • 95cf1a9 Auto-format
  • 2456dcf Skip work if we're not reporting dependency issues
  • 60d760c Skip work for e.g. --files or --dependencies runs
  • 0fc6194 Skip externalRefs work if we're not in a session
  • d668345 Improve bun/node test runner handling (resolve #1411)
  • 5ab0488 Improve bunx handler (resolve #1410)
  • 1986912 Release 5.76.2
  • 906a49f Add enabled plugins to tool results (avoid unnecessary entries)
  • 8d47360 Improve script handling (#1404)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the dependencies group with 4 updates in the / directory: [zod](https://github.com/colinhacks/zod), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip).


Updates `zod` from 4.1.13 to 4.2.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.1.13...v4.2.1)

Updates `@biomejs/biome` from 2.3.8 to 2.3.10
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.10/packages/@biomejs/biome)

Updates `@types/node` from 24.10.1 to 25.0.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `knip` from 5.72.0 to 5.76.3
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/5.76.3/packages/knip)

---
updated-dependencies:
- dependency-name: zod
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: knip
  dependency-version: 5.76.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 22, 2025

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@github-actions
Copy link

📊 Build Report

Bundle Size: 1.19 KB
Node Versions Tested: 18, 20, 22
All Checks: ✅ Passed

Details
  • Linting (BiomeJS, Knip, TypeScript): ✅
  • Tests with coverage: ✅
  • Build: ✅
  • Integration test: ✅

Generated for commit c451c8d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant