Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 1, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@​convex-dev/eslint-plugin 1.0.0 -> 1.1.1 age confidence devDependencies minor
@eslint/js (source) 9.39.1 -> 9.39.2 age confidence devDependencies patch
@redocly/cli 2.11.1 -> 2.12.7 age confidence devDependencies minor 2.13.0
@standard-schema/spec (source) 1.0.0 -> 1.1.0 age confidence devDependencies minor
@testing-library/react 16.3.0 -> 16.3.1 age confidence devDependencies patch
@types/node (source) 22.19.1 -> 22.19.3 age confidence devDependencies patch
@types/react (source) 19.2.6 -> 19.2.7 age confidence devDependencies patch
@vitejs/plugin-react (source) 5.1.1 -> 5.1.2 age confidence devDependencies patch
convex-test (source) 0.0.39 -> 0.0.41 age confidence devDependencies patch
eslint (source) 9.39.1 -> 9.39.2 age confidence devDependencies patch
hono (source) 4.10.6 -> 4.11.1 age confidence dependencies minor
node 20.19.5 -> 20.19.6 age confidence uses-with patch
pkg-pr-new (source) 0.0.60 -> 0.0.62 age confidence devDependencies patch
prettier (source) 3.6.2 -> 3.7.4 age confidence devDependencies minor
typescript-eslint (source) 8.47.0 -> 8.50.0 age confidence devDependencies minor
yaml (source) 2.8.1 -> 2.8.2 age confidence devDependencies patch
zod (source) 4.1.12 -> 4.2.0 age confidence dependencies minor 4.2.1

Release Notes

eslint/eslint (@​eslint/js)

v9.39.2

Compare Source

Redocly/redocly-cli (@​redocly/cli)

v2.12.7

Compare Source

Patch Changes
  • Added scorecard-classic command to evaluate API descriptions against project scorecard configurations.
  • Updated @​redocly/openapi-core to v2.12.7.

v2.12.6

Compare Source

Patch Changes

v2.12.5

Compare Source

Patch Changes

v2.12.4

Compare Source

Patch Changes
  • Fixed a compatibility issue with HTTP_PROXY environment variable for the push command.
  • Updated @​redocly/openapi-core to v2.12.4.

v2.12.3

Compare Source

Patch Changes
  • Updated telemetry implementation to use standardized OpenTelemetry format.
  • Updated @​redocly/openapi-core to v2.12.3.

v2.12.2

Compare Source

Patch Changes
  • Fixed an issue where credentials reated by Redocly CLI login command were deleted by Redocly VS Code extension when opening VS Code.
  • Updated @​redocly/openapi-core to v2.12.2.

v2.12.1

Compare Source

Patch Changes
  • Fixed an issue where multiple --mtls options in the Respect command did not merge as expected.
  • Updated @​redocly/openapi-core to v2.12.1.

v2.12.0

Compare Source

Minor Changes
  • Added OpenAPI 3.2 XML modeling support.
Patch Changes
  • Fixed an issue where the no-required-schema-properties-undefined caused a crash when encountering unresolved $refs.
  • Updated @​redocly/openapi-core to v2.12.0.
standard-schema/standard-schema (@​standard-schema/spec)

v1.1.0

Compare Source

Adds the Standard JSON Schema specification.

Please refer to the README and standardschema.dev for more details.

testing-library/react-testing-library (@​testing-library/react)

v16.3.1

Compare Source

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v5.1.2

Compare Source

get-convex/convex-test (convex-test)

v0.0.41

Compare Source

v0.0.40

Compare Source

  • Extends ctx in t.run to conform to both MutationCtx and ActionCtx.
eslint/eslint (eslint)

v9.39.2

Compare Source

honojs/hono (hono)

v4.11.1

Compare Source

What's Changed

Full Changelog: honojs/hono@v4.11.0...v4.11.1

v4.11.0

Compare Source

Release Notes

Hono v4.11.0 is now available!

This release includes new features for the Hono client, middleware improvements, and an important type system fix.

Type System Fix for Middleware

We've fixed a bug in the type system for middleware. Previously, app did not have the correct type with pathless handlers:

const app = new Hono()
  .use(async (c, next) => {
    await next()
  })
  .get('/a', async (c, next) => {
    await next()
  })
  .get((c) => {
    return c.text('Hello')
  })

// app's type was incorrect

This has now been fixed.

Thanks @​kosei28!

Typed URL for Hono Client

You can now pass the base URL as the second type parameter to hc to get more precise URL types:

const client = hc<typeof app, 'http://localhost:8787'>(
  'http://localhost:8787/'
)

const url = client.api.posts.$url()
// url is TypedURL with precise type information
// including protocol, host, and path

This is useful when you want to use the URL as a type-safe key for libraries like SWR.

Thanks @​miyaji255!

Custom NotFoundResponse Type

You can now customize the NotFoundResponse type using module augmentation. This allows c.notFound() to return a typed response:

import { Hono, TypedResponse } from 'hono'

declare module 'hono' {
  interface NotFoundResponse
    extends Response,
      TypedResponse<{ error: string }, 404, 'json'> {}
}

const app = new Hono()
  .get('/posts/:id', async (c) => {
    const post = await getPost(c.req.param('id'))
    if (!post) {
      return c.notFound()
    }
    return c.json({ post }, 200)
  })
  .notFound((c) => c.json({ error: 'not found' }, 404))

Now the client can correctly infer the 404 response type.

Thanks @​miyaji255!

tryGetContext Helper

The new tryGetContext() helper in the Context Storage middleware returns undefined instead of throwing an error when the context is not available:

import { tryGetContext } from 'hono/context-storage'

const context = tryGetContext<Env>()
if (context) {
  // Context is available
  console.log(context.var.message)
}

Thanks @​AyushCoder9!

Custom Query Serializer

You can now customize how query parameters are serialized using the buildSearchParams option:

const client = hc<AppType>('http://localhost', {
  buildSearchParams: (query) => {
    const searchParams = new URLSearchParams()
    for (const [k, v] of Object.entries(query)) {
      if (v === undefined) continue
      if (Array.isArray(v)) {
        v.forEach((item) => searchParams.append(`${k}[]`, item))
      } else {
        searchParams.set(k, v)
      }
    }
    return searchParams
  },
})

Thanks @​bolasblack!

New features

  • feat(types): make Hono client's $url return the exact URL type #​4502
  • feat(types): enhance NotFoundHandler to support custom NotFoundResponse type #​4518
  • feat(timing): add wrapTime to simplify usage #​4519
  • feat(pretty-json): support force option #​4531
  • feat(client): add buildSearchParams option to customize query serialization #​4535
  • feat(context-storage): add optional tryGetContext helper #​4539
  • feat(secure-headers): add CSP report-to and report-uri directive support #​4555
  • fix(types): replace schema-based path tracking with CurrentPath parameter #​4552

All changes

New Contributors

Full Changelog: honojs/hono@v4.10.8...v4.11.0

v4.10.8

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.10.7...v4.10.8

v4.10.7

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/hono@v4.10.6...v4.10.7

actions/node-versions (node)

v20.19.6: 20.19.6

Compare Source

Node.js 20.19.6

stackblitz-labs/pkg.pr.new (pkg-pr-new)

v0.0.62

Compare Source

v0.0.61

Compare Source

prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

typescript-eslint/typescript-eslint (typescript-eslint)

v8.50.0

Compare Source

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 and releases on our website.

v8.49.0

Compare Source

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 and releases on our website.

v8.48.1

Compare Source

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 and releases on our website.

v8.48.0

Compare Source

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 and releases on our website.

eemeli/yaml (yaml)

v2.8.2

Compare Source

colinhacks/zod (zod)

v4.2.0

Compare Source

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:

v4.1.13

Compare Source


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 04:59 AM, only on Monday ( * 0-4 * * 1 ) in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@coderabbitai
Copy link

coderabbitai bot commented Dec 1, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@pkg-pr-new
Copy link

pkg-pr-new bot commented Dec 1, 2025

Open in StackBlitz

npm i https://pkg.pr.new/get-convex/convex-helpers@867

commit: 0884672

@renovate renovate bot force-pushed the renovate/routine-updates branch 7 times, most recently from cf3475f to b27eea9 Compare December 4, 2025 19:14
@renovate renovate bot changed the title Update Routine updates chore(deps): update routine updates Dec 4, 2025
@renovate renovate bot force-pushed the renovate/routine-updates branch 7 times, most recently from 5082753 to e00fa5d Compare December 8, 2025 22:45
@renovate renovate bot changed the title chore(deps): update routine updates Update Routine updates Dec 8, 2025
@renovate renovate bot force-pushed the renovate/routine-updates branch 12 times, most recently from 67fd564 to 87735e5 Compare December 15, 2025 18:38
@renovate renovate bot changed the title Update Routine updates chore(deps): update routine updates Dec 15, 2025
@renovate renovate bot force-pushed the renovate/routine-updates branch 2 times, most recently from bccc6a7 to be7b752 Compare December 15, 2025 23:06
@renovate renovate bot changed the title chore(deps): update routine updates Update Routine updates Dec 15, 2025
@renovate renovate bot force-pushed the renovate/routine-updates branch 7 times, most recently from 87b9b7b to 0450fc2 Compare December 18, 2025 14:55
@renovate renovate bot force-pushed the renovate/routine-updates branch from 0450fc2 to 0884672 Compare December 18, 2025 21:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant