Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update apps dependencies #108

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sanity/vision (source) ^3.67.1 -> ^3.75.0 age adoption passing confidence
@types/react (source) ^18.3.17 -> ^18.3.18 age adoption passing confidence
prettier (source) ^3.4.2 -> ^3.5.1 age adoption passing confidence
sanity (source) ^3.67.1 -> ^3.75.0 age adoption passing confidence
styled-components (source) ^6.1.13 -> ^6.1.15 age adoption passing confidence
typescript (source) ^5.7.2 -> ^5.7.3 age adoption passing confidence

Release Notes

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

v3.75.0

Compare Source

v3.74.1

Compare Source

🐛 Notable bugfixes
  • Fixes a regression in the Portable Text Input, introduced in 3.68.0, that potentially could lead to data loss when user input was entered concurrently with incoming changes being streamed into the input, e.g., from AI Assist or from a team member working on the same input.
Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.30.3 (#​8508) | 3d25456

v3.74.0

Compare Source

✨ Highlights
UI improvements in studio and structure
1. Switch between drafts and published perspectives in the editor

Previously, your drafted changes to an already published document would always be present when viewing that document in the studio, and there was no simple way of viewing the document in its published state. As of this release, the studio editor pane supports switching between the published and drafts perspectives, to quickly eyeball what’s changed.
01

2. Browse your studio in published perspective

The default mode in the studio is unchanged - all existing drafts appear alongside published documents. When working on a single document, you’ll see your drafted changes rather than the last published version. This is the drafts perspective.

Switching to the published perspective (via the perspective switcher at the top of the editor pane) updates the studio’s top navigation bar to green, indicating that you are now viewing only published documents in their last published state. Please note that while the published perspective is active, your documents will be in read-only mode, unless they are configured to be live-editable.

You can continue navigating the studio in this mode, ensuring you see only content that is currently live, or switch back to the default drafts perspective to see all pending changes.
02

3. Global perspective switcher

You can also change between the published or drafts perspective from the switcher at the right side of the studio top navigation bar.

This will also be used by Presentation when previewing content inside the studio, the built in picker has been removed

03

4. Click document footer status bar to open history pane

The document History pane has always been available by accessing the ellipsis menu at the top of the document editor pane. From now on, you can also access this view by clicking the document status in the footer of the editor pane.
04

5 Perspective-aware History pane

The History pane now adapts to show information about the relevant document in the currently selected perspective. While in published mode, any changes since the last published state are omitted.

05

To see all pending changes in the History pane, toggle back to the drafts perspective.

05 1

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Jordan Lawrence, Rita Dias, Pedro Bonamin, Ash Stevens, Cody Olsen, Robin Neatherway, Marius Lundgård, Bjørge Næss | feat: content releases (#​8454) | e485525
renovate[bot] | chore(deps): update dependency turbo to ^2.4.0 (#​8500) | 2d2df51
Pedro Bonamin | fix(core): show accurate history for live-edit documents (#​8497) | ccb2a4f

v3.73.0

Compare Source

✨ Highlights
Presentation tool is now using Sanity Live Content API

The Presentation tool is now using Sanity Live Content API to drive Live Mode in integrations like @sanity/react-loader, @sanity/svelte-loader, @nuxtjs/sanity and @sanity/core-loader.
The new setup allows query refetching to only happen when actually needed, as opposed to every two seconds.
Why was fetching happening every two seconds before?
This aggressive polling was in place to capture changes that couldn’t be reliably predicted client-side using Content Source Maps/CSM. The goal was to ensure that such changes were detected and that eventual consistency was maintained in the live preview.

  • count(*[_type == "person" && isPublished])
    For the client to know when this query count will change it would need to monitor every person document and if isPublished is true. This doesn't scale.
  • *[slug.current == "discounted"]
    If any document is given the slug discounted, the query needs to refetch. The client would need to monitor every single document mutation in the dataset and check if a new document now has the slug, as well as check if any fields on the current matching document has changed, or if the matching document got deleted and there's a fallback match, or none at all.

The gist of it is the client can't predict everything, and if it tries, it winds up using a lot of memory and perform work, just in case anything has changed.
While this over-fetching never counted towards your Sanity API hit quota, the intention has always been to move over to a better architecture.
Enter the new Sanity Live API; it's built to solve "when should a query refetch?" and it allows Presentation to rely on the backend for telling it when it needs to refetch, thus using far less memory, less network resources, and less work on the main thread.

🐛 Notable bugfixes
  • Internal document types will no longer appear in validation results in the CLI
  • Fixes an issue where write tokens were not being set in .env file after initializing a remote template
  • Fixes an issue where splitting a Portable Text block right before an inline object might cause the editor to crash
  • Fixes an issue where using Shift+Enter to insert a line break (\n) in the Portable Text input would not work as expected in Safari
Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
renovate[bot] | chore(lockfile): update dependency @​tanstack/react-virtual to v3.11.3 (#​8432) | ee48358
renovate[bot] | chore(deps): update pnpm to v9.15.4 (#​8435) | b544969
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.7 (#​8434) | ac0f20c
renovate[bot] | chore(deps): update dependency framer-motion to v12 (#​8438) | 465d9f2
ecospark[bot] | chore(prettier): fix unformatted files 🤖 ✨ (#​8439) | ca0adf9
Rostislav Melkumyan | fix(cli): apply write token (#​8450) | 11dff40
RitaDias | fix(cli): fix issue where core sanity types were appearing in the validation for schemas and documents (#​8445) | 81a3bc6
Bjørge Næss | fix: set strictRequires to auto when building auto updating studios (#​8367) | 01a9cd9
Bjørge Næss | chore(deps): upgrade vite (back) to v6 (#​8370) | fdca354
Cody Olsen | fix(presentation): use live content API for loaders (#​8429) | 86e5af8
renovate[bot] | fix(deps): Update dev-non-major (#​8461) | 53b8009
Bjørge Næss | fix(migrate): always use raw perspective for migrations (#​8467) | c317461
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.28.0 (#​8448) | 8e7c346
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.30.1 (#​8479) | b6ebfb7
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.30.2 (#​8485) | f4600d7
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​8477) | e5c8951
renovate[bot] | fix(deps): update dependency @​portabletext/block-tools to ^1.1.4 (#​8446) | 29a712c
renovate[bot] | fix(deps): update dependency groq-js to ^1.15.0 (#​8481) | 763561c
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8486) | 5891966
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.18 (#​8487) | 0e51cbe
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.8 (#​8488) | 5cf7afc
renovate[bot] | chore(deps): update dependency vitest to v2.1.9 (#​8489) | 60f2503
renovate[bot] | chore(deps): update dependency @​sanity/visual-editing to v2.12.12 (#​8493) | 8f6f088

v3.72.1

Compare Source

🐛 Notable bugfixes

  • Fixes an issue where GraphQL union reference types caused problems in GraphQL schema generation.

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Carolina Gonzalez | fix: remove references array from GraphQL union references generation (#​8436) | b5b5b6e

v3.72.0

Compare Source

✨ Highlights

Improved content serialization for copy-pasting in the Portable Text Editor

We’ve enhanced the way content is serialized to text/html when copying from a Portable Text input. Advanced formatting, such as lists and links, is now more reliably preserved when pasting into other applications like Notion or Word.

Additionally, copy-pasting between Portable Text fields in different documents is now more consistent. When pasting, Portable Text Editor (PTE) will intelligently filter out unsupported object types and annotations, ensuring that the rest of the content is pasted seamlessly.

🐛 Notable bugfixes

  • Fixes an issue where referencing a type of the same kind of document within a document would cause a maximum call stack size exceeded error during GraphQL schema generation.
  • Fixes an issue in which the history would fail to load if user opened the History → Review Changes → History panel.
  • Fixes an issue where Shopify Hydrogen, Remix and Astro apps with embedded studios using Presentation would see an error about calling env on undefined.

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Jordan Lawrence | refactor: moving calendar inputs from scheduled pub. to core/components (#​8338) | 2bb3a89
Pedro Bonamin | chore(structure): remove TimelineStore from <DocumentPaneProvider/> (#​8271) | ba00f34
Ash | feat(test-studio): add Cross Dataset Reference error replication | 4eb7fa1
Ash | fix(@​sanity/schema): allow Cross Dataset References in Portable Text blocks | 23b2b6a
RitaDias | test(e2e): make e2e sturdier (#​8348) | 70b6497
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.4 (#​8334) | 576bf44
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.24.0 (#​8337) | 4a9a29a
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.20 (#​8353) | 7418d2e
renovate[bot] | fix(deps): update dependency @​sanity/presentation-comlink to ^1.0.2 (#​8354) | 1828497
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.27.0 (#​8357) | 7f934e5
renovate[bot] | chore(deps): update dependency @​sanity/visual-editing-csm to v2 (#​8358) | 5df6759
renovate[bot] | fix(deps): update dependency @​portabletext/block-tools to ^1.1.2 (#​8360) | d924950
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.25.0 (#​8368) | c367854
renovate[bot] | fix(deps): update dependency @​sanity/preview-url-secret to ^2.1.1 (#​8356) | eb13847
renovate[bot] | chore(deps): update react monorepo (#​8375) | 8eb32e2
renovate[bot] | chore(deps): update dev-non-major (#​8374) | 067ace2
renovate[bot] | chore(deps): update dependency @​sanity/visual-editing-csm to ^2.0.1 (#​8373) | 5daded1
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.27.1 (#​8376) | 7eebb60
renovate[bot] | fix(deps): update dependency @​sanity/presentation-comlink to ^1.0.3 (#​8377) | 3dc4058
renovate[bot] | fix(deps): update dependency @​sanity/preview-url-secret to ^2.1.2 (#​8378) | 6019bb7
Cody Olsen | fix(presentation): support pt::text in live queries (#​8380) | 691aad1
Knut Melvær | Update Studio photo (#​8389) | 5dc4a6b
Carolina Gonzalez | fix(graphql): add custom logic for reference unions (#​8350) | cdeeae6
renovate[bot] | fix(deps): update dependency @​sanity/preview-url-secret to ^2.1.3 (#​8385) | ef41c78
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.26.0 (#​8386) | be47ff9
renovate[bot] | chore(deps): update dependency turbo to ^2.3.4 (#​8396) | af88596
renovate[bot] | chore(deps): update dev-non-major (#​8397) | 3c3d645
renovate[bot] | fix(deps): update dependency @​sanity/template-validator to ^2.4.0 (#​8390) | 645db7b
Jordan Lawrence | feat: support for sticky params and intent operations (#​8256) | 1269760
Snorre Eskeland Brekke | chore(comments): exposes more comment details as internal exports (#​8336) | 25a3a2e
Pedro Bonamin | feat(core): add unstable useObserveDocument hook (#​8407) | b693819
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​8414) | bd53c3a
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8415) | 623550d
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.17 (#​8416) | 17911eb
renovate[bot] | fix(deps): update dependency @​portabletext/block-tools to ^1.1.3 (#​8399) | 6780bcb
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.26.2 (#​8400) | 287dfa4
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.5 (#​8417) | 2d28402
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.6 (#​8420) | 1ebb974
Pedro Bonamin | fix(structure): do not set history inspector height to 0 (#​8421) | abb0b2e
Cody Olsen | fix: remove process.env.SANITY_STUDIO_PRESENTATION_ENABLE_LIVE_DRAFT_EVENTS (#​8401) | 68b7fa3
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.26.3 (#​8423) | 0fe8d70
renovate[bot] | fix(deps): update dependency get-it to ^8.6.7 (#​8424) | 1f0777e
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.27.2 (#​8426) | a2df043
renovate[bot] | chore(deps): update dependency @​sanity/visual-editing-csm to ^2.0.2 (#​8427) | 32b5ce9
renovate[bot] | fix(deps): update dependency @​sanity/preview-url-secret to ^2.1.4 (#​8431) | b8497c3
renovate[bot] | fix(deps): update dependency @​sanity/presentation-comlink to ^1.0.4 (#​8428) | 24a74e9
renovate[bot] | fix(deps): Update dev-non-major (#​8430) | 2092b7e

v3.71.2

Compare Source

🐛 Notable bugfixes

  • Fixes a regression causing the perspective switcher in the Presentation tool to reload the iframe and lose connection with loaders, causing the perspective to fail switching. It now actually switches the perspective. ❤

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Cody Olsen | fix(presentation): perspective switching regression (#​8383) | 9caf5d8

v3.71.1

Compare Source

🐛 Notable bugfixes

  • Fixes react module import error affecting production builds of auto-updating studios.

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Bjørge Næss | fix: revert back to vite v5 (#​8362) | 03fa6f1

v3.71.0

Compare Source

✨ Highlights
The @sanity/presentation codebase has been migrated into the sanity codebase

The @sanity/presentation codebase has been migrated into the sanity codebase. We've always recommended using Presentation Tool by importing it from sanity/presentation, like so:

// sanity.config.ts
import {defineConfig} from 'sanity'
import {presentationTool} from 'sanity/presentation'
import {structureTool} from 'sanity/structure'

export default defineConfig({
  plugins: [presentationTool(), structureTool()]
})

If you've been following this pattern then this change won't impact you in any way.

If you've been installing @sanity/presentation and are using it directly (we've sometimes suggested this to let folks try out bugfixes before they ship in the next release of sanity):

// sanity.config.ts
import {defineConfig} from 'sanity'
import {presentationTool} from '@&#8203;sanity/presentation'
import {structureTool} from 'sanity/structure'

export default defineConfig({
  plugins: [presentationTool(), structureTool()]
})

Then you need to search/replace all from '@&#8203;sanity/presentation' statements in your codebase with from 'sanity/presentation', and uninstall @sanity/presentation, as it'll no longer receive updates.

Other features
  • Adds disableActions option to array fields for disabling various array input capabilities.
🐛 Notable bugfixes
  • Fixes an issue preventing keyboard navigation to edit buttons for annotation and inline objects in the Portable Text Input.
  • Fixes an issue allowing custom form inputs to incorrectly patch a readOnly document by calling onChange.
  • The Presentation Tool's "Documents in use" pane now includes draft and unpublished documents, meaning it actually shows all documents in use, rather than just some of them.
  • No longer warns about duplicate keys when using Presentation on sanity dev with React Strict Mode, or embedded studios on Next.js App Router.
Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
Christian Grøngaard | fix(core): replace @sanity/block-tools with @portabletext/block-tools (#​8260) | 0ff7c7f
Pedro Bonamin | chore(core): update <Resizable/>, accept a position prop and remove duped and export from sanity (#​8250) | 4bca7b9
Pedro Bonamin | chore(core): use displayed value for document title (#​8268) | 9a5fee3
Pedro Bonamin | chore(core): update diffValue to accept a generic Meta property (#​8269) | cef5237
Pedro Bonamin | chore(core): add getTransactionLogs helper (#​8261) | 03e7760
Rostislav Melkumyan | chore(renovate): add @sanity/template-validator (#​8280) | d351c5f
Pedro Bonamin | fix(core): cannot find namespace 'vi' (#​8282) | 3a3cc58
Jordan Lawrence | chore: playwright test wrapper creates router context (#​8258) | a1a80a8
RitaDias | test(e2e): add checks for properties in reference tests (#​8279) | 21aba08
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.22.0 (#​8295) | 847f30e
renovate[bot] | chore(deps): update dev-non-major (#​8267) | c094eb3
Per-Kristian Nordnes | fix(core/form/inputs): fix issue with tabbing to popover toolbar buttons in PT-input (#​5057) | 6c61c9c
renovate[bot] | chore(deps): update github artifact actions to v4 (major) (#​8298) | a7f5230
Jordan Lawrence | feat: Updated Navbar link for Tasks tool (#​8257) | 498b05e
Espen Hovlandsdal | fix(deps): upgrade vite to v6 | 532eb63
Espen Hovlandsdal | chore: temporary override to make vitest use vite 6 | 995eeba
Christian Grøngaard | fix(types): make ObjectSchemaType['__experimental_search'] optional (#​8289) | 7f5c037
Jordan Lawrence | chore: explicitly setting all navbar dropdowns and menu popovers as having default tone (#​8301) | c0d26c0
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8305) | 8d3ac75
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.22.1 (#​8308) | 3a49a11
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.24.4 (#​8307) | ee29383
Bjørge Næss | feat(preview): add experimental support for observing full documents (#​7397) | 56bcd0a
Jordan Lawrence | fix: patching a readOnly document is blocked (#​8292) | 49cc66f
Jordan Lawrence | fix: readOnly pane overrides patch (#​8313) | ad3fd48
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.25.0 (#​8315) | d4175f9
Cody Olsen | refactor: migrate @sanity/presentation codebase (#​8312) | 680930c
renovate[bot] | fix(deps): update dependency @​sanity/mutate to ^0.12.1 (#​8239) | b53b164
renovate[bot] | fix(deps): update dependency @​sanity/preview-url-secret to ^2.1.0 (#​8316) | e8faa3a
Cody Olsen | fix(presentation): always show all documents in use (#​8320) | cbbebd5
Cody Olsen | fix(presentation): avoid duplicate key warning (#​8319) | 48f3e68
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​8327) | 2e1f58e
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​8328) | 698d609
renovate[bot] | chore(deps): update dev-non-major (#​8321) | 4e4dc8f
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.16 (#​8329) | 76609d2
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.22.0 (#​8252) | 5379e4f
renovate[bot] | fix(deps): update dependency @​portabletext/block-tools to ^1.1.0 (#​8285) | ba61226
Rostislav Melkumyan | feat(cli): remote template bootstrapper to support write token (#​8277) | b5e5e9d
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.3 (#​8330) | 148c1ec
renovate[bot] | chore(lockfile): update dependency framer-motion to v11.18.1 (#​8331) | b99d808
Bjørge Næss | feat(form): add support for disabling array input capabilities (#​7615) | 9ce399c
Simeon Griggs | fix: add defineField helper to alt field (#​8333) | fc456ea
Christian Grøngaard | test: fix PTE copy/paste test case (#​8344) | 044f24c
Bjørge Næss | feat(preview): add experimental support for live document id sets (#​7398) | d1dc5b5

v3.70.0

Compare Source

✨ Highlights

Improvements to Visual Editing

This release includes several changes across the @sanity/astro and @sanity/visual-editing packages, resulting in a more stable Visual Editing experience with Astro and a smoother initial setup:

  • A React 19 peer dependency issue was fixed in @sanity/astro version 3.1.9 that caused errors in new projects setup using Astro’s CLI tool.
  • Added support for libraries publishing pre-compiled code with the React Compiler to the Astro codebase.
  • Previously, Visual Editing overlays would lose their titles/preview information after a change had been made when working with an Astro project. This is now fixed.

Other features

  • The sanity package now exports an experimental EditPortal component, which allows users to create Dialog or Popover components that include Presence and scroll virtualization out of the box, like so:
import React, {useRef, useState} from 'react'
+import {EditPortal} from 'sanity'

 export const CustomFormDialog: React.FC<Props> = ({parentProps, paths, onClose}) => {
   return (
-     <Dialog header="Edit Link" id="edit-link" animate width={600} onClose={onClose} zOffset={1000}>
+     <EditPortal header="Edit Link" id="edit-link" animate width={600} onClose={onClose} zOffset={1000}>
       ...rest
-      </Dialog>
+     </EditPortal>

🐛 Notable bugfixes

  • Fixes a case where the commands schema extract, manifest extract, graphql deploy, documents validate or schema validate would never complete.
  • Fixes an issue in Vision where the cursor would sometimes jump to the beginning of the editor.

Install or upgrade Sanity Studio

To initiate a new Sanity Studio project or upgrade an existing one, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

If you are updating from a version earlier than 3.37.0, you should also check out this article to ensure your dependencies are up to date.

📓 Full changelog

Author | Message | Commit
------------ | ------------- | -------------
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.20.2 (#​8219) | 5ddfe63
renovate[bot] | chore(deps): update typescript-tooling (#​8210) | fb1cf5b
renovate[bot] | fix(deps): update dependency get-it to ^8.6.6 (#​8221) | 17e10ca
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.19 (#​8222) | 07651a5
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.20.3 (#​8223) | a363bba
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.24.3 (#​8213) | 47577ea
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.21.0 (#​8227) | 5c28f4f
Rostislav Melkumyan | feat(cli): skip directories without .env.example when bootstrapping remote template (#​8216) | 86c6ab1
Snorre Eskeland Brekke | fix: ensures singleworkspace falls back to the name 'default' as expected in all contexts (#​8228) | fe708e8
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.21.1 (#​8234) | 26b64c7
Pedro Bonamin | chore(core): export EditPortal from sanity (#​8229) | ab31417
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.21.1 (#​8230) | 9e624fa
Bjørge Næss | fix(ci): pin ubuntu version for e2e component tests to 22.04 (#​8245) | b3cce81
Pedro Bonamin | fix(core): support serverDocumentActions flag in plugins (#​8247) | 78318f3
Rostislav Melkumyan | feat(cli): slim down remote test template (#​8224) | 41580c4
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​8244) | 256ffac
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.14 (#​8246) | 2664f0f
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.11.2 (#​8248) | f3151c3
Magnus Holm | fix(cli): explicitly exit workers when they're done (#​8226) | 104b74c
Christian Grøngaard | fix(block-tools): "soft" deprecate in favour of @​portabletext/block-tools (#​8254) | 885cfe0
Pedro Bonamin | chore(core): add <AvatarSkeleton /> component (#​8249) | 0ab9c5b
Pedro Bonamin | fix(vision): debounce type setState to fix cursor jump (#​8238) | 15cba9a
Ash | feat(sanity): include _id field in groq2024 searches (#​8237) | e0a2b6d
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.21.2 (#​8253) | 39f8900
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.15 (#​8259) | 9d362e1
renovate[bot] | chore(deps): update dev-non-major (#​8240) | 8299462
Christian Grøngaard | test: fix @​portabletext/block-tools alias (#​8262) | 7c2a68b
ecospark[bot] | chore(prettier): fix unformatted files 🤖 ✨ (#​8263) | 5505240
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.21.3 ([#​8265](https://redirect.github.com/sanity-i


Configuration

📅 Schedule: Branch creation - "before 4am on monday" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).

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

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 added the dependencies Pull requests that update a dependency file label Dec 23, 2024
@renovate renovate bot force-pushed the renovate/apps-dependencies branch 3 times, most recently from faed3c1 to 3af20c6 Compare January 8, 2025 22:12
@renovate renovate bot force-pushed the renovate/apps-dependencies branch 2 times, most recently from 297ad14 to da31be6 Compare January 21, 2025 18:00
@renovate renovate bot force-pushed the renovate/apps-dependencies branch 4 times, most recently from 2c0ea98 to 75a47f6 Compare January 28, 2025 18:27
@renovate renovate bot force-pushed the renovate/apps-dependencies branch 6 times, most recently from 71e230c to 2c01082 Compare February 9, 2025 13:11
@renovate renovate bot force-pushed the renovate/apps-dependencies branch from 2c01082 to 10efefe Compare February 11, 2025 22:15
@renovate renovate bot force-pushed the renovate/apps-dependencies branch from 10efefe to 21f7e38 Compare February 13, 2025 14:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants