Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 25, 2025

This PR contains the following updates:

Package Change Age Confidence
@ai-sdk/groq (source) 2.0.11 -> 2.0.17 age confidence
@ai-sdk/openai (source) 2.0.16 -> 2.0.24 age confidence
@eslint/js (source) 9.33.0 -> 9.34.0 age confidence
@openrouter/ai-sdk-provider 1.1.2 -> 1.2.0 age confidence
@radix-ui/react-accordion (source) 1.2.11 -> 1.2.12 age confidence
@radix-ui/react-alert-dialog (source) 1.1.14 -> 1.1.15 age confidence
@radix-ui/react-checkbox (source) 1.3.2 -> 1.3.3 age confidence
@radix-ui/react-collapsible (source) 1.1.11 -> 1.1.12 age confidence
@radix-ui/react-context-menu (source) 2.2.15 -> 2.2.16 age confidence
@radix-ui/react-dialog (source) 1.1.14 -> 1.1.15 age confidence
@radix-ui/react-dropdown-menu (source) 2.1.15 -> 2.1.16 age confidence
@radix-ui/react-hover-card (source) 1.1.14 -> 1.1.15 age confidence
@radix-ui/react-menubar (source) 1.1.15 -> 1.1.16 age confidence
@radix-ui/react-navigation-menu (source) 1.2.13 -> 1.2.14 age confidence
@radix-ui/react-popover (source) 1.1.14 -> 1.1.15 age confidence
@radix-ui/react-radio-group (source) 1.3.7 -> 1.3.8 age confidence
@radix-ui/react-scroll-area (source) 1.2.9 -> 1.2.10 age confidence
@radix-ui/react-select (source) 2.2.5 -> 2.2.6 age confidence
@radix-ui/react-slider (source) 1.3.5 -> 1.3.6 age confidence
@radix-ui/react-switch (source) 1.2.5 -> 1.2.6 age confidence
@radix-ui/react-tabs (source) 1.1.12 -> 1.1.13 age confidence
@radix-ui/react-toast (source) 1.2.14 -> 1.2.15 age confidence
@radix-ui/react-toggle (source) 1.1.9 -> 1.1.10 age confidence
@radix-ui/react-toggle-group (source) 1.1.10 -> 1.1.11 age confidence
@radix-ui/react-tooltip (source) 1.2.7 -> 1.2.8 age confidence
@types/node (source) 20.19.11 -> 20.19.13 age confidence
@types/react (source) 19.1.10 -> 19.1.12 age confidence
@types/react-dom (source) 19.1.7 -> 19.1.9 age confidence
ai (source) 5.0.29 -> 5.0.31 age confidence
convex (source) 1.25.4 -> 1.26.2 age confidence
dayjs (source) 1.11.13 -> 1.11.18 age confidence
eslint (source) 9.33.0 -> 9.34.0 age confidence
lucide-react (source) ^0.540.0 -> ^0.542.0 age confidence
openai 5.12.2 -> 5.19.1 age confidence
pkg-pr-new (source) 0.0.55 -> 0.0.59 age confidence
react-day-picker (source) 9.8.1 -> 9.9.0 age confidence
react-router-dom (source) 7.8.1 -> 7.8.2 age confidence
typescript-eslint (source) 8.40.0 -> 8.42.0 age confidence

Release Notes

vercel/ai (@​ai-sdk/groq)

v2.0.17

Compare Source

Patch Changes
  • 70bb696: fix(provider/openai): correct web search tool input

v2.0.16

Compare Source

Patch Changes

v2.0.15

Compare Source

Patch Changes
  • Updated dependencies [ca4f68f]
    • ai@​5.0.15

v2.0.14

Compare Source

Patch Changes
  • 7f47105: fix(provider/openai): support file_citation annotations in responses api

v2.0.13

Compare Source

Patch Changes
  • ddc9d99: Implements logprobs for OpenAI providerOptions and providerMetaData in OpenAIResponsesLanguageModel

    You can now set providerOptions.openai.logprobs when using generateText() and retrieve logprobs from the response via result.providerMetadata?.openai

v2.0.12

Compare Source

Patch Changes
eslint/eslint (@​eslint/js)

v9.34.0

Compare Source

OpenRouterTeam/ai-sdk-provider (@​openrouter/ai-sdk-provider)

v1.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: OpenRouterTeam/ai-sdk-provider@v1.1.2...v1.2.0

radix-ui/primitives (@​radix-ui/react-select)

v2.2.6

get-convex/convex-js (convex)

v1.26.2

  • Fix for pushing schemas to older (self-hosted) deployment builds.

v1.26.0

  • Add support for staged indexes. Instead of blocking on push, a staged index
    backfills while you push more changes to a deployment, then can be used once
    it is no longer marked as staged.

    export default defineSchema({
      messages: defineTable({
        author: v.string(),
        body: v.string(),
      })
        .index("by_author", {
          fields: ["author"],
           // watch for progress in dashboard. Once it's at 100%, remove the staged flag
          staged: true,
        })
    });
    

    Read more in the docs (link coming soon).

  • Experimental ConvexReactClient.prewarmQuery({query, args}) method for
    subscribing to a query for 5 seconds. Prewarming indicates likely future
    interest in a subscription and is currently implemented by subscribing to the
    query for 5 seconds.

    The return value of this method may change and the arguments may change in the
    future so this API should be considered unstable but adapting to these changes
    shouldn't be difficult.

  • Expose the schemaValidation property of schema, intended for runtime tests or
    assertions that it is indeed enabled.

  • Export TokenFetcher type, intended for external auth integrations.

  • More informative messaging on code push. Link to index backfill progress in
    the dashboard.

  • Fix a bug where an auth token passed initially to the ConvexHttpClient was
    ignored.

  • Experimental expectAuth option for Convex clients for indicating that
    setAuth() will be called soon, so to wait for that token. Once setAuth() has
    been called the existing token-waiting behavior takes over.

    This is useful for applications that create a client and run a mutation,
    query, or action before setAuth() has been called, e.g. via a provider in
    React.

  • Change the default permissions for the local MCP server: access to production
    deployments is now disabled by default, requiring
    --dangerously-enable-production-deployments to enable.

  • Add a "logs" tool to the local MCP server.

iamkun/dayjs (dayjs)

v1.11.18

Compare Source

v1.11.17

Compare Source

Bug Fixes

v1.11.16

Compare Source

v1.11.15

Compare Source

v1.11.14

Compare Source

Bug Fixes
  • .utcOffset(0, true) result and its clone are different bug (#​2505) (fefdcd4)
eslint/eslint (eslint)

v9.34.0

Compare Source

lucide-icons/lucide (lucide-react)

v0.542.0: Version 0.542.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.541.0...0.542.0

v0.541.0: Version 0.541.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.540.0...0.541.0

openai/openai-node (openai)

v5.19.1

Compare Source

Full Changelog: v5.19.0...v5.19.1

Bug Fixes

v5.19.0

Compare Source

Full Changelog: v5.18.1...v5.19.0

Features
  • api: Add gpt-realtime models (256d932)

v5.18.1

Compare Source

Full Changelog: v5.18.0...v5.18.1

Chores
  • api: manual updates for ResponseInputAudio (570501b)

v5.18.0

Compare Source

Full Changelog: v5.17.0...v5.18.0

Features
Bug Fixes
  • update non beta realtime websockets helpers (265a42f)

v5.17.0

Compare Source

Full Changelog: v5.16.0...v5.17.0

Features
  • api: realtime API updates (e817255)
Chores
  • internal: update global Error reference (e566ff3)

v5.16.0

Compare Source

Full Changelog: v5.16.0...v5.17.0

Features
  • api: realtime API updates (e817255)
Chores
  • internal: update global Error reference (e566ff3)

v5.15.0

Compare Source

Full Changelog: v5.15.0...v5.16.0

Features
  • api: add web search filters (975b141)
Chores

v5.13.1

Compare Source

Full Changelog: v5.13.1...v5.14.0

Features
  • mcp: add code execution tool (3f8264c)
Chores
  • internal/ci: setup breaking change detection (87e8004)
stackblitz-labs/pkg.pr.new (pkg-pr-new)

v0.0.59

Compare Source

v0.0.58

Compare Source

v0.0.57

Compare Source

v0.0.56

Compare Source

gpbl/react-day-picker (react-day-picker)

v9.9.0

Compare Source

This release includes a new reverseYears prop, a range selection fix, and a build update to fix issues with source maps.

Reversing the Years in the Dropdown

When using captionLayout='dropdown', set reverseYears to reverse the years listed in the dropdown: the most recent year will appear first.

<DayPicker captionLayout="dropdown" reverseYears />

See it in action in the playground.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.8.1...v9.9.0

remix-run/react-router (react-router-dom)

v7.8.2

Compare Source

Patch Changes
typescript-eslint/typescript-eslint (typescript-eslint)

v8.42.0

Compare Source

🚀 Features
🩹 Fixes
  • typescript-eslint: handle non-normalized windows paths produced by jiti (#​11546)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.41.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.


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 becomes conflicted, 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.

Copy link
Contributor Author

renovate bot commented Aug 25, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: playground/package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: @convex-dev/[email protected]
npm error Found: react@undefined
npm error node_modules/react
npm error   dev react@"../node_modules/react" from the root project
npm error
npm error Could not resolve dependency:
npm error peer react@"^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" from @radix-ui/[email protected]
npm error node_modules/@radix-ui/react-accordion
npm error   @radix-ui/react-accordion@"^1.2.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2025-09-04T20_25_03_276Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-09-04T20_25_03_276Z-debug-0.log

@renovate renovate bot force-pushed the renovate/all-dependencies branch 15 times, most recently from d32e67e to ed2d8b8 Compare August 31, 2025 11:16
@renovate renovate bot force-pushed the renovate/all-dependencies branch 6 times, most recently from 9bcf559 to 012a0cb Compare September 2, 2025 22:40
Copy link

pkg-pr-new bot commented Sep 2, 2025

Open in StackBlitz

npm i https://pkg.pr.new/get-convex/agent/@convex-dev/agent@138
npm i https://pkg.pr.new/get-convex/agent/@convex-dev/agent-playground@138

commit: a65b98f

@renovate renovate bot force-pushed the renovate/all-dependencies branch 7 times, most recently from 98bb78a to 6028431 Compare September 3, 2025 23:57
@renovate renovate bot force-pushed the renovate/all-dependencies branch from 6028431 to df11271 Compare September 4, 2025 13:04
@renovate renovate bot force-pushed the renovate/all-dependencies branch from df11271 to a65b98f Compare September 4, 2025 20:25
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.

0 participants