Skip to content

Update all non-major dependencies#293

Open
renovate[bot] wants to merge 1 commit into
developfrom
renovate/all-minor-patch
Open

Update all non-major dependencies#293
renovate[bot] wants to merge 1 commit into
developfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 10, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@next/third-parties (source) 15.5.1515.5.19 age confidence
@tanstack/react-query (source) 5.100.55.101.1 age confidence
@tanstack/react-query-devtools (source) 5.100.55.101.1 age confidence
@vanilla-extract/css (source) 1.20.11.21.0 age confidence
@vanilla-extract/sprinkles (source) 1.6.51.7.0 age confidence
motion 12.38.012.40.0 age confidence
react (source) 19.2.519.2.7 age confidence
react-dom (source) 19.2.519.2.7 age confidence
react-hook-form (source) 7.74.07.80.0 age confidence
react-simplikit (source) ^0.0.49^0.0.51 age confidence

Release Notes

vercel/next.js (@​next/third-parties)

v15.5.19: 15.5.19

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • [15.5.x] Don't drop FormData entries (#​94244)
Other
Credits

Huge thanks to @​eps1lon for helping!

v15.5.18

Compare Source

This release contains security fixes for the following advisories:

High:

Moderate:

Low:

v15.5.16

Compare Source

This release contains security fixes for the following advisories:

High:

Moderate:

Low:

TanStack/query (@​tanstack/react-query)

v5.101.1

Compare Source

Patch Changes

v5.101.0

Compare Source

Patch Changes

v5.100.14

Compare Source

Patch Changes

v5.100.13

Compare Source

Patch Changes

v5.100.12

Compare Source

Patch Changes

v5.100.11

Patch Changes

v5.100.10

Patch Changes

v5.100.9

Compare Source

Patch Changes

v5.100.8

Compare Source

Patch Changes

v5.100.7

Compare Source

Patch Changes

v5.100.6

Compare Source

Patch Changes
TanStack/query (@​tanstack/react-query-devtools)

v5.101.1

Compare Source

Patch Changes

v5.101.0

Compare Source

Patch Changes

v5.100.14

Compare Source

Patch Changes

v5.100.13

Compare Source

Patch Changes

v5.100.12

Compare Source

Patch Changes

v5.100.11

Patch Changes

v5.100.10

Patch Changes

v5.100.9

Compare Source

Patch Changes

v5.100.8

Compare Source

Patch Changes

v5.100.7

Compare Source

Patch Changes

v5.100.6

Compare Source

Patch Changes
vanilla-extract-css/vanilla-extract (@​vanilla-extract/css)

v1.21.0

Minor Changes
  • #​1749 caacf56 Thanks @​bschlenk! - Allow createGlobalVar to accept a name with a leading --

    Similar to createGlobalThemeContract, createGlobalVar now trims a leading -- from the variable name. This can be useful if you want to keep the full variable name searchable in your codebase.

    EXAMPLE USAGE:

    import { createGlobalVar } from '@​vanilla-extract/css';
    
    // Both produce `var(--my-global-var)`
    const a = createGlobalVar('my-global-var');
    const b = createGlobalVar('--my-global-var');
  • #​1720 7bbe189 Thanks @​cahnory! - style, globalStyle: Add support for @scope rules

    EXAMPLE USAGE:

    import { style, globalStyle } from '@​vanilla-extact/css';
    
    export const styleWithScopeRule = style({
      '@​scope': {
        '(body)': {
          ':after': { content: '"Scoped to body"' }
        }
      }
    });
    
    globalStyle('div', {
      '@​scope': {
        '(body)': {
          ':after': { content: '"Scoped to body"' }
        }
      }
    });
Patch Changes
  • #​1731 aec0ab7 Thanks @​sashank-gogula-glean! - Fix incorrect class name substitution when composed class lists contain regex metacharacters

    Class names containing characters such as (, ), +, or . were being interpreted as regex syntax when building the substitution pattern for composed class lists, causing malformed matches. The class list is now escaped before constructing the RegExp.

  • #​1740 a4b120f Thanks @​askoufis! - Fix a bug causing fallbackVar to discard an empty string passed as the fallback value

    An empty string fallback was silently dropped, producing var(--myVar) instead of the CSS empty-fallback form var(--myVar, ). fallbackVar now treats '' like any other fallback value.

vanilla-extract-css/vanilla-extract (@​vanilla-extract/sprinkles)

v1.7.0

Minor Changes
  • #​1720 7bbe189 Thanks @​cahnory! - Add support for @scope to conditions

    EXAMPLE USAGE:

    import { style } from '@​vanilla-extract/css';
    import { defineProperties } from '@​vanilla-extract/sprinkles';
    
    const scopeRoot = style();
    
    const scopedProperties = defineProperties({
      defaultCondition: 'unscoped',
      conditions: {
        unscoped: {},
        document: {
          '@​scope': `(${scopeRoot})`
        }
      },
      responsiveArray: ['unscoped', 'scoped'],
      properties: {
        flexDirection: ['row', 'column'],
        order: {
          first: '1',
          second: '2'
        }
      }
    });
motiondivision/motion (motion)

v12.40.0

Compare Source

Added
  • path option to transition.
  • arc() for motion along an arc.

v12.39.0

Compare Source

Added
  • Support for repeatType and repeatDelay in animation sequences.
Fixed
  • Variants: Re-run keyframe animations when switching between variant labels even when they share identical keyframe arrays.
  • Drag: Preserve in-flight motion value animations across React 19 reorder unmount/remount so dragSnapToOrigin no longer leaves the drag transform stranded after a layout swap.
  • LazyMotion: Share React contexts between the framer-motion and framer-motion/m (and therefore motion/react and motion/react-m) CJS bundles so that <m.div> from the /m subpath picks up features loaded by <LazyMotion> from the main entry point.
  • useScroll: Support hydrating target and container refs from anywhere in the tree.
  • Drag: Gesture no longer starts from incorrect start point when rendered inside <AnimatePresence initial={false} />.
  • Drag: dragConstraints, when set as viewport-relative ref, no longer break on scroll.§
  • Updated visualElement hydration order.
  • useAnimate: Now respects skipAnimations.
  • AnimatePresence: Fix object-form initial values not applied on re-entry after exit completes.
  • scroll: Fixed callback progress when tracking an element.
  • useScroll: Fix hardware acceleration when tracking an element.
facebook/react (react)

v19.2.7: 19.2.7 (June 1st, 2026)

Compare Source

React Server Components

v19.2.6: 19.2.6 (May 6th, 2026)

Compare Source

React Server Components

react-hook-form/react-hook-form (react-hook-form)

v7.80.0: Version 7.80.0

Compare Source

🧄 feat: disable useFieldArray fields (#​13535)

const { fields } = useFieldArray({ disabled: true });
fields[0].disabled; // contains disabled props

🛺 perf: make rhf more performant (#​13524)
🐞 fix(deepEqual): empty array and empty plain object should not be equal (#​13533)

thanks to @​JSap0914

v7.79.0

Compare Source

Added
  • disabled option to useFieldArray
Fixed
  • Controller onChange promise return type
  • deepEqual false positives with shared object references
  • shouldUseNativeValidation behavior for radio groups
  • createFormControl stability with fast refresh in dev mode
  • StrictMode value preservation during remount
  • formState.errors reactivity with React compiler

v7.78.0

Compare Source

Fixed
  • Recover Controller fields after reset without rerender (RN issue #​13455)
  • useFormState().isDirty race with async resolver in onChange mode
  • Use reactive values prop over defaultValues when shouldUnregister is true
  • deepEqual for empty non-plain objects
Types
  • Update dirtyFields typing for field arrays with undefined entries

v7.77.0

Compare Source

Added
  • resetDefaultValues API
Fixed
  • Stale isDirty in subscribe payload after reset(..., { keepValues: true })
  • Preserve values with shouldUnregister
  • Inconsistent reset({}) behavior requiring double-call to take effect
  • FieldArray errors overriding nested fields
Security
  • Harden get() against prototype-path traversal (__proto__ / constructor / prototype)
Performance
  • Bundle size reduction

v7.76.1

Compare Source

Fixed
  • Revert notify all matching field-array roots on nested setValue updates
  • Revert treat NaN as empty when valueAsNumber is true in validateField
  • setValues pass options parameter through to enable validation
  • setValues emit whole-form change without stale name/type
Performance
  • setValues skip redundant per-field deep clones
  • setValues thread skipClone through setFieldValue

v7.76.0

Compare Source

Added
  • Improve isDirty sync with dirtyFields state
Fixed
  • Preserve formState.defaultValues when useFieldArray and watch are used together
  • Preserve nested resolver field-array errors in trigger()
  • Notify all matching field-array roots on nested setValue updates
  • useFieldArray remove leaves array with empty object when using values prop
  • Preserve reset values for conditionally mounted Controller fields with shouldUnregister
  • Propagate setValues updates to mounted Controller fields
  • Native validation tooltip suppression caused by duplicate submit-error focus
  • append({ obj: null }) silently replaced by defaultValues after remove()
  • Errors state when using form-level validation
  • isValidating reactivity when validatingFields is not subscribed

v7.75.0

Compare Source

Added
  • Improve getDirtyFields to prune empty fields
  • TypeScript 6.0 support
Fixed
  • Include setValues in FormProvider context value
  • Preserve watch updates on field array unmount
  • Prevent useWatch re-render when unrelated field validation occurs
  • Recompute isDirty after re-registering a previously unregistered field
toss/react-simplikit (react-simplikit)

v0.0.51

Compare Source

Patch Changes

v0.0.50

Compare Source

Patch Changes
  • #​362 fc9b1dc Thanks @​guesung! - refactor(core): narrow types in debounce utility to reduce any usage

  • #​259 1d9ec79 Thanks @​wo-o29! - refactor(useCounter): extract validateValue as pure function and remove unnecessary useCallback

  • #​272 75ab148 Thanks @​wo-o29! - refactor(usePrevious): remove unnecessary undefined from compare argument and return type


Configuration

📅 Schedule: (in timezone Asia/Seoul)

  • Branch creation
    • "before 4am on monday"
  • 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.

@renovate renovate Bot requested review from seueooo and seung365 as code owners May 10, 2026 16:59
@vercel

vercel Bot commented May 10, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
time-capsule Ready Ready Preview, Comment Jun 23, 2026 11:51am

@github-actions

Copy link
Copy Markdown

This pull request (commit 14b389d) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-mki0rgjty-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/EKQqLfU1ZQe16CthfGuM6Bdcma2M

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 14b389d to 085fae1 Compare May 11, 2026 17:28
@github-actions

Copy link
Copy Markdown

This pull request (commit 085fae1) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-85efyljn1-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/EpSTydoYrKjfe3LnF1mtNCZYuCrx

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 085fae1 to c51cab6 Compare May 12, 2026 05:37
@github-actions

Copy link
Copy Markdown

This pull request (commit c51cab6) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-9ybl77qhw-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/7yKuEx4uzdHWEF9LgrnWXfPU6yGq

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c51cab6 to ae3067c Compare May 16, 2026 01:42
@github-actions

Copy link
Copy Markdown

This pull request (commit ae3067c) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-7ydgrs14m-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/9ydMdfP4Ru3cmcLyvMg1ejzHi9HU

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from ae3067c to 80fcf36 Compare May 18, 2026 18:51
@github-actions

Copy link
Copy Markdown

This pull request (commit 80fcf36) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-43ijuro88-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/CjPATsQTS7jsAVNFqmHF3kpJa5CY

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 80fcf36 to 28c1f0d Compare May 18, 2026 23:12
@github-actions

Copy link
Copy Markdown

This pull request (commit 28c1f0d) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-18qxl13er-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/GvMKFg9SgvQ2ztSH1VqxZVuXA7ci

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 28c1f0d to 7191a2c Compare May 21, 2026 14:15
@github-actions

Copy link
Copy Markdown

This pull request (commit 7191a2c) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-p6zlitqvu-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/GY8j1uj9DZiwUEvFtYjX8XM5dzTR

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 7191a2c to 6830e73 Compare May 22, 2026 23:02
@github-actions

Copy link
Copy Markdown

This pull request (commit 6830e73) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-iea99eo2s-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/5UigYN3psF4iRLUrKPp2EFrthp2w

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 6830e73 to 71757b9 Compare May 23, 2026 08:45
@github-actions

Copy link
Copy Markdown

This pull request (commit 71757b9) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-rmg5kr0bd-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/4btyTaRKS6bLAXVKjfbvWQ52EbwL

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 71757b9 to d8adcfa Compare May 23, 2026 17:23
@github-actions

Copy link
Copy Markdown

This pull request (commit 8e55841) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-bek4d5l77-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/3yPX1CDvsiCf7YgzdubmwtDZiP7Z

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 8e55841 to fdafe0b Compare May 28, 2026 19:17
@github-actions

Copy link
Copy Markdown

This pull request (commit fdafe0b) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-bcydx7caj-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/FXc1THzPbxZdu7Po5yQggBpCXWwP

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from fdafe0b to 4a84b41 Compare May 31, 2026 14:08
@github-actions

Copy link
Copy Markdown

This pull request (commit 4a84b41) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-49nxl1rvq-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/9PNbYmVcCE1WieDgJ7v5qk7XJbz7

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 4a84b41 to 32a3497 Compare June 1, 2026 21:46
@github-actions

github-actions Bot commented Jun 1, 2026

Copy link
Copy Markdown

This pull request (commit 32a3497) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-o9lnd9fj0-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/9eo9jLsN3Vd88qywTE7pwKZWKLwg

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 32a3497 to 5d71710 Compare June 2, 2026 21:32
@github-actions

github-actions Bot commented Jun 2, 2026

Copy link
Copy Markdown

This pull request (commit 5d71710) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-5hnrzwfu1-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/DgeqpiZ5bJdW7XZz5xrQ5Ec6z1aw

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 5d71710 to ec2b868 Compare June 3, 2026 12:33
@github-actions

github-actions Bot commented Jun 3, 2026

Copy link
Copy Markdown

This pull request (commit ec2b868) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-9a6bdwzfe-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/YctbVdTckfZaDVhm6ENf5JsWHJ6e

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from ec2b868 to 22321dc Compare June 8, 2026 00:46
@github-actions

github-actions Bot commented Jun 8, 2026

Copy link
Copy Markdown

This pull request (commit 22321dc) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-a8c76ptje-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/DN7d5e8j4YSPfr5T8faycSZQHhxL

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 22321dc to 360d571 Compare June 13, 2026 06:00
@github-actions

Copy link
Copy Markdown

This pull request (commit 360d571) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-cne2hikcw-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/A1bUhQsA8fWZHSJgExyLqXK9xrNW

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 360d571 to 7f5bcae Compare June 20, 2026 02:29
@github-actions

Copy link
Copy Markdown

This pull request (commit 7f5bcae) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-3dk74arn5-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/4emVpugbmq8AhhNBu17KeczJRT58

@github-actions

Copy link
Copy Markdown

This pull request (commit cf8eb91) has been deployed to Vercel ▲ - View GitHub Actions Workflow Logs

Name Link
🌐 Unique https://time-capsule-h08ggweyt-hs-projects-b4a69d5f.vercel.app
🔍 Inspect https://vercel.com/hs-projects-b4a69d5f/time-capsule/5Z45L5kLSRr4g27cc5XPZJqySxLY

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