Skip to content

chore(deps): bump the patch-minor group across 1 directory with 4 updates - #125

Merged
setkyar merged 3 commits into
mainfrom
dependabot/npm_and_yarn/patch-minor-a81d8158be
Aug 27, 2026
Merged

chore(deps): bump the patch-minor group across 1 directory with 4 updates#125
setkyar merged 3 commits into
mainfrom
dependabot/npm_and_yarn/patch-minor-a81d8158be

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 19, 2026

Copy link
Copy Markdown
Contributor

Bumps the patch-minor group with 4 updates in the / directory: @biomejs/biome, @hono/zod-validator, meilisearch and kysely.

Updates @biomejs/biome from 2.3.10 to 2.5.9

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.9

2.5.9

Patch Changes

  • #11321 41386f3 Thanks @​dyc3! - Fixed #11315: The CSS parser now recovers at declaration boundaries after bogus declarations, allowing subsequent valid declarations to be parsed.

  • #11248 57b197e Thanks @​yanthomasdev! - Expanded the environment variable metadata used by biome rage to include BIOME_BINARY, BIOME_LOG_FILE, and RUST_BACKTRACE as well as reworded explanations for better readability.

  • #11377 a8798ea Thanks @​Netail! - Added a new nursery rule useNamedLayer which disallows anonymous cascade layers.

    @layer {
      a {
        color: red;
      }
    }
  • #11327 6771cf5 Thanks @​dyc3! - The HTML formatter now preserves meaningful blank lines in HTML, including spacing after elements with trailing spaces and blank lines between comment groups.

     <div>
       <!-- first group -->
    +
       <!-- second group -->
     </div>
  • #10312 ba8aa18 Thanks @​dyc3! - Added the nursery rule useTailwindShorthandClasses, which suggests shorter Tailwind utility classes. For example, the rule suggests replacing w-4 h-4 with size-4.

  • #11333 715e0cd Thanks @​kkkhs! - Fixed #11328: lint/nursery/useExpect now recognizes Vitest Browser Mode expect.element() calls as assertions.

  • #11343 9b98211 Thanks @​johncarmack1984! - Fixed #11311: the CSS parser now accepts Tailwind container-query variant names in @variant, such as @xl and @max-xl. These previously produced a parse error and a noUnknownAtRules diagnostic.

    @variant @xl {
      div {
        background: red;
      }
    }
  • #11220 3e8c488 Thanks @​santichausis! - Fixed #9541: noUndeclaredVariables, noUnusedImports, and noUnusedVariables now correctly recognise exported variables and functions declared in one embedded <script> block as usable from a sibling <script> block, in Svelte's <script module>/<script> pair and Vue's non-setup <script> blocks.

    For example, Biome no longer reports greet as undeclared in the following Svelte component:

    <script module>

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.9

Patch Changes

  • #11321 41386f3 Thanks @​dyc3! - Fixed #11315: The CSS parser now recovers at declaration boundaries after bogus declarations, allowing subsequent valid declarations to be parsed.

  • #11248 57b197e Thanks @​yanthomasdev! - Expanded the environment variable metadata used by biome rage to include BIOME_BINARY, BIOME_LOG_FILE, and RUST_BACKTRACE as well as reworded explanations for better readability.

  • #11377 a8798ea Thanks @​Netail! - Added a new nursery rule useNamedLayer which disallows anonymous cascade layers.

    @layer {
      a {
        color: red;
      }
    }
  • #11327 6771cf5 Thanks @​dyc3! - The HTML formatter now preserves meaningful blank lines in HTML, including spacing after elements with trailing spaces and blank lines between comment groups.

     <div>
       <!-- first group -->
    +
       <!-- second group -->
     </div>
  • #10312 ba8aa18 Thanks @​dyc3! - Added the nursery rule useTailwindShorthandClasses, which suggests shorter Tailwind utility classes. For example, the rule suggests replacing w-4 h-4 with size-4.

  • #11333 715e0cd Thanks @​kkkhs! - Fixed #11328: lint/nursery/useExpect now recognizes Vitest Browser Mode expect.element() calls as assertions.

  • #11343 9b98211 Thanks @​johncarmack1984! - Fixed #11311: the CSS parser now accepts Tailwind container-query variant names in @variant, such as @xl and @max-xl. These previously produced a parse error and a noUnknownAtRules diagnostic.

    @variant @xl {
      div {
        background: red;
      }
    }
  • #11220 3e8c488 Thanks @​santichausis! - Fixed #9541: noUndeclaredVariables, noUnusedImports, and noUnusedVariables now correctly recognise exported variables and functions declared in one embedded <script> block as usable from a sibling <script> block, in Svelte's <script module>/<script> pair and Vue's non-setup <script> blocks.

    For example, Biome no longer reports greet as undeclared in the following Svelte component:

    <script module>
      export function greet() {
        console.log("Hello!");

... (truncated)

Commits

Updates @hono/zod-validator from 0.7.6 to 0.9.0

Release notes

Sourced from @​hono/zod-validator's releases.

@​hono/zod-validator@​0.9.0

Minor Changes

@​hono/zod-validator@​0.8.0

Minor Changes

  • #1881 e90e4fb30877f3e3f4b0588bdb2bbfc337efbf67 Thanks @​T4ko0522! - fix(zod-validator): surface the default 400 failure response so it propagates to the RPC schema (refs honojs/hono#3746).
    • Widen the no-hook overload return type to MiddlewareHandler<E, P, V, TypedResponse<ZodValidatorFailureBody<T>, 400, 'json'>>, so the default c.json(result, 400) body reaches MergeMiddlewareResponse<M_k> on the Hono side and shows up in hc<typeof app> as a typed 400 branch.
    • Intersect the inferred middleware response with Response (Response & TypedResponse<...>) in both ZodValidatorFailureResponse<T> and ExtractValidationResponse<VF> so a zValidator(...) middleware remains assignable to a plain MiddlewareHandler (avoids a TS2322 regression caused by bare TypedResponse).
    • Collapse the no-hook overload to also accept undefined for the hook parameter together with the options.validationFunction, allowing zValidator(target, schema, undefined, { validationFunction }) to match the typed-failure path.
    • Bump peerDependencies.hono to >=4.10.0 because this PR now relies on the 4-argument MiddlewareHandler<E, P, I, R> signature introduced in Hono v4.10.0; on hono <4.10.0, MiddlewareHandler only accepts 3 type arguments and consumers would hit TS2707 even though peer ranges currently allow it.
Changelog

Sourced from @​hono/zod-validator's changelog.

0.9.0

Minor Changes

0.8.0

Minor Changes

  • #1881 e90e4fb30877f3e3f4b0588bdb2bbfc337efbf67 Thanks @​T4ko0522! - fix(zod-validator): surface the default 400 failure response so it propagates to the RPC schema (refs honojs/hono#3746).
    • Widen the no-hook overload return type to MiddlewareHandler<E, P, V, TypedResponse<ZodValidatorFailureBody<T>, 400, 'json'>>, so the default c.json(result, 400) body reaches MergeMiddlewareResponse<M_k> on the Hono side and shows up in hc<typeof app> as a typed 400 branch.
    • Intersect the inferred middleware response with Response (Response & TypedResponse<...>) in both ZodValidatorFailureResponse<T> and ExtractValidationResponse<VF> so a zValidator(...) middleware remains assignable to a plain MiddlewareHandler (avoids a TS2322 regression caused by bare TypedResponse).
    • Collapse the no-hook overload to also accept undefined for the hook parameter together with the options.validationFunction, allowing zValidator(target, schema, undefined, { validationFunction }) to match the typed-failure path.
    • Bump peerDependencies.hono to >=4.10.0 because this PR now relies on the 4-argument MiddlewareHandler<E, P, I, R> signature introduced in Hono v4.10.0; on hono <4.10.0, MiddlewareHandler only accepts 3 type arguments and consumers would hit TS2707 even though peer ranges currently allow it.
Commits
  • 70623e3 Version Packages (#2037)
  • 7bc11df fix(zod-validator): Use InferInput from hono/validator instead of a local...
  • 5e32c00 chore: migrate to pnpm (#2006)
  • c5ba38b chore(deps-dev): bump tsdown from 0.22.2 to 0.22.3 (#1996)
  • f89ea30 chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 (#1866)
  • bf845ad chore: unblock TypeScript v6 (#1937)
  • 2cbc5f0 chore(deps-dev): bump tsdown to 0.22.2 (#1908)
  • 4dca7a0 chore(dev-deps): bump @​cloudflare/vitest-pool-workers to 0.16.10 (#1907)
  • a08b023 Version Packages (#1887)
  • e90e4fb feat(zod-validator): surface the default 400 on the no-hook overload and keep...
  • Additional commits viewable in compare view

Updates meilisearch from 0.55.0 to 0.60.0

Release notes

Sourced from meilisearch's releases.

v0.60.0

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @​Strift and @​dependabot[bot]! 🎉

v0.59.0

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @​Strift, @​ecgang, @​qinfenyinluo, and @​tcferreira! 🎉

v0.58.0

🚀 Enhancements

⚙️ Maintenance/misc

... (truncated)

Commits
  • 8c8d29c Update package.json
  • 11b2c71 build(deps-dev): bump typedoc from 0.28.18 to 0.28.20
  • b74d2ea build(deps): bump brace-expansion from 1.1.15 to 1.1.16
  • 5be5416 Add experimental tags
  • 910813b Add updateNetwork method
  • b69ef09 Update dynamic search rules integration
  • 20b1422 Run formatter
  • 4ad0ec7 build(deps-dev): bump prettier in the prettier group across 1 directory
  • cd8a6f0 build(deps-dev): bump vite from 8.0.16 to 8.1.3
  • 6f02892 Add AGENTS.md
  • Additional commits viewable in compare view

Updates kysely from 0.28.17 to 0.29.5

Release notes

Sourced from kysely's releases.

0.29.5

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

TypeScript 7 is allowing for deeper computations which now cause way more instantiations and wall clock times in various scenarios. We're diving deep into our types and finding optimizations. In this version @​koskimas brought some nice wins for builder vs. builder assignability checks.

We're also revamping the docs site, working on style, message and usefulness. Swing by our Discord and share your opinions/ideas. We got docs->apidocs search now. The playground is back supporting short links and will allow saving short links very soon.

🚀 Features

🐞 Bugfixes

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

What's Changed

Full Changelog: kysely-org/kysely@v0.29.4...v0.29.5

0.29.4

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

... (truncated)

Commits
  • f24018c 0.29.5
  • dc3ce59 chore: bump deno lts.
  • 7c867ba chore: bump github actions. (#1980)
  • 8d8737b chore: bump deps. (#1979)
  • 07d76ed Add missing beforeThrow calls in getInflightQueryAbortHandler (#1971)
  • 507b751 feat(site): align docs code blocks with the landing page's VS Code themes (#1...
  • 73489ce feat(site): explain the proof gauge behind a (?) on the production wall (#1977)
  • a757ea0 feat(site): proof-strength gauges, query-module evidence, and new wall names ...
  • a7d717c feat(site): add AirTrail, bknd, Civitai, Corsair.dev, Hot Updater, Profilarr ...
  • 3ac787e feat(site): grow the proof wall (Replicas, EmbedPDF) + fix production hover (...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 19, 2026
@dependabot dependabot Bot changed the title chore(deps): bump the patch-minor group with 4 updates chore(deps): bump the patch-minor group across 1 directory with 4 updates Aug 19, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/patch-minor-a81d8158be branch 2 times, most recently from a24e701 to 3df71d6 Compare August 23, 2026 08:23
@setkyar
setkyar force-pushed the dependabot/npm_and_yarn/patch-minor-a81d8158be branch from 3df71d6 to ccc2d70 Compare August 27, 2026 19:25
dependabot Bot and others added 2 commits August 28, 2026 02:32
…ates

Bumps the patch-minor group with 4 updates in the / directory: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@hono/zod-validator](https://github.com/honojs/middleware/tree/HEAD/packages/zod-validator), [meilisearch](https://github.com/meilisearch/meilisearch-js) and [kysely](https://github.com/kysely-org/kysely).


Updates `@biomejs/biome` from 2.3.10 to 2.5.9
- [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.5.9/packages/@biomejs/biome)

Updates `@hono/zod-validator` from 0.7.6 to 0.9.0
- [Release notes](https://github.com/honojs/middleware/releases)
- [Changelog](https://github.com/honojs/middleware/blob/main/packages/zod-validator/CHANGELOG.md)
- [Commits](https://github.com/honojs/middleware/commits/@hono/zod-validator@0.9.0/packages/zod-validator)

Updates `meilisearch` from 0.55.0 to 0.60.0
- [Release notes](https://github.com/meilisearch/meilisearch-js/releases)
- [Commits](meilisearch/meilisearch-js@v0.55.0...v0.60.0)

Updates `kysely` from 0.28.17 to 0.29.5
- [Release notes](https://github.com/kysely-org/kysely/releases)
- [Commits](kysely-org/kysely@v0.28.17...v0.29.5)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@hono/zod-validator"
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: kysely
  dependency-version: 0.29.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: meilisearch
  dependency-version: 0.60.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@setkyar
setkyar force-pushed the dependabot/npm_and_yarn/patch-minor-a81d8158be branch from ccc2d70 to 8080146 Compare August 27, 2026 19:33
@setkyar
setkyar merged commit ca8627d into main Aug 27, 2026
9 checks passed
@setkyar
setkyar deleted the dependabot/npm_and_yarn/patch-minor-a81d8158be branch August 27, 2026 19:49
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.

1 participant