Skip to content

chore(deps): update non-major - #353

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/non-major
Open

chore(deps): update non-major#353
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/non-major

Conversation

@renovate

@renovate renovate Bot commented Aug 27, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@sanity/client (source) ^8.2.0^8.4.0 age confidence
@sanity/tsdown-config (source) ^0.26.0^0.27.0 age confidence
@sanity/ui (source) ^4.0.5^4.0.7 age confidence
@types/react-dom (source) ^19.2.4^19.2.5 age confidence
@vitejs/plugin-react (source) ^6.1.0^6.1.1 age confidence
groq (source) ^6.10.1^6.11.0 age confidence
oxc-transform-react (source) ^0.145.0^0.147.0 age confidence
oxfmt (source) ^0.64.0^0.65.0 age confidence
oxlint (source) ^1.79.0^1.80.0 age confidence
sanity (source) ^6.10.1^6.11.0 age confidence
vite (source) ^8.2.1^8.2.2 age confidence

Release Notes

sanity-io/client (@​sanity/client)

v8.4.0

Compare Source

Minor Changes
  • add description field to dataset (#​1182) (027be06)
  • add client.context with knowledge bases, builds, triage, telemetry, and GROQ reads (#​1276) (1e991a7)
Patch Changes

v8.3.0

Compare Source

Minor Changes
  • invoke functions synchronously or asynchronously (#​1295) (d1667c7)

    client.functions.invoke() now takes an options argument and accepts sanity.function.durable
    and sanity.function.queue functions alongside sanity.function.pubsub.

    By default the invocation is queued: the call resolves with undefined as soon as the
    service accepts it, without waiting for the function to run. Pass {sync: true} to keep the
    request open until the function finishes and resolve with its return value — that adds a
    ?sync=true query parameter to the invoke request, and remains limited to
    sanity.function.pubsub.

    // Async — resolves once accepted, with no return value.
    await client.functions.invoke("my-func", {
      event: { data: { hello: "world" } },
    });
    
    // Sync — resolves with whatever the function returns.
    const result = await client.functions.invoke<Result>(
      "my-func",
      { event: { data: { hello: "world" } } },
      { sync: true }
    );

    The return type follows the option: a call with {sync: true} resolves with R, while an async
    call resolves with undefined. Callers who pass an explicit type argument without {sync: true}
    keep the previous R | undefined shape.

  • collaboration: resolve comment range from optional fieldValue (#​1299) (88073e6)

sanity-io/pkg-utils (@​sanity/tsdown-config)

v0.27.0

Compare Source

Minor Changes
  • #​3320 8d15fe5 Thanks @​stipsan! - Breaking: the babel pipeline is opt-in. reactCompiler defaults to transform: 'oxc', and @rolldown/plugin-babel + @babel/core are optional peer dependencies instead of dependencies. To stay on babel: set transform: 'babel' and pnpm add -D @rolldown/plugin-babel @babel/core babel-plugin-react-compiler.
Patch Changes

v0.26.2

Compare Source

Patch Changes

v0.26.1

Compare Source

Patch Changes
sanity-io/ui (@​sanity/ui)

v4.0.7

Compare Source

Patch Changes
  • #​2792 7258b02 Thanks @​squiggler-app! - fix(deps): update dependency use-effect-event to ^2.0.4

  • #​2782 80d25c2 Thanks @​stipsan! - Fixed non-animated Popover and Tooltip cards inheriting motion variants from an animated ancestor popover, which left them stuck at opacity: 0. MenuGroup submenus inside a MenuButton with popover={{animate: true}} never became visible as a result.

v4.0.6

Compare Source

Patch Changes
  • #​2753 2dc0627 Thanks @​squiggler-app! - fix(deps): update dependency motion to ^13.1.1

  • #​2750 63ed976 Thanks @​stipsan! - fix(popover): animate popovers with the same simplicity as tooltips — only the card fades and scales, the content is no longer animated separately, so it can never get stuck invisible (SAPP-4314)

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

v6.1.1

Compare Source

Add compiler.logDiagnostics option

Recoverable React Compiler diagnostics are no longer logged by default. Set compiler.logDiagnostics to true to log them through Vite. Fatal diagnostics are always logged and fail the transform.

Respect environment sourcemap option for React Compiler transform when builder.sharedPlugins is enabled (#​1439)

The React Compiler transform was using the top-level sourcemap option instead of the environment sourcemap option. This caused a problem when the experimental builder.sharedPlugins was enabled.

sanity-io/sanity (groq)

v6.11.0

Compare Source

Sanity Studio v6.11.0

This release includes various improvements and bug fixes.

For the complete changelog with all details, please visit:
www.sanity.io/changelog/studio-Ni4xMC4x

Install or upgrade Sanity Studio

To upgrade to this version, run:

npm install sanity@latest

To initiate a new Sanity Studio project or learn more about upgrading, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

📓 Full changelog

Author Message Commit
squiggler-app[bot] chore(deps): update dependency @​sanity/tsdown-config to ^0.26.1 (#​14327) 700b5a6
@​rexxars feat(studio): diagnostics panel (#​14264) 8335e1d
@​EoinFalconer feat(form): make the useFormValue path optional (#​14302) 9b5a099
@​stipsan fix(portable-text): stop annotation and comment popovers from flashing while the annotation editor opens (#​14240) 22a5e33
@​bjoerge chore(bench): measure the release commit directly (#​14325) 84aed1d
@​jordanl17 fix(releases): honour document action filters in version and release menus (#​14244) 8c8d1b7
@​bjoerge chore(metrics): mark releases in trend charts and benchmark release commits (#​14312) 3f6b12d
squiggler-app[bot] chore(deps): update dependency oxfmt to ^0.65.0 (#​14320) b6add00
squiggler-app[bot] chore(deps): update dependency oxlint to ^1.80.0 (#​14321) 6f1ff74
@​stipsan fix(deps): upgrade portabletext packages to latest majors (#​14317) 930bb00
squiggler-app[bot] chore(deps): update dependency oxc-transform-react to ^0.147.0 (#​14316) d9d09b9
squiggler-app[bot] fix(deps): update portabletext (#​14314) 77e0869
@​christianhg refactor(core): prefer data-pt-editor over .pt-editable (#​14309) 62b7daf
@​christianhg chore(renovate): keep @​portabletext/* majors in the group (#​14313) 56fb8b7
@​gu-stav refactor(sanity): remove obsolete workbench renderer re-export (#​14218) b3c7fd5
@​pedrobonamin perf(compiler): allow compilation of displayName and try/finally sites (#​14226) a113baa
@​laurenashpole chore: migrate flex in core canvas to documentGroupInventory (#​14221) 5793603
@​bjoerge chore(metrics): use ui5 flexBasis/flexGrow on trends chart card (#​14298) ec315cd
@​pedrobonamin chore(core): export byId map from useActiveReleases (#​14275) 223fa06
@​bjoerge chore(bench): plot calibration and collect more vm details (#​14243) 79dd375
@​bjoerge feat(metrics): collect git history, release tags + npm metadata (#​14297) dd4ea1f
squiggler-app[bot] fix(deps): update portabletext (#​14296) 9d3ba5d
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#​14294) 36a108d
squiggler-app[bot] chore(deps): update dependency i18next to ^26.4.0 (#​14290) e4603c7
squiggler-app[bot] chore(deps): update dependency chromatic to ^18.5.0 (#​14289) b6dee9f
squiggler-app[bot] fix(deps): update codemirror (#​14291) 37e757a
squiggler-app[bot] fix(deps): update dependency motion to ^13.1.1 (#​14288) e58cc4b
squiggler-app[bot] chore(deps): update dependency uuid to ^14.0.2 (#​14287) bfb2593
squiggler-app[bot] chore(deps): update dependency sanity-plugin-internationalized-array to ^5.2.2 (#​14286) b0878d2
squiggler-app[bot] chore(deps): update dependency @​chromatic-com/vitest to v0.1.9 (#​14284) 98cecc3
squiggler-app[bot] chore(deps): update dependency react-i18next to ^17.0.12 (#​14285) 9fb4f09
squiggler-app[bot] chore(deps): update dependency @​chromatic-com/playwright to ^0.14.12 (#​14283) ead924a
@​stipsan chore(deps): drop tsdown rolldown version override (#​14293) 3b367bc
squiggler-app[bot] fix(deps): update dependency @​sanity/cli to ^8.3.0 (#​14292) 706f3be
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#​14282) 4c3e11c
squiggler-app[bot] fix(deps): update dev-non-major (#​14212) 601b902
squiggler-app[bot] chore(deps): update dependency knip to ^6.32.2 (#​14213) 6be5f10
squiggler-app[bot] chore(deps): update dependency @​storybook/react-vite to ^10.5.10 (#​14253) 641a17c
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#​14278) 30ce4e8
squiggler-app[bot] fix(deps): update dependency @​portabletext/react to ^8.0.1 (#​14256) f6b568c
squiggler-app[bot] chore(deps): update dependency @​testing-library/user-event to ^14.6.5 (#​14255) 2801a1c
squiggler-app[bot] chore(tests): generate dts tests 🤖 ✨ (#​14279) bd339c4
squiggler-app[bot] fix(deps): update dependency @​sanity/cli to ^8.2.1 (#​14257) 2de8a6b
squiggler-app[bot] chore(deps): update dependency @​sanity/sdk to ^2.20.1 (#​14259) bc7bd57
squiggler-app[bot] chore(deps): update dependency @​sanity/sdk-react to ^2.20.1 (#​14260) f908ca3
squiggler-app[bot] chore(deps): update dependency @​sentry/react to ^10.70.0 (#​14261) 9ec719d
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#​14277) daa8358
squiggler-app[bot] chore(deps): update dependency @​sanity/visual-editing-csm to ^3.0.17 (#​14252) 61a61ea
squiggler-app[bot] chore(deps): update dependency @​sanity/google-maps-input to ^6.1.13 (#​14251) b050aa1
squiggler-app[bot] fix(deps): update dependency @​sanity/preview-url-secret to ^4.1.5 (#​14258) 607ea57
squiggler-app[bot] chore(deps): update dependency es-toolkit to ^1.51.0 (#​14262) cb5ce99
squiggler-app[bot] chore(deps): update dependency @​tanstack/react-virtual to ^3.14.10 (#​14254) 6b89348
@​juice49 refactor(sanity): centralise form row gutterStart rendering (#​14237) 43eef0d
@​juice49 refactor(sanity): migrate gutter-field anchor to Vanilla Extract (#​14237) c8d2cc5
@​laurenashpole chore: migrate box in dev (#​14091) 1d2054b
@​stipsan chore(lint): fix oxlint react-compiler errors without suppressions (#​13970) 976d10a
@​stipsan chore(dev): drop strictExecutionOrder workaround after cli bundledDev default (#​14180) e8d1762
@​ryanleichty feat(structure): support custom component pane widths (#​13538) 901e91c
squiggler-app[bot] fix(deps): update vitest monorepo to ^4.1.11 (#​14205) 7f2e291
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#​14247) cd932a2
@​stipsan fix(deps): update dependency @​sanity/ui to ^4.0.6 (#​14245) 1b81f86
@​stipsan fix(core): defer workspace menu boot requests via react-rx warm-up skip (#​14234) 1d95a40
@​bjoerge fix: key useDocumentValues memo on path contents to prevent render loops (#​14241) e089afd
@​pedrobonamin fix(core): hide agent versions from the document versions tooltip (#​14235) 2ac6440
@​bjoerge chore(perf): retire legacy efps suite (#​14192) 035f398
@​christianhg fix(core): apply the selected style to every block in the selection, not only the focus block (#​14223) 3379eaf
sieve-sanity[bot] fix(@​sanity/schema): allow i18nTitleKey on portable-text styles/lists and export defaults (#​13494) (#​13831) 8bbe6c7
cursor[bot] fix(form): pass real document id to field actions (#​14145) dddabc4
@​pedrobonamin fix(core): hide default variant label when variants are disabled (#​14216) 9eee0d6
cursor[bot] fix(structure): centre document pane back button on narrow viewports (#​14133) d341e99
@​laurenashpole chore: migrate box in remaining src files (#​14222) 109fc02
@​laurenashpole chore: migrate box in core/components (#​14193) 72eb2c0
squiggler-app[bot] chore(tests): generate dts tests 🤖 ✨ (#​14220) a04b316
@​laurenashpole chore: migrate box in misc directories in structure (#​14087) cefba50
@​stipsan perf(build): run react compiler on oxc instead of babel (#​14199) 822c6ad
@​pedrobonamin chore(core): adds documentVersionsStatus tooltip info (#​14167) aeb3ef5
@​pedrobonamin chore(core): expose type on useDocumentVersions stubs (#​14210) c209bf9
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#​14209) 1e38004
squiggler-app[bot] fix(deps): update dependency get-it to ^9.5.1 (#​14204) 35df047
squiggler-app[bot] chore(deps): update dependency sanity-plugin-internationalized-array to ^5.2.0 (#​14182) a38c53d
squiggler-app[bot] chore(deps): update dependency oxfmt to ^0.64.0 (#​14188) 83999c3
squiggler-app[bot] chore(deps): update dependency @​sanity/tsdown-config to ^0.26.0 (#​14206) 10aafd3
@​jordanl17 test(storybook): add ui5 migration visual sentinels (#​14014) 2e5a0cb
squiggler-app[bot] chore(deps): update dependency chalk to v6 (#​14190) 8599fdf
squiggler-app[bot] chore(deps): lock file maintenance (#​14166) 8862fdb
squiggler-app[bot] chore(deps): update dependency vite to ^8.2.2 (#​14203) b59edb6
@​stipsan fix(core): only deprecate useClient when called without options (#​14202) [1f167b3

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 3am on the first day of the month"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

@changeset-bot

changeset-bot Bot commented Aug 27, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 6882ff1

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@socket-security

socket-security Bot commented Aug 27, 2026

Copy link
Copy Markdown

@renovate
renovate Bot force-pushed the renovate/non-major branch from 7fcbf8b to 4e74fa0 Compare August 27, 2026 21:00
@renovate
renovate Bot force-pushed the renovate/non-major branch from 4e74fa0 to 6882ff1 Compare August 29, 2026 09:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants