Skip to content

chore(studio-deps): bump the sanity-studio group in /studio with 6 updates#338

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/studio/sanity-studio-0239391e92
Open

chore(studio-deps): bump the sanity-studio group in /studio with 6 updates#338
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/studio/sanity-studio-0239391e92

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor

Bumps the sanity-studio group in /studio with 6 updates:

Package From To
@sanity/assist 6.1.9 6.1.14
@sanity/cli 7.5.0 7.10.0
@sanity/client 7.23.0 7.23.2
@sanity/icons 5.0.0 5.1.0
@sanity/vision 6.3.0 6.5.0
sanity 6.3.0 6.5.0

Updates @sanity/assist from 6.1.9 to 6.1.14

Release notes

Sourced from @​sanity/assist's releases.

@​sanity/assist@​6.1.14

Patch Changes

  • #1628 735b86a Thanks @​stipsan! - Clean up README formatting (headings, lists and code blocks were rendering as plain text on some markdown renderers) and add a "Known limitations" section documenting that image descriptions are always generated in English regardless of translate.document.languageField, with suggested workarounds (sanity-io/plugins#1606)

  • #1467 ebecfbf Thanks @​stipsan! - Keep the document's selected field group from resetting while editing AI Assist instructions. The instruction inspector no longer overwrites the host document pane's path param, so working with AI Assist inputs preserves the active field group tab.

  • #1622 6fe3c11 Thanks @​squiggler-app! - fix(deps): update dependency tsdown to ^0.22.9

@​sanity/assist@​6.1.13

Patch Changes

Changelog

Sourced from @​sanity/assist's changelog.

6.1.14

Patch Changes

  • #1628 735b86a Thanks @​stipsan! - Clean up README formatting (headings, lists and code blocks were rendering as plain text on some markdown renderers) and add a "Known limitations" section documenting that image descriptions are always generated in English regardless of translate.document.languageField, with suggested workarounds (sanity-io/plugins#1606)

  • #1467 ebecfbf Thanks @​stipsan! - Keep the document's selected field group from resetting while editing AI Assist instructions. The instruction inspector no longer overwrites the host document pane's path param, so working with AI Assist inputs preserves the active field group tab.

  • #1622 6fe3c11 Thanks @​squiggler-app! - fix(deps): update dependency tsdown to ^0.22.9

6.1.13

Patch Changes

6.1.12

Patch Changes

6.1.11

Patch Changes

6.1.10

Patch Changes

  • #1503 30340cf Thanks @​stipsan! - Fix a crash ("Element type is invalid … got: ") when rendering the instruction list for instructions with a custom icon. Since the @sanity/icons v5 migration the instruction preview received a rendered icon element but kept rendering it as a component; it now handles both. The README also gains a troubleshooting section for MISSING_EXPORT icon build errors, which come from code importing icons from the @sanity/icons package root — a pattern removed in v5 (this plugin already uses the per-icon export paths).

  • #1476 b8bc962 Thanks @​stipsan! - Remove type assertions made redundant by improved type inference (internal refactor, no API change)

Commits

Updates @sanity/cli from 7.5.0 to 7.10.0

Release notes

Sourced from @​sanity/cli's releases.

@​sanity/cli@​7.10.0

Change Log

7.10.0

2026-07-17

Features

  • declare application visibility from the CLI config (#1541) (cc06484)

  • organizations: add commands for listing, creating, updating, and deleting organizations (#762) (c2c56ac)

  • cli: avoid interactive setup choices in unattended mode (#1503) (6690829)

    Choose login providers and package managers deterministically when possible, and return usage errors when a choice is required.

  • cli: support unattended project creation (#1503) (6690829)

    Require organization flags when selection is ambiguous, validate dataset names as usage errors, and keep dataset creation JSON machine-readable.

  • cli: support unattended mode for hook commands (#1501) (a7b1ad8)

    Print webhook creation URLs instead of opening a browser, and require names when deletion or log selection would otherwise prompt.

Bug Fixes

  • cli-core: prevent silent SIGABRT (exit 134) in sanity schemas deploy and other one-shot studio worker commands (#1554) (9baab95)

    With Vite 8, studio bundling runs through rolldown — a native addon with its own thread pool. The studio worker never closed its Vite server, and the main thread called worker.terminate() as soon as the worker posted its result, destroying the worker's event loop while rolldown's threads were still live. The next threadsafe-function call then aborted the whole process with no output (reliably on macOS, intermittently on Linux), affecting schemas deploy/extract/validate/list/delete, graphql deploy, manifest extract, and deploy.

    One-shot studio workers now close their Vite server (bounded by a timeout) before posting any message to the main thread, and the main thread never force-terminates them — settled workers are unref'd and tear down with the process. Errors thrown while loading the studio config (e.g. a broken sanity.config.ts) are serialized and posted after cleanup, so the real error surfaces instead of exit 134.

  • workbench: forward app slug to the dev workbench (#1537) (a2e001c)

  • deps: update sanity-tooling (#1419) (dfbab41)

  • deps: update oclif-tooling (#1523) (4ad2f44)

  • deps: update dependency oxfmt to ^0.59.0 (#1526) (08212ac)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/workbench-cli bumped to 1.5.0
      • @​sanity/cli-core bumped to 2.5.0

7.9.0

2026-07-15

... (truncated)

Changelog

Sourced from @​sanity/cli's changelog.

7.10.0

2026-07-17

Features

  • declare application visibility from the CLI config (#1541) (cc06484)

  • organizations: add commands for listing, creating, updating, and deleting organizations (#762) (c2c56ac)

  • cli: avoid interactive setup choices in unattended mode (#1503) (6690829)

    Choose login providers and package managers deterministically when possible, and return usage errors when a choice is required.

  • cli: support unattended project creation (#1503) (6690829)

    Require organization flags when selection is ambiguous, validate dataset names as usage errors, and keep dataset creation JSON machine-readable.

  • cli: support unattended mode for hook commands (#1501) (a7b1ad8)

    Print webhook creation URLs instead of opening a browser, and require names when deletion or log selection would otherwise prompt.

Bug Fixes

  • cli-core: prevent silent SIGABRT (exit 134) in sanity schemas deploy and other one-shot studio worker commands (#1554) (9baab95)

    With Vite 8, studio bundling runs through rolldown — a native addon with its own thread pool. The studio worker never closed its Vite server, and the main thread called worker.terminate() as soon as the worker posted its result, destroying the worker's event loop while rolldown's threads were still live. The next threadsafe-function call then aborted the whole process with no output (reliably on macOS, intermittently on Linux), affecting schemas deploy/extract/validate/list/delete, graphql deploy, manifest extract, and deploy.

    One-shot studio workers now close their Vite server (bounded by a timeout) before posting any message to the main thread, and the main thread never force-terminates them — settled workers are unref'd and tear down with the process. Errors thrown while loading the studio config (e.g. a broken sanity.config.ts) are serialized and posted after cleanup, so the real error surfaces instead of exit 134.

  • workbench: forward app slug to the dev workbench (#1537) (a2e001c)

  • deps: update sanity-tooling (#1419) (dfbab41)

  • deps: update oclif-tooling (#1523) (4ad2f44)

  • deps: update dependency oxfmt to ^0.59.0 (#1526) (08212ac)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/workbench-cli bumped to 1.5.0
      • @​sanity/cli-core bumped to 2.5.0

7.9.0

2026-07-15

Features

  • workbench: undeploy through the applications API (#1472) (6ddf505)

... (truncated)

Commits
  • c608825 chore: version packages (#1522)
  • 9baab95 fix(cli-core): close studio worker Vite server before terminate to prevent si...
  • cc06484 feat: declare application visibility from the CLI config (#1541)
  • 6690829 feat(cli): improve unattended mode for project management commands (#1503)
  • a7b1ad8 feat(cli): support unattended mode for hook commands (#1501)
  • a2e001c feat(workbench): forward app slug to the dev workbench (#1537)
  • b28a73b chore: update CLI README (#1532)
  • 813a9b6 build: exclude test files via .swcrc instead of --ignore globs (#1527)
  • 08212ac fix(deps): update dependency oxfmt to ^0.59.0 (#1526)
  • c2c56ac feat(organizations): add CRUD commands for organizations (#762)
  • Additional commits viewable in compare view

Updates @sanity/client from 7.23.0 to 7.23.2

Release notes

Sourced from @​sanity/client's releases.

v7.23.2

7.23.2 (2026-07-15)

Bug Fixes

  • deps: update @​sanity/eventsource to v5.0.4 (#1230) (17d15ee)

v7.23.1

7.23.1 (2026-07-13)

Bug Fixes

  • stop reconnecting live/listen connections rejected with a 4xx (#1226) (8c26558)
Changelog

Sourced from @​sanity/client's changelog.

7.23.2 (2026-07-15)

Bug Fixes

  • deps: update @​sanity/eventsource to v5.0.4 (#1230) (17d15ee)

7.23.1 (2026-07-13)

Bug Fixes

  • stop reconnecting live/listen connections rejected with a 4xx (#1226) (8c26558)
Commits
  • 5da483c chore(main): release 7.23.2 (#1231)
  • 17d15ee fix(deps): update @​sanity/eventsource to v5.0.4 (#1230)
  • 1e27187 chore(deps): update amannn/action-semantic-pull-request action to v6 (#1196)
  • 00a17e3 chore(deps): update peter-evans/create-pull-request action to v8 (#1228)
  • 0638ff2 chore(main): release 7.23.1 (#1227)
  • c34b5bc chore(deps): update actions/checkout action to v6 (#1198)
  • 8c26558 fix: stop reconnecting live/listen connections rejected with a 4xx (#1226)
  • See full diff in compare view

Updates @sanity/icons from 5.0.0 to 5.1.0

Release notes

Sourced from @​sanity/icons's releases.

v5.1.0

Minor Changes

  • #223 e5657d5 Thanks @​stipsan! - Importing an icon from the root entry now resolves in the type system to a @deprecated never-typed tombstone instead of failing with a bare "has no exported member" error. Since v5 removed the per-icon barrel exports, import {RocketIcon} from '@sanity/icons' was indistinguishable from the icon having been deleted; the tombstone's deprecation message now points at the subpath the icon lives on, e.g. import {RocketIcon} from '@sanity/icons/Rocket'. The tombstones are declaration-only (export declare const RocketIcon: never), so nothing changes at runtime: the root entry still ships no icon code and bundlers/Node.js still reject root icon imports.
Changelog

Sourced from @​sanity/icons's changelog.

5.1.0

Minor Changes

  • #223 e5657d5 Thanks @​stipsan! - Importing an icon from the root entry now resolves in the type system to a @deprecated never-typed tombstone instead of failing with a bare "has no exported member" error. Since v5 removed the per-icon barrel exports, import {RocketIcon} from '@sanity/icons' was indistinguishable from the icon having been deleted; the tombstone's deprecation message now points at the subpath the icon lives on, e.g. import {RocketIcon} from '@sanity/icons/Rocket'. The tombstones are declaration-only (export declare const RocketIcon: never), so nothing changes at runtime: the root entry still ships no icon code and bundlers/Node.js still reject root icon imports.
Commits

Updates @sanity/vision from 6.3.0 to 6.5.0

Release notes

Sourced from @​sanity/vision's releases.

v6.5.0

Sanity Studio v6.5.0

This release includes various improvements and bug fixes.

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

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(tests): generate dts tests 🤖 ✨ (#13514) df9d16fb22c73fdc957b7f9448fa2b3fd25657c3
@​stipsan fix(release-notes): produce schema-valid suggested content (#13515) 1acd626b300d70e053f93520c8af6cebb4da88f1
@​stipsan fix(form): keep empty reference array items when clicking custom item UI (#13508) 73aeb3b5128fd06fc49c47d55a50610a2f9a8c00
@​pedrobonamin fix(core): defer onDeleteComplete until after dialog cleanup (#13512) 7837303aec73f9f465a73c5ee54d453f6b1e2973
@​pedrobonamin fix(core): clear scheduled draft perspective after deleting scheduled draft (#13509) 1d3ea7997e3c2f4bf9d3359ceb9b7b93eb1d4f1e
@​bjoerge chore(dev): perf bench followups (#13507) f6bd1e60f5777ac91ad33c9e8aec9808fd599148
@​snorrees fix(structure): allow all document actions when a Canvas-linked document is editable (#13506) 02c71ffa4bd49a6543e84910505f644998549d54
@​bjoerge chore(dev): add perf bench (#13442) 376f1ddd97f63e2fc1b1891cebf9e98665151cad
squiggler-app[bot] fix(deps): update dependency @​sanity/cli to ^7.8.0 (#13501) d5384dc81f800b10e629d557d68b70b55b274929
squiggler-app[bot] chore(tests): generate dts tests 🤖 ✨ (#13492) c9a1a58a1398144fe33ddf3fb29e211205b914d0
@​bjoerge fix: only show document sync state toast on actual commit failures (#13487) 0c7bf655d3f70629e0acaab6fd6106ae7fbe3406
@​bjoerge fix: keep editState + document versions warm across subscription churn (#13490) f7a0425a98ca83c87df0672e5d17f783f87891f3
@​pedrobonamin feat(variants): allow creating variant documents in releases (#13488) bef5e191fa600446716a649e35f1d0059ae846ec
@​stipsan chore(lint): turn off no-unnecessary-type-assertion (#13486) b7d3c8d0f7967a3623b1962bcab6659ceff56550
squiggler-app[bot] chore(deps): update dependency i18next to ^26.3.6 (#13418) e7270c10b1d0eb9e465f2f239e12fcf11109a061
@​juice49 chore: revert "chore(lint): make no-unnecessary-type-assertion an error with grandfathered suppressions (#13375)" (#13484) ebae0cee6d38463b68141257f0d2444b33ad2407
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#13483) 5fe5c6f35d56a71277d732a38f2f8818faf8c96d
squiggler-app[bot] chore(tests): generate dts tests 🤖 ✨ (#13471) da58c4fe39b52b8427197683fb58c3a2f517e8f6
squiggler-app[bot] chore(deps): update dependency vite to ^8.1.4 (#13369) b74d8ce3e20571783c7572c7245de07c128d6228
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#13444) 8d0f76112dc408ef143d7c31716e8faee3bb33be
@​juice49 chore(sanity): lint getVariantsDocumentCounts (#13479) 4b4bb839640a4834f12d3e3bbc7d2fa99baae3a0
Copilot fix(variants): pass variant id to useSetVariant from pin button (#13478) 5fc9d92ccb2e185aed89d59402c8bdee7d2a810c
@​jordanl17 feat(telemetry): track workspace feature flags in workspace features observed (#13386) bb9fccbdf28c521d88c2c24e9246ddf806219ead
@​pedrobonamin feat(variants): add pin button to variants tool (#13468) 20dc63dfc939cab2fb9d45ed3370c9489e3b3729
@​juice49 refactor(sanity): reduce data needed by setVariant to simply the variant id (#13473) 529eb0e31bf2c9bcb2f81184d80dc0ebae63ff09
@​christianhg feat(comments): anchor text comments on the block's data path (#13116) dc5f60109b7785a7005f820c9f365c5a1695dbba
@​christianhg test(test-studio): toggle inline containers on the Container Table field (#13116) 93e1bb7d072105e035b569cc5b24b2bfc696cdae
@​christianhg fix(comments): match CommentsField threads by path prefix (#13116) 51859f8f54377e238ac5f4f57721eaf43f2f222f

... (truncated)

Changelog

Sourced from @​sanity/vision's changelog.

6.5.0 (2026-07-14)

Bug Fixes

  • vision: make saved queries side panel scrollable (#13449) (4e796ad)

6.4.0 (2026-07-07)

Bug Fixes

  • deps: update dependency @​sanity/icons to ^3.7.6 (#13384) (260a282)
  • deps: update dependency @​sanity/icons to v5 (#13409) (f788296)
  • deps: update dependency react-rx to ^4.2.3 (#13405) (10d1a5a)

Performance Improvements

Commits

Updates sanity from 6.3.0 to 6.5.0

Release notes

Sourced from sanity's releases.

v6.5.0

Sanity Studio v6.5.0

This release includes various improvements and bug fixes.

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

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(tests): generate dts tests 🤖 ✨ (#13514) df9d16fb22c73fdc957b7f9448fa2b3fd25657c3
@​stipsan fix(release-notes): produce schema-valid suggested content (#13515) 1acd626b300d70e053f93520c8af6cebb4da88f1
@​stipsan fix(form): keep empty reference array items when clicking custom item UI (#13508) 73aeb3b5128fd06fc49c47d55a50610a2f9a8c00
@​pedrobonamin fix(core): defer onDeleteComplete until after dialog cleanup (#13512) 7837303aec73f9f465a73c5ee54d453f6b1e2973
@​pedrobonamin fix(core): clear scheduled draft perspective after deleting scheduled draft (#13509) 1d3ea7997e3c2f4bf9d3359ceb9b7b93eb1d4f1e
@​bjoerge chore(dev): perf bench followups (#13507) f6bd1e60f5777ac91ad33c9e8aec9808fd599148
@​snorrees fix(structure): allow all document actions when a Canvas-linked document is editable (#13506) 02c71ffa4bd49a6543e84910505f644998549d54
@​bjoerge chore(dev): add perf bench (#13442) 376f1ddd97f63e2fc1b1891cebf9e98665151cad
squiggler-app[bot] fix(deps): update dependency @​sanity/cli to ^7.8.0 (#13501) d5384dc81f800b10e629d557d68b70b55b274929
squiggler-app[bot] chore(tests): generate dts tests 🤖 ✨ (#13492) c9a1a58a1398144fe33ddf3fb29e211205b914d0
@​bjoerge fix: only show document sync state toast on actual commit failures (#13487) 0c7bf655d3f70629e0acaab6fd6106ae7fbe3406
@​bjoerge fix: keep editState + document versions warm across subscription churn (#13490) f7a0425a98ca83c87df0672e5d17f783f87891f3
@​pedrobonamin feat(variants): allow creating variant documents in releases (#13488) bef5e191fa600446716a649e35f1d0059ae846ec
@​stipsan chore(lint): turn off no-unnecessary-type-assertion (#13486) b7d3c8d0f7967a3623b1962bcab6659ceff56550
squiggler-app[bot] chore(deps): update dependency i18next to ^26.3.6 (#13418) e7270c10b1d0eb9e465f2f239e12fcf11109a061
@​juice49 chore: revert "chore(lint): make no-unnecessary-type-assertion an error with grandfathered suppressions (#13375)" (#13484) ebae0cee6d38463b68141257f0d2444b33ad2407
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#13483) 5fe5c6f35d56a71277d732a38f2f8818faf8c96d
squiggler-app[bot] chore(tests): generate dts tests 🤖 ✨ (#13471) da58c4fe39b52b8427197683fb58c3a2f517e8f6
squiggler-app[bot] chore(deps): update dependency vite to ^8.1.4 (#13369) b74d8ce3e20571783c7572c7245de07c128d6228
squiggler-app[bot] chore(deps): dedupe pnpm-lock.yaml (#13444) 8d0f76112dc408ef143d7c31716e8faee3bb33be
@​juice49 chore(sanity): lint getVariantsDocumentCounts (#13479) 4b4bb839640a4834f12d3e3bbc7d2fa99baae3a0
Copilot fix(variants): pass variant id to useSetVariant from pin button (#13478) 5fc9d92ccb2e185aed89d59402c8bdee7d2a810c
@​jordanl17 feat(telemetry): track workspace feature flags in workspace features observed (#13386) bb9fccbdf28c521d88c2c24e9246ddf806219ead
@​pedrobonamin feat(variants): add pin button to variants tool (#13468) 20dc63dfc939cab2fb9d45ed3370c9489e3b3729
@​juice49 refactor(sanity): reduce data needed by setVariant to simply the variant id (#13473) 529eb0e31bf2c9bcb2f81184d80dc0ebae63ff09
@​christianhg feat(comments): anchor text comments on the block's data path (#13116) dc5f60109b7785a7005f820c9f365c5a1695dbba
@​christianhg test(test-studio): toggle inline containers on the Container Table field (#13116) 93e1bb7d072105e035b569cc5b24b2bfc696cdae
@​christianhg fix(comments): match CommentsField threads by path prefix (#13116) 51859f8f54377e238ac5f4f57721eaf43f2f222f

... (truncated)

Changelog

Sourced from sanity's changelog.

6.5.0 (2026-07-14)

Features

  • comments: anchor text comments on the block's data path (dc5f601)
  • perspective: support setting variant and perspective atomically (#13461) (a2242c9)
  • telemetry: track workspace feature flags in workspace features observed (#13386) (bb9fccb)
  • variants: add pin button to variants tool (#13468) (20dc63d)
  • variants: allow creating variant documents in releases (#13488) (bef5e19)
  • variants: prevent variant deletion when it has documents (#13467) (241ba91)
  • variants: show live document counts in variants overview (#13460) (4650c5b)

Bug Fixes

  • comments: match CommentsField threads by path prefix (51859f8)
  • core: clear scheduled draft perspective after deleting scheduled draft (#13509) (1d3ea79)
  • core: defer onDeleteComplete until after dialog cleanup (#13512) (7837303)
  • core: delegate useProject request errors to the studio error channel (#13459) (6e197c4)
  • core: variants details not rendering the documents (#13455) (4ab4b17)
  • deps: update dependency @​sanity/cli to ^7.7.1 (#13453) (bcebe7c)
  • deps: update dependency @​sanity/cli to ^7.8.0 (#13501) (d5384dc)
  • deps: update dependency @​sanity/preview-url-secret to ^4.0.8 (#13420) (e81a160)
  • form: keep empty reference array items when clicking custom item UI (#13508) (73aeb3b)
  • keep editState + document versions warm across subscription churn (#13490) (f7a0425)
  • only offer reload-to-update for versions auto-update will serve (#13451) (11edcfa)
  • only show document sync state toast on actual commit failures (#13487) (0c7bf65)
  • sanity: base reload prompt on served package version, drop range heuristic (#13462) (210efaf)
  • structure: allow all document actions when a Canvas-linked document is editable (#13506) (02c71ff)
  • structure: delegate intent resolution request failures to studio error handler (#13464) (e19ca5c)
  • treat session not found as an invalid session (#13458) (0a2698e)
  • variants: pass variant id to useSetVariant from pin button (#13478) (5fc9d92)

6.4.0 (2026-07-07)

Features

Bug Fixes

  • core: allow pasting references to documents that only exist in a release (#13399) (8072fbc)
  • core: draw change connector when hovering image and file diffs (#13428) (028ff93)
  • core: force logout only on 401s tagged as session expiry (#13394) (ef537bc)
  • core: only cancel commits for known-terminal client errors (#13396) (e38afdc)
  • deps: update dependency @​sanity/cli to ^7.5.0 (#13389) (24bce9d)
  • deps: update dependency @​sanity/icons to ^3.7.6 (#13384) (260a282)
  • deps: update dependency @​sanity/icons to v5 (#13409) (f788296)
  • deps: update dependency react-rx to ^4.2.3 (#13405) (10d1a5a)
  • deps: update portabletext (#13441) (064bb11)
  • portable-text: collect form members at any depth (e8af647)

... (truncated)

Commits
  • e8fe72a chore(release): publish v6.5.0 (

Bumps the sanity-studio group in /studio with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@sanity/assist](https://github.com/sanity-io/plugins/tree/HEAD/plugins/@sanity/assist) | `6.1.9` | `6.1.14` |
| [@sanity/cli](https://github.com/sanity-io/cli/tree/HEAD/packages/@sanity/cli) | `7.5.0` | `7.10.0` |
| [@sanity/client](https://github.com/sanity-io/client) | `7.23.0` | `7.23.2` |
| [@sanity/icons](https://github.com/sanity-io/icons) | `5.0.0` | `5.1.0` |
| [@sanity/vision](https://github.com/sanity-io/sanity/tree/HEAD/packages/@sanity/vision) | `6.3.0` | `6.5.0` |
| [sanity](https://github.com/sanity-io/sanity/tree/HEAD/packages/sanity) | `6.3.0` | `6.5.0` |


Updates `@sanity/assist` from 6.1.9 to 6.1.14
- [Release notes](https://github.com/sanity-io/plugins/releases)
- [Changelog](https://github.com/sanity-io/plugins/blob/main/plugins/@sanity/assist/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/plugins/commits/@sanity/assist@6.1.14/plugins/@sanity/assist)

Updates `@sanity/cli` from 7.5.0 to 7.10.0
- [Release notes](https://github.com/sanity-io/cli/releases)
- [Changelog](https://github.com/sanity-io/cli/blob/main/packages/@sanity/cli/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/cli/commits/@sanity/cli@7.10.0/packages/@sanity/cli)

Updates `@sanity/client` from 7.23.0 to 7.23.2
- [Release notes](https://github.com/sanity-io/client/releases)
- [Changelog](https://github.com/sanity-io/client/blob/main/CHANGELOG.md)
- [Commits](sanity-io/client@v7.23.0...v7.23.2)

Updates `@sanity/icons` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sanity-io/icons/releases)
- [Changelog](https://github.com/sanity-io/icons/blob/main/CHANGELOG.md)
- [Commits](sanity-io/icons@v5.0.0...v5.1.0)

Updates `@sanity/vision` from 6.3.0 to 6.5.0
- [Release notes](https://github.com/sanity-io/sanity/releases)
- [Changelog](https://github.com/sanity-io/sanity/blob/main/packages/@sanity/vision/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/sanity/commits/v6.5.0/packages/@sanity/vision)

Updates `sanity` from 6.3.0 to 6.5.0
- [Release notes](https://github.com/sanity-io/sanity/releases)
- [Changelog](https://github.com/sanity-io/sanity/blob/main/packages/sanity/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/sanity/commits/v6.5.0/packages/sanity)

---
updated-dependencies:
- dependency-name: "@sanity/assist"
  dependency-version: 6.1.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sanity-studio
- dependency-name: "@sanity/cli"
  dependency-version: 7.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sanity-studio
- dependency-name: "@sanity/client"
  dependency-version: 7.23.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sanity-studio
- dependency-name: "@sanity/icons"
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sanity-studio
- dependency-name: "@sanity/vision"
  dependency-version: 6.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sanity-studio
- dependency-name: sanity
  dependency-version: 6.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sanity-studio
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: automated, dependencies, studio. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel

vercel Bot commented Jul 20, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
mash-ecommerce-web Error Error Jul 20, 2026 2:14am
mashmarket Ready Ready Preview, Comment Jul 20, 2026 2:14am

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