sanity-io / visual-editing

https://visual-editing-studio.sanity.build
MIT License
37 stars 20 forks source link

chore(deps): update app dependencies (main) #2138

Closed renovate[bot] closed 2 weeks ago

renovate[bot] commented 2 weeks ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@next/bundle-analyzer (source) 15.0.4-canary.5 -> 15.0.4-canary.6 age adoption passing confidence
@vercel/remix (source) ^2.13.1 -> ^2.14.0 age adoption passing confidence
eslint-config-next (source) 15.0.4-canary.5 -> 15.0.4-canary.6 age adoption passing confidence
next (source) 15.0.4-canary.5 -> 15.0.4-canary.6 age adoption passing confidence
postcss (source) ^8.4.48 -> ^8.4.49 age adoption passing confidence
postcss (source) 8.4.48 -> 8.4.49 age adoption passing confidence
svelte-check ^4.0.6 -> ^4.0.7 age adoption passing confidence

Release Notes

vercel/next.js (@​next/bundle-analyzer) ### [`v15.0.4-canary.6`](https://redirect.github.com/vercel/next.js/releases/tag/v15.0.4-canary.6) [Compare Source](https://redirect.github.com/vercel/next.js/compare/v15.0.4-canary.5...v15.0.4-canary.6) ##### Core Changes - capture console issues as console errors: [#​72468](https://redirect.github.com/vercel/next.js/issues/72468) - Add expireTag and expirePath APIs: [#​72485](https://redirect.github.com/vercel/next.js/issues/72485) - fix: try/catch access to localStorage within \__NEXT_APP_ISR_INDICATOR useEffect: [#​72362](https://redirect.github.com/vercel/next.js/issues/72362) ##### Misc Changes - Upgrade React from `66855b96-20241106` to `5c56b873-20241107`: [#​72469](https://redirect.github.com/vercel/next.js/issues/72469) - fix(turbopack): Remove self-references from tree shaking results: [#​72567](https://redirect.github.com/vercel/next.js/issues/72567) - Turbopack: Don't run PostCSS on internal assets: [#​72579](https://redirect.github.com/vercel/next.js/issues/72579) ##### Credits Huge thanks to [@​huozhi](https://redirect.github.com/huozhi), [@​kdy1](https://redirect.github.com/kdy1), [@​mischnic](https://redirect.github.com/mischnic), [@​ijjk](https://redirect.github.com/ijjk), and [@​icyJoseph](https://redirect.github.com/icyJoseph) for helping!
vercel/remix (@​vercel/remix) ### [`v2.14.0`](https://redirect.github.com/vercel/remix/blob/HEAD/CHANGELOG.md#v2140) Date: 2024-11-08 ##### Minor Changes - Deprecate `SerializeFrom` in favor of generics because it will be removed in React Router v7 ([#​10173](https://redirect.github.com/remix-run/remix/pull/10173)) - Add deprecation warning to `@remix-run/eslint-config` ([#​10174](https://redirect.github.com/remix-run/remix/pull/10174)) - Add support for `routes.ts` behind `future.unstable_routeConfig` flag to assist with the migration to React Router v7. ([#​10107](https://redirect.github.com/remix-run/remix/pull/10107)) Config-based routing is the new default in React Router v7, configured via the `routes.ts` file in the app directory. Support for `routes.ts` and its related APIs in Remix are designed as a migration path to help minimize the number of changes required when moving your Remix project over to React Router v7. While some new packages have been introduced within the `@remix-run` scope, these new packages only exist to keep the code in `routes.ts` as similar as possible to the equivalent code for React Router v7. When the `unstable_routeConfig` future flag is enabled, Remix's built-in file system routing will be disabled and your project will opted into React Router v7's config-based routing. To enable the flag, in your `vite.config.ts` file: ```ts remix({ future: { unstable_routeConfig: true, }, }); ``` A minimal `routes.ts` file to support Remix's built-in file system routing looks like this: ```ts // app/routes.ts import { flatRoutes } from "@​remix-run/fs-routes"; import type { RouteConfig } from "@​remix-run/route-config"; export const routes: RouteConfig = flatRoutes(); ``` - Log deprecation warnings for v3 future flags ([#​10126](https://redirect.github.com/remix-run/remix/pull/10126)) - Add `@deprecated` annotations to `json`/`defer` utilities ##### Patch Changes - Fix `defaultShouldRevalidate` value when using single fetch ([#​10139](https://redirect.github.com/remix-run/remix/pull/10139)) - Update externally-accessed resource routes warning to cover null usage as well ([#​10145](https://redirect.github.com/remix-run/remix/pull/10145)) ##### Updated Dependencies - [`react-router-dom@6.28.0`](https://redirect.github.com/remix-run/react-router/releases/tag/react-router%406.28.0) - [`@remix-run/router@1.21.0`](https://redirect.github.com/remix-run/react-router/blob/main/packages/router/CHANGELOG.md#1210) ##### Changes by Package - [`create-remix`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/create-remix/CHANGELOG.md#2140) - [`@remix-run/architect`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-architect/CHANGELOG.md#2140) - [`@remix-run/cloudflare`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-cloudflare/CHANGELOG.md#2140) - [`@remix-run/cloudflare-pages`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-cloudflare-pages/CHANGELOG.md#2140) - [`@remix-run/cloudflare-workers`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-cloudflare-workers/CHANGELOG.md#2140) - [`@remix-run/css-bundle`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-css-bundle/CHANGELOG.md#2140) - [`@remix-run/deno`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-deno/CHANGELOG.md#2140) - [`@remix-run/dev`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-dev/CHANGELOG.md#2140) - [`@remix-run/eslint-config`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-eslint-config/CHANGELOG.md#2140) - [`@remix-run/express`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-express/CHANGELOG.md#2140) - [`@remix-run/fs-routes`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-fs-routes/CHANGELOG.md#2140) - [`@remix-run/node`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-node/CHANGELOG.md#2140) - [`@remix-run/react`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-react/CHANGELOG.md#2140) - [`@remix-run/route-config`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-route-config/CHANGELOG.md#2140) - [`@remix-run/routes-option-adapter`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-routes-option-adapter/CHANGELOG.md#2140) - [`@remix-run/serve`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-serve/CHANGELOG.md#2140) - [`@remix-run/server-runtime`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-server-runtime/CHANGELOG.md#2140) - [`@remix-run/testing`](https://redirect.github.com/remix-run/remix/blob/remix%402.14.0/packages/remix-testing/CHANGELOG.md#2140) **Full Changelog**: [`v2.13.1...v2.14.0`](https://redirect.github.com/remix-run/remix/compare/remix@2.13.1...remix@2.14.0)
postcss/postcss (postcss) ### [`v8.4.49`](https://redirect.github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8449) [Compare Source](https://redirect.github.com/postcss/postcss/compare/8.4.48...8.4.49) - Fixed custom syntax without `source.offset` (by [@​romainmenke](https://redirect.github.com/romainmenke)).
sveltejs/language-tools (svelte-check) ### [`v4.0.7`](https://redirect.github.com/sveltejs/language-tools/releases/tag/svelte-check-4.0.7) [Compare Source](https://redirect.github.com/sveltejs/language-tools/compare/svelte-check-4.0.6...svelte-check-4.0.7) - fix: `$props`: infer types for `$bindable`, infer function type from arrow function

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.



This PR has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

vercel[bot] commented 2 weeks ago

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

Name Status Preview Comments Updated (UTC)
live-visual-editing-next ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-astro ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-next ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-next-with-i18n ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-nuxt ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-page-builder-demo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-remix ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-storybook ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-studio ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am
visual-editing-svelte ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 12, 2024 11:51am