Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 13, 2025

This PR contains the following updates:

Package Change Age Confidence
@ai-sdk/anthropic (source) 2.0.25 -> 2.0.27 age confidence
@ai-sdk/groq (source) 2.0.23 -> 2.0.24 age confidence
@ai-sdk/openai (source) 2.0.46 -> 2.0.52 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
@tailwindcss/typography 0.5.16 -> 0.5.19 age confidence
@types/node (source) 20.19.20 -> 20.19.21 age confidence
@types/node (source) 20.19.20 -> 20.19.21 age confidence
@types/react-dom (source) 19.2.1 -> 19.2.2 age confidence
@types/react-dom (source) 19.2.1 -> 19.2.2 age confidence
ai (source) 5.0.65 -> 5.0.69 age confidence
lucide-react (source) 0.540.0 -> 0.545.0 age confidence
react-day-picker (source) 9.8.1 -> 9.11.1 age confidence
react-dom (source) 19.1.1 -> 19.2.0 age confidence
react-hook-form (source) 7.62.0 -> 7.65.0 age confidence
react-hook-form (source) 7.64.0 -> 7.65.0 age confidence
react-router-dom (source) 7.9.3 -> 7.9.4 age confidence
tailwindcss (source) 3.4.17 -> 3.4.18 age confidence
typescript-eslint (source) 8.46.0 -> 8.46.1 age confidence
typescript-eslint (source) 8.46.0 -> 8.46.1 age confidence

Release Notes

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

v2.0.27

Compare Source

Patch Changes
  • 2338c79: feat (provider/openai): add jsdoc for openai tools

v2.0.26

Compare Source

Patch Changes
  • 5819aec: fix (provider/openai): only send tool calls finish reason for tools that are not provider-executed
  • af8c6bb: feat (provider/openai): add web_search tool
radix-ui/primitives (@​radix-ui/react-select)

v2.2.6

tailwindlabs/tailwindcss-typography (@​tailwindcss/typography)

v0.5.19

Compare Source

Fixed
  • Fixed broken color styles (#​405)

v0.5.18

Compare Source

Fixed
  • Fixed undefined variable error (#​403)

v0.5.17

Compare Source

Added
  • Add modifiers for description list elements (#​357)
  • Add prose-picture modifier (#​367)
Fixed
  • Include unit in hr border-width value (#​379)
  • Ensure <kbd> styles work with Tailwind CSS v4 (#​387)
Changed
  • Remove lodash dependencies (#​402)
lucide-icons/lucide (lucide-react)

v0.545.0

Compare Source

v0.544.0: Version 0.544.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.543.0...0.544.0

v0.543.0: Version 0.543.0

Compare Source

What's Changed

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

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

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

v9.11.1

Compare Source

What's Changed

Full Changelog: gpbl/react-day-picker@v9.11.0...v9.11.1

v9.11.0

Compare Source

This release adds support for Buddhist and Hebrew calendars, introduces new Southeast Asian numeral systems, adds the aria-labelledby prop, and improves month/year formatting for specific locales. It also includes fixes for the recently added Ethiopic calendar.

Buddhist Calendar

To use the Buddhist calendar, import DayPicker from react-day-picker/buddhist.

import { DayPicker } from "react-day-picker/buddhist";

export function BuddhistCalendar() {
  return <DayPicker />;
}
Screen Shot 2025-09-20 at 18 19 40

Read more in the documentation and play with it in playground.

Hebrew Calendar

To switch to the Hebrew calendar, import DayPicker from react-day-picker/hebrew.

import { DayPicker } from "react-day-picker/hebrew";

export function HebrewCalendar() {
  return <DayPicker />;
}
Screen Shot 2025-09-20 at 18 19 55

Read more in the documentation and play with it in playground.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.10.0...v9.11.0

v9.10.0

Compare Source

This release adds support for the Ethiopic calendar.

Ethiopic calendar

To use the Ethiopic calendar, import DayPicker from react-day-picker/ethiopic.

import { DayPicker } from "react-day-picker/ethiopic";

export function EthiopicCalendar() {
  return <DayPicker />;
}
Screen Shot 2025-09-14 at 17 54 36

Read more in the documentation and play with it in playground.

What's Changed

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

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

facebook/react (react-dom)

v19.2.0

Compare Source

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features
  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools
New React DOM Features
  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.
Notable changes
  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId
All Changes
React
React DOM
React Server Components
React Reconciler
react-hook-form/react-hook-form (react-hook-form)

v7.65.0

Compare Source

v7.64.0: Version 7.64.0

Compare Source

🚏 Support optional array fields in PathValueImpl type (#​13057)
🐞 fix: preserve Controller's defaultValue with shouldUnregister prop (#​13063)
✂ chore: remove unused field ids ref in useFieldArray (#​13066)

thanks to @​gynekolog & @​uk960214

v7.63.0: Version 7.63.0

Compare Source

🥢 feat: extract form values by form state (#​12936)

getValues(undefined, { dirtyFields: true }); // return only dirty fields 
getValues(undefined, { touchedFields: true });  // return only touched fields 

🦍 feat: improve get dirty fields logic (#​13049)
🐿️ chore: remove duplicated function isMessage (#​13050)
🐞 fix: use field name to update isValidating fields (#​13000)
🐞 fix: unregister previous field when switching conditional Controllers (#​13041)
🐞 fix: only excuse trigger function when deps has a valid array (#​13056)

thanks to @​candymask0712, @​GorkemKir, @​kimtaejin3, @​m2na7 & @​abnud11

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

v7.9.4

Compare Source

Patch Changes
tailwindlabs/tailwindcss (tailwindcss)

v3.4.18

Compare Source

Fixed
  • Improve support for raw supports-[…] queries in arbitrary values (#​13605)
  • Fix require.cache error when loaded through a TypeScript file in Node 22.18+ (#​18665)
  • Support import.meta.resolve(…) in configs for new enough Node.js versions (#​18938)
  • Allow using newer versions of postcss-load-config for better ESM and TypeScript PostCSS config support with the CLI (#​18938)
  • Remove irrelevant utility rules when matching important classes (#​19030)
typescript-eslint/typescript-eslint (typescript-eslint)

v8.46.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.46.0

Compare Source

🚀 Features
❤️ Thank You

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

v8.45.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.44.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.44.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.43.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-deprecated] should report deprecated exports and reexports (#​11359)
❤️ Thank You

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

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 Oct 13, 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-10-13T22_06_27_001Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-10-13T22_06_27_001Z-debug-0.log

Copy link

pkg-pr-new bot commented Oct 13, 2025

Open in StackBlitz

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

commit: 970f5ba

@renovate renovate bot force-pushed the renovate/all-dependencies branch 2 times, most recently from 8665cce to c589fcf Compare October 13, 2025 18:01
@renovate renovate bot force-pushed the renovate/all-dependencies branch from c589fcf to 970f5ba Compare October 13, 2025 22: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.

0 participants