Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 26, 2026

Bumps the version-updates group with 10 updates in the / directory:

Package From To
@modelcontextprotocol/sdk 1.25.2 1.25.3
linkup-sdk 2.4.1 2.6.2
zod 4.3.5 4.3.6
@biomejs/biome 2.2.6 2.3.12
@commitlint/cli 20.1.0 20.3.1
@commitlint/config-conventional 20.0.0 20.3.1
@smithery/cli 3.1.5 3.3.2
@types/node 24.8.0 24.10.9
knip 5.65.0 5.82.1
semantic-release 25.0.1 25.0.2

Updates @modelcontextprotocol/sdk from 1.25.2 to 1.25.3

Release notes

Sourced from @​modelcontextprotocol/sdk's releases.

v1.25.3

What's Changed

Full Changelog: modelcontextprotocol/typescript-sdk@v1.25.2...v1.25.3

Commits
  • ced7535 1.25.3
  • 6e8f7e1 fix: prevent Hono from overriding global Response object (v1.x) (#1411)
  • 12ae856 [v1.x backport] Use correct schema for client sampling validation when tools ...
  • See full diff in compare view

Updates linkup-sdk from 2.4.1 to 2.6.2

Release notes

Sourced from linkup-sdk's releases.

v2.6.2

2.6.2 (2026-01-17)

Bug Fixes

v2.6.1

2.6.1 (2026-01-17)

Bug Fixes

v2.6.0

2.6.0 (2026-01-15)

Features

v2.5.1

2.5.1 (2025-12-04)

Bug Fixes

  • add better error handling for unexpected errors (481c581)

v2.5.0

2.5.0 (2025-11-14)

Features

  • search: add maxResults parameter (6861131)
Commits
  • b51e1c4 fix: wrong paths in package
  • bf473cb fix: wrong paths in package
  • 7ba43c4 feat(search): add support for favicon (#23)
  • 481c581 fix: add better error handling for unexpected errors
  • 6861131 feat(search): add maxResults parameter
  • 94b741c docs(readme): fix package import
  • See full diff in compare view

Updates zod from 4.3.5 to 4.3.6

Release notes

Sourced from zod's releases.

v4.3.6

Commits:

  • 9977fb0868432461de265a773319e80a90ba3e37 Add brand.dev to sponsors
  • f4b7bae3468f6188b8f004e007d722148fc91d77 Update pullfrog.yml (#5634)
  • 251d7163a0ac7740fee741428d913e3c55702ace Clean up workflow_call
  • edd4132466da0f5065a8e051b599d01fdd1081d8 fix: add missing User-agent to robots.txt and allow all (#5646)
  • 85db85e9091d0706910d60c7eb2e9c181edd87bd fix: typo in codec.test.ts file (#5628)
  • cbf77bb12bdfda2e054818e79001f5cb3798ce76 Avoid non null assertion (#5638)
  • dfbbf1c1ae0c224b8131d80ddf0a264262144086 Avoid re-exported star modules (#5656)
  • 762e911e5773f949452fd6dd4e360f2362110e8e Generalize numeric key handling
  • ca3c8629c0c2715571f70b44c2433cad3db7fe4e v4.3.6
Commits

Updates @biomejs/biome from 2.2.6 to 2.3.12

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.12

2.3.12

Patch Changes

  • #8653 047576d Thanks @​dyc3! - Added new nursery rule noDuplicateAttributes to forbid duplicate attributes in HTML elements.

  • #8648 96d09f4 Thanks @​BaeSeokJae! - Added a new nursery rule noVueOptionsApi.

    Biome now reports Vue Options API usage, which is incompatible with Vue 3.6's Vapor Mode. This rule detects Options API patterns in <script> blocks, defineComponent(), and createApp() calls, helping prepare codebases for Vapor Mode adoption.

    For example, the following now triggers this rule:

    <script>
    export default {
      data() {
        return { count: 0 };
      },
    };
    </script>
  • #8832 b08270b Thanks @​Exudev! - Fixed #8809, #7985, and #8136: the noSecrets rule no longer reports false positives on common CamelCase identifiers like paddingBottom, backgroundColor, unhandledRejection, uncaughtException, and IngestGatewayLogGroup.

    The entropy calculation algorithm now uses "average run length" to distinguish between legitimate CamelCase patterns (which have longer runs of same-case letters) and suspicious alternating case patterns (which have short runs).

  • #8793 c19fb0e Thanks @​TheBaconWizard! - Properly handle parameters metavariables for arrow_function GritQL queries. The following biome search command no longer throws an error:

    biome search 'arrow_function(parameters=$parameters, body=$body)'
  • #8561 981affb Thanks @​wataryooou! - Fixed noUnusedVariables to ignore type parameters declared in ambient contexts such as declare module blocks.

  • #8817 652cfbb Thanks @​dyc3! - Fixed #8765: The HTML parser can now parse directive modifiers with a single colon, e.g. @keydown.:.

  • #8704 a1914d4 Thanks @​Netail! - Added the nursery rule noRootType. Disallow the usage of specified root types. (e.g. mutation and/or subscription)

    Invalid:

    {
      "options": {
        "disallow": ["mutation"]
      }

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.12

Patch Changes

  • #8653 047576d Thanks @​dyc3! - Added new nursery rule noDuplicateAttributes to forbid duplicate attributes in HTML elements.

  • #8648 96d09f4 Thanks @​BaeSeokJae! - Added a new nursery rule noVueOptionsApi.

    Biome now reports Vue Options API usage, which is incompatible with Vue 3.6's Vapor Mode. This rule detects Options API patterns in <script> blocks, defineComponent(), and createApp() calls, helping prepare codebases for Vapor Mode adoption.

    For example, the following now triggers this rule:

    <script>
    export default {
      data() {
        return { count: 0 };
      },
    };
    </script>
  • #8832 b08270b Thanks @​Exudev! - Fixed #8809, #7985, and #8136: the noSecrets rule no longer reports false positives on common CamelCase identifiers like paddingBottom, backgroundColor, unhandledRejection, uncaughtException, and IngestGatewayLogGroup.

    The entropy calculation algorithm now uses "average run length" to distinguish between legitimate CamelCase patterns (which have longer runs of same-case letters) and suspicious alternating case patterns (which have short runs).

  • #8793 c19fb0e Thanks @​TheBaconWizard! - Properly handle parameters metavariables for arrow_function GritQL queries. The following biome search command no longer throws an error:

    biome search 'arrow_function(parameters=$parameters, body=$body)'
  • #8561 981affb Thanks @​wataryooou! - Fixed noUnusedVariables to ignore type parameters declared in ambient contexts such as declare module blocks.

  • #8817 652cfbb Thanks @​dyc3! - Fixed #8765: The HTML parser can now parse directive modifiers with a single colon, e.g. @keydown.:.

  • #8704 a1914d4 Thanks @​Netail! - Added the nursery rule noRootType. Disallow the usage of specified root types. (e.g. mutation and/or subscription)

    Invalid:

    {
      "options": {
        "disallow": ["mutation"]
      }
    }

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​biomejs/biome since your current version.


Updates @commitlint/cli from 20.1.0 to 20.3.1

Release notes

Sourced from @​commitlint/cli's releases.

v20.3.1

20.3.1 (2026-01-08)

Bug Fixes

Full Changelog: conventional-changelog/commitlint@v20.3.0...v20.3.1

v20.3.0

20.3.0 (2026-01-01)

Features

Docs

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.2.0...v20.3.0

v20.2.0

20.2.0 (2025-12-05)

Features

Chore, docs, etc

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

20.3.1 (2026-01-08)

Note: Version bump only for package @​commitlint/cli

20.3.0 (2026-01-01)

Note: Version bump only for package @​commitlint/cli

20.2.0 (2025-12-05)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 20.0.0 to 20.3.1

Release notes

Sourced from @​commitlint/config-conventional's releases.

v20.3.1

20.3.1 (2026-01-08)

Bug Fixes

Full Changelog: conventional-changelog/commitlint@v20.3.0...v20.3.1

v20.3.0

20.3.0 (2026-01-01)

Features

Docs

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.2.0...v20.3.0

v20.2.0

20.2.0 (2025-12-05)

Features

Chore, docs, etc

... (truncated)

Changelog

Sourced from @​commitlint/config-conventional's changelog.

20.3.1 (2026-01-08)

Note: Version bump only for package @​commitlint/config-conventional

20.3.0 (2026-01-01)

Note: Version bump only for package @​commitlint/config-conventional

20.2.0 (2025-12-05)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @smithery/cli from 3.1.5 to 3.3.2

Release notes

Sourced from @​smithery/cli's releases.

v3.3.0

No release notes provided.

v3.2.1

Fix login

v3.2.0

No release notes provided.

Commits

Updates @types/node from 24.8.0 to 24.10.9

Commits

Updates knip from 5.65.0 to 5.82.1

Release notes

Sourced from knip's releases.

Release 5.82.1

  • Add vsce + ovsx verify PATs (6bec12857f9278c07685388eac3f9d475b63d5df)
  • Improve coverage for isReferencedInExport types (570eafe3a69cc2738e5aabb800cc9dd0076b83ca)

Release 5.82.0

  • Release @​knip/create-config@​1.2.0 (31eaaf544c88bd4c26003025da515a0f8ac134dd)
  • Update docs (0384673619ad523cfc936b7c7c465010de40f5b1)
  • Add config load error hint + example env var fixes (close #1470) (844beb008dc155b8b04fee085949c9e32513f409)
  • Improve mdx "compiler" (resolve #1471) (cd145e2a189be3be37ca997ad3aa0d96c90270be)
  • Add and use deputy.addIgnoredUnresolved (4f6d9e5c9216fe9743ddaec1fa8f71d4fc33469f)
  • Unescape regex in config hint output (b51772648213276b960fd11d93a4c1df01c3ba4d)
  • Create new sveltekit plugin (split from svelte) (714af2e7908f3493c27b1c2f74b617e9a2d3c4d6)
  • Use [email protected] (cf5bae269428b87a1f1c84aa49654399b910d484)
  • Detect and install none installed packages (#1473) (abefd095a798b0356b1952dcbc74a6f851b69ab0) - thanks @​AlexanderKaran!
  • Auto-format (443017526c47e1095bd6b44babc1fb2639a28cde)

Release 5.81.0

  • Update CLI documentation to match current implementation (#1458) (937dd832d9421a295e733d0046266b3154fd78fc) - thanks @​sebacardello!
  • Replace glob with fs helpers (#1454) (880f7182f3df5df5b1ee497d73c02846ae8f10f4) - thanks @​gameroman!
  • Expand workspace filter (#1455) (b3edb80a9b56fecd2b9ed67a5dcc927e405bd93d) - thanks @​fightZy!
  • Sync up cli-arguments ↔ md docs further (47559d21f1f13a2317c4b9d8439d5df4c8084306)
  • Minor refactor for lints & consistency (c5e66dbe226612c8ea7c65b5d193292a115c987e)
  • Fix manual enabled compilers (#1457) (57df2e1c581b14e85023bd857048bb313d386130) - thanks @​digitsum!
  • add push notification once module graph is built (#1461) (57825f443509fb2afa0444f7831ea67a798364f8) - thanks @​niklas-wortmann!
  • fix(prisma): Avoid crash if Prisma schema path is not specified (#1464) (1e0ffc7d64fa513eec47e082b0aba96c817960ee) - thanks @​stephenwade!
  • Add Nitro plugin (#1415) (ecf5e34b51f3817dabcf50ca6705141aea3f56e5) - thanks @​lynnntropy!
  • Add a few impl guidelines to AGENTS.md (5923a20b0b8a12fb33ef23ecf600e82cc1afe7c9)
  • Optimize workspaces storage & usage inside ConfigurationChief (602603fdf428d329925e191dde319388e8726597)
  • Exclude optional peer deps from the production deps check in strict mode (resolve #1145) (605fb852a927ef89c0983000cf623f00ab3ebc55)
  • Consider all members of keyof typeof MyEnum used (7d5b9d6c34f0c25d5608f398defe3ed12f0f49c3)
  • Add entry files to sveltekit (resolve #1162, resolve #1465) (c0ed40a21519993d0513bb87b1b2a189b3d0054f)
  • Consistent config options (dc11214340839b3e0d11c6b5f0d1bcbd271ccb5f)
  • Warn for faux monorepo in init script (b94dcfa6b0e108d3bcb80d35fdde7ff54274d908)
  • Document new --workspace behavior (#1455) (9cbbbc203199c002616722ad76704b621c0706d4)
  • Auto-format (4c3e45ffe9dc447ab9630022406a89a04ae7acda)
  • Add npm login to release script (968d339f8583c678bb891a446ac038d79b6716c9)

Release 5.80.2

  • Add astro-og-canvas plugin (#1445) (bb93a2b8ea4cbd87b300f5bcc4676cd8e83d786d) - thanks @​JoshuaKGoldberg!
  • Small performance optimization on bun commands (#1453) (af0d73673b587df10635ec19e367b788bdb173cd) - thanks @​ClementValot!
  • Accept cwdOrPath in isDirectory and isFile (2d0bb0cd38fb8d0502532b0999cb4cf795c3e4cb)
  • Improve hasRefsInFile (86bde97ea1a202fdd9dad1fd05a30026fa78f284)
  • Rename find-internal-references.ts → has-refs-in-file.ts (307c37b87e311da519342d39216e8a38aa635388)
  • Move pos from exported default keyword to identifier (8e74ec7154f408e53973a9cdad7492c711d7811b)
  • Fix release script (71206b79a43b7c293be36135f863e2b73981d16a)

Release 5.80.1

  • Minor lints/formats (26a6f7b5)
  • Resolve _partial.scss in compiler (close #1439) (ee09aa33)
  • Add tip re. Knip editor extension early on (88c488a8)

... (truncated)

Commits

Updates semantic-release from 25.0.1 to 25.0.2

Release notes

Sourced from semantic-release's releases.

v25.0.2

25.0.2 (2025-11-07)

Bug Fixes

  • deps: update dependency read-package-up to v12 (#3935) (1494cb9)
Commits
  • 1494cb9 fix(deps): update dependency read-package-up to v12 (#3935)
  • b79ff4c Merge pull request #3931 from Simek/patch-1
  • ddfe3cb Merge pull request #3932 from Deltamir/docs-add-semantic-release-uv-community...
  • adac0b7 Merge pull request #3920 from semantic-release/installation
  • 8b68108 update Node version in npx command example
  • 15293df docs(plugins): add semantic-release-uv community plugin in plugins list
  • bfc6d4d docs: Update minimal required Node version
  • 8d7d8ed chore(deps): update dependency @​types/node to v24.10.0 (#3929)
  • 809126c chore(deps): lock file maintenance (#3928)
  • d1affd3 chore(deps): update dependency got to v14.6.2 (#3927)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for semantic-release since your current version.


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

…0 updates

Bumps the version-updates group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) | `1.25.2` | `1.25.3` |
| [linkup-sdk](https://github.com/LinkupPlatform/linkup-js-sdk) | `2.4.1` | `2.6.2` |
| [zod](https://github.com/colinhacks/zod) | `4.3.5` | `4.3.6` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.6` | `2.3.12` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `20.1.0` | `20.3.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `20.0.0` | `20.3.1` |
| [@smithery/cli](https://github.com/smithery-ai/cli) | `3.1.5` | `3.3.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.8.0` | `24.10.9` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.65.0` | `5.82.1` |
| [semantic-release](https://github.com/semantic-release/semantic-release) | `25.0.1` | `25.0.2` |



Updates `@modelcontextprotocol/sdk` from 1.25.2 to 1.25.3
- [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases)
- [Commits](modelcontextprotocol/typescript-sdk@v1.25.2...v1.25.3)

Updates `linkup-sdk` from 2.4.1 to 2.6.2
- [Release notes](https://github.com/LinkupPlatform/linkup-js-sdk/releases)
- [Commits](LinkupPlatform/linkup-js-sdk@v2.4.1...v2.6.2)

Updates `zod` from 4.3.5 to 4.3.6
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.3.5...v4.3.6)

Updates `@biomejs/biome` from 2.2.6 to 2.3.12
- [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/[email protected]/packages/@biomejs/biome)

Updates `@commitlint/cli` from 20.1.0 to 20.3.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.3.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 20.0.0 to 20.3.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.3.1/@commitlint/config-conventional)

Updates `@smithery/cli` from 3.1.5 to 3.3.2
- [Release notes](https://github.com/smithery-ai/cli/releases)
- [Changelog](https://github.com/smithery-ai/cli/blob/main/CHANGELOG.md)
- [Commits](smithery-ai/cli@v3.1.5...v3.3.2)

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

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

Updates `semantic-release` from 25.0.1 to 25.0.2
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v25.0.1...v25.0.2)

---
updated-dependencies:
- dependency-name: "@modelcontextprotocol/sdk"
  dependency-version: 1.25.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: linkup-sdk
  dependency-version: 2.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: zod
  dependency-version: 4.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.12
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@commitlint/cli"
  dependency-version: 20.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 20.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@smithery/cli"
  dependency-version: 3.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@types/node"
  dependency-version: 24.10.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: knip
  dependency-version: 5.82.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: semantic-release
  dependency-version: 25.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jan 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants