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

chore(deps): update non-major #301

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

chore(deps): update non-major #301

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sanity/icons (source) 3.4.0 -> 3.5.0 age adoption passing confidence
@sanity/react-loader (source) 1.10.18 -> 1.10.23 age adoption passing confidence
@sanity/ui (source) 2.8.23 -> 2.9.0 age adoption passing confidence
@sanity/vision (source) 3.64.1 -> 3.65.1 age adoption passing confidence
next-sanity (source) 9.8.13 -> 9.8.19 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.1 age adoption passing confidence
prettier-plugin-packagejson 2.5.3 -> 2.5.6 age adoption passing confidence
prettier-plugin-tailwindcss 0.6.8 -> 0.6.9 age adoption passing confidence
sanity (source) 3.64.1 -> 3.65.1 age adoption passing confidence
tailwindcss (source) 3.4.14 -> 3.4.15 age adoption passing confidence
typescript (source) 5.6.3 -> 5.7.2 age adoption passing confidence

Release Notes

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

v3.5.0

Compare Source

Features
Bug Fixes
sanity-io/visual-editing (@​sanity/react-loader)

v1.10.23

Dependencies

v1.10.22

Bug Fixes

v1.10.21

Dependencies

v1.10.20

Bug Fixes
Dependencies

v1.10.19

Dependencies
sanity-io/ui (@​sanity/ui)

v2.9.0

Compare Source

Features
  • support neutral and suggest tones (18c08b8)
  • theme: add new tones (fabe61c)
Bug Fixes
  • figma: support new color tones (31d8c48)
  • theme: adjust color tokens (d8b3181)
  • theme: generate tones based on constants (7252249)
  • theme: propagate hue based on tone setting (c11dc3d)
  • theme: use legacy types correctly (79510fe)
  • toast: use neutral tone for info status (cb56633)

v2.8.26

Compare Source

Bug Fixes
  • popover: render the child when a reference element is provided (2c1bf33)

v2.8.25

Compare Source

Bug Fixes

v2.8.24

Compare Source

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

v3.65.1

Compare Source

🐛 Notable bugfixes
  • Fixes a regression introduced in v3.65.0 where array list references rendered too lazily requering focus or clicking to render, when initially "below the fold" of the browser window.
  • Fixes an issue where setting options.sanityCreate.exclude: true on a document type wasn't correctly hiding "Start in Sanity Create" button for new documents of that type.
  • Fixes issue where when in presentation it was impossible to open the review section in the History Panel
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: opt-out @tanstack/react-virtual from React Compiler (#​7891) | db5495b
Snorre Eskeland Brekke | fix: Start in Create type exclusion now recursively checks for sanityCreate.exclude options (#​7890) | af03b86
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.19.1 (#​7894) | 0bbc018
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.14 (#​7895) | c5ed867

v3.65.0

Compare Source

✨ Highlights
React Compiler Beta

The sanity and @sanity/vision packages are now precompiled with the React Compiler.
So far, 1,231 out of 1,411 components have been compiled, resulting in a 20%-30% overall reduction in render time and latency. We anticipate even greater improvements as we refactor the remaining 180 components to support auto-memoization.

For several weeks, we’ve already been shipping key packages—including our design system (@​sanity/ui), the PortableText editor (@​portabletext/editor), and react-rx (responsible for state management across Sanity Studio)—precompiled with the React Compiler.

We continue to see impressive results in our profiling and analysis, and with the release of React Compiler in beta we are excited to add support for auto-memoizing your own studio code:

pnpm add react-compiler-runtime@beta && pnpm add --save-dev babel-plugin-react-compiler@beta eslint-plugin-react-compiler@beta
yarn add react-compiler-runtime@beta && yarn add --save-dev babel-plugin-react-compiler@beta eslint-plugin-react-compiler@beta
npm install --save-exact react-compiler-runtime@beta && npm install --save-exact --save-dev babel-plugin-react-compiler@beta eslint-plugin-react-compiler@beta

And in your sanity.cli.ts add:

import {defineCliConfig} from 'sanity/cli'

export default defineCliConfig({
   api: {
      projectId: 'abc123',
      dataset: 'production',
   },
   reactStrictMode: true,
+  reactCompiler: {target: '18'},
})

If you decide to give the React Compiler a try make sure you share your feedback and experience using it with the Working Group!

Sanity plugin authors, provided they're using @sanity/pkg-utils, can also ship pre-compiled plugins by running:

pnpm add react-compiler-runtime@beta && pnpm add --save-dev @​sanity/pkg-utils@latest babel-plugin-react-compiler@beta eslint-plugin-react-compiler@beta
yarn add react-compiler-runtime@beta && yarn add --save-dev @​sanity/pkg-utils@latest babel-plugin-react-compiler@beta eslint-plugin-react-compiler@beta
npm install --save-exact react-compiler-runtime@beta && npm install --save-exact --save-dev @​sanity/pkg-utils@latest babel-plugin-react-compiler@beta eslint-plugin-react-compiler@beta

and changing the package.config.ts to:

import {defineConfig} from '@​sanity/pkg-utils'

export default defineConfig({
   // ...
+  babel: {reactCompiler: true},
+  reactCompilerOptions: {target: '18'},
})
History UI updates

The history inspector UI has been updated to display edits collapsed into the Published event they belong to. From and To revision selectors are added to the top of the inspector.

history

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 | feat: add support for React Compiler beta (#​7702) | 8aace40
renovate[bot] | chore(lockfile): update dependency react-focus-lock to v2.13.2 (#​7848) | e8c7e68
renovate[bot] | chore(lockfile): update dependency @​sanity/asset-utils to v2.2.0 (#​7847) | b7b0a84
renovate[bot] | chore(deps): update dependency turbo to ^2.3.0 (#​7846) | c52a456
Espen Hovlandsdal | chore(cli): temporarily disable telemetry tests (#​7845) | 9b5f565
Pedro Bonamin | feat(structure): History UI updates (#​7462) | 16532a8
Pedro Bonamin | fix(core): discard announcements dialog onClickOutside (#​7863) | 7888272
ecospark[bot] | fix(deps): update React Compiler dependencies 🤖 ✨ (#​7872) | 6fbae0b
Cody Olsen | chore(ci): max react compiler warnings are now 79 | 363235e
ecospark[bot] | chore(deps): dedupe pnpm-lock.yaml (#​7873) | 1ebdc17
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.7 (#​7874) | 456187c
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.11.3 (#​7865) | a43bf85
Bjørge Næss | fix(telemetry): log (well known) workspace and dataset names (#​7859) | b97d4aa
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.8.25 (#​7876) | ecce434
renovate[bot] | fix(deps): Update dev-non-major (#​7875) | 4baafb1
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.18.5 (#​7881) | 00cc366
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.13 (#​7880) | 71a5524

v3.64.3

Compare Source

🐛 Notable bugfixes

  • Fixes a regression introduced in v3.64.1 that caused Portable Text content to be hidden when part of a read-only document.

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.11.1 (#​7861) | 766548c

v3.64.2

Compare Source

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.8.0 (#​7810) | 8730bb0
renovate[bot] | chore(deps): update typescript-tooling (#​7812) | da8165d
renovate[bot] | fix(deps): Update dev-non-major (#​7809) | dff7a6c
renovate[bot] | chore(lockfile): update dependency sanity-plugin-mux-input to v2.4.0 (#​7814) | 3d16064
renovate[bot] | chore(deps): update pnpm to v9.13.1 (#​7817) | 42877ff
renovate[bot] | chore(lockfile): update dependency @​sanity/asset-utils to v2.1.0 (#​7818) | 4dab0b9
Pedro Bonamin | fix(core): add opt out option to studioAnnouncements (#​7820) | 3efc59d
Pedro Bonamin | chore(core): update announcements card close icon (#​7822) | 89b49b2
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.18.3 (#​7821) | 9b55123
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.10.0 (#​7823) | a573d22
renovate[bot] | fix(deps): update dependency @​sanity/insert-menu to v1.0.12 (#​7825) | 974d18b
Christian Grøngaard | refactor(core): remove unneeded PTE event handling (#​7831) | f75230c
Christian Grøngaard | refactor(core): remove PTE connection event handling (#​7830) | 962ca8c
renovate[bot] | fix(deps): Update dev-non-major (#​7826) | 9e59750
renovate[bot] | fix(deps): update dependency react-rx to ^4.1.6 (#​7833) | 3be6e81
renovate[bot] | chore(deps): update typescript-tooling (#​7836) | 0a1f948
renovate[bot] | fix(deps): update dependency @​portabletext/editor to ^1.10.2 (#​7829) | b3407b8
renovate[bot] | fix(deps): update dependency @​sanity/client to ^6.22.5 (#​7837) | 2798bc9
renovate[bot] | fix(deps): update dependency @​sanity/ui to ^2.8.24 (#​7832) | fffa658
renovate[bot] | fix(deps): update dependency @​sanity/presentation to v1.18.4 (#​7839) | 95e3cc0
renovate[bot] | fix(deps): Update dev-non-major (#​7841) | 22d28bc
Robin Pyon | fix: update create integration copy, use correct chevron icons (#​7842) | 1d5d171

sanity-io/next-sanity (next-sanity)

v9.8.19

Compare Source

Bug Fixes

v9.8.18

Compare Source

Bug Fixes

v9.8.17

Compare Source

Bug Fixes

v9.8.16

Compare Source

Bug Fixes

v9.8.15

Compare Source

Bug Fixes

v9.8.14

Compare Source

Bug Fixes
prettier/prettier (prettier)

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)

v2.5.6

Compare Source

Bug Fixes
  • deps: update dependency sort-package-json to v2.12.0 (81ad3b6)

v2.5.5

Compare Source

v2.5.4

Compare Source

tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.6.9

Compare Source

  • Introduce tailwindStylesheet option to replace tailwindEntryPoint (#​330)
tailwindlabs/tailwindcss (tailwindcss)

v3.4.15

Compare Source

  • Bump versions for security vulnerabilities (#​14697)
  • Ensure the TypeScript types for the boxShadow theme configuration allows arrays (#​14856)
  • Set fallback for opacity variables to ensure setting colors with the selection:* variant works in Chrome 131 (#​15003)
microsoft/TypeScript (typescript)

v5.7.2

Compare Source


Configuration

📅 Schedule: Branch creation - "every 3 months on the first day of the month" (UTC), 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 has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

@renovate renovate bot requested a review from a team as a code owner November 14, 2024 19:57
Copy link

vercel bot commented Nov 14, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
template-nextjs-personal-website ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 29, 2024 1:11pm

Copy link

socket-security bot commented Nov 14, 2024

@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v3.4.15 chore(deps): update non-major Nov 15, 2024
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