-
Notifications
You must be signed in to change notification settings - Fork 15
chore(deps): update apps dependencies #352
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
878b526 to
b82edf2
Compare
b82edf2 to
6d0a5e7
Compare
6d0a5e7 to
f211bc3
Compare
f211bc3 to
4b3eb20
Compare
4b3eb20 to
5d41f04
Compare
5d41f04 to
ddfd5ca
Compare
664a85e to
ee27ef7
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
ee27ef7 to
16c0a50
Compare
16c0a50 to
3eca6df
Compare
3eca6df to
18bf8f0
Compare
18bf8f0 to
b42020d
Compare
stipsan
approved these changes
Nov 4, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.5.6->^0.5.7^0.9.4->^0.9.5^4.3.0->^4.4.1^8.1.4->^8.2.11^7.3.0->^7.12.0^1.1.0->^1.2.0^4.0.0->^4.13.0^19.1.6->^19.2.2^19.1.5->^19.2.2^0.11.1->^0.11.3^19.1.0->^19.2.0^19.1.0->^19.2.0^4.0.0->^4.13.0^6.1.18->^6.1.19^5.8.3->^5.9.3Release Notes
delucis/astro-embed (@astro-community/astro-embed-youtube)
v0.5.7Compare Source
Patch Changes
c00ac0ab0253d7439d57de0b986317f55c66f291Thanks @echolocator! - Add support forstyleattribute in<YouTube>componentwithastro/language-tools (@astrojs/check)
v0.9.5Patch Changes
d415d4e: When no errors or warnings are detected, display "0 errors" or "0 warnings" in a dimmed color on the console instead of red or yellow.withastro/astro (@astrojs/react)
v4.4.1Compare Source
Patch Changes
e3175d9Thanks @GameRoMan! - Updatesviteversion to fix CVEv4.4.0Compare Source
Minor Changes
#14386
f75f446Thanks @yanthomasdev! - Stabilizes the formerly experimentalgetActionState()andwithState()functions introduced in@astrojs/reactv3.4.0 used to integrate Astro Actions with React 19'suseActionState()hook.This example calls a
likeaction that accepts apostIdand returns the number of likes. Pass this action to thewithState()function to apply progressive enhancement info, and apply touseActionState()to track the result:You can also access the state stored by
useActionState()from your action handler. CallgetActionState()with the API context, and optionally apply a type to the result:If you were previously using this experimental feature, you will need to update your code to use the new stable exports:
// src/components/Form.jsx import { actions } from 'astro:actions'; -import { experimental_withState } from '@​astrojs/react/actions'; +import { withState } from '@​astrojs/react/actions'; import { useActionState } from "react";// src/actions/index.ts import { defineAction, type SafeResult } from 'astro:actions'; import { z } from 'astro:schema'; -import { experimental_getActionState } from '@​astrojs/react/actions'; +import { getActionState } from '@​astrojs/react/actions';v4.3.1Compare Source
Patch Changes
c24a8f4Thanks @jsparkdev! - Updatesviteversion to fix CVEwithastro/astro (@astrojs/vercel)
v8.2.11Compare Source
Patch Changes
#14570
c96711dThanks @matthewp! - Fix regression in 8.2.7: validate densities-based srcset widths against configured sizesWhen using
densitieswith the Vercel image adapter, calculated widths were not being validated against Vercel's configured sizes list. This caused images to fail when using densities, as Vercel would reject the invalid widths.This fix ensures densities-calculated widths are mapped to valid configured sizes, matching the behavior already implemented for the
widthsprop.v8.2.10Compare Source
Patch Changes
9261996Thanks @florian-lefebvre! - Fixes a bug that caused too many files to be bundled in SSRv8.2.9Compare Source
Patch Changes
#14473
d9634d3Thanks @florian-lefebvre! - Fixes a bug that caused too many files to be bundled in SSRUpdated dependencies [
b8ca69b]:v8.2.8Compare Source
Patch Changes
1e2499e]:v8.2.7Compare Source
Patch Changes
#14039
da4182dThanks @ematipico! - Fixes a bug whereexperimentalStaticHeadersdid not work as expected.#14289
ed493a6Thanks @ascorbic! - Fixes a bug that caused invalid image sizes to be generated when the requested widths were larger than the source imagev8.2.6Compare Source
Patch Changes
4d16de7]:v8.2.5Compare Source
Patch Changes
0567fb7]:v8.2.4Compare Source
Patch Changes
f4e8889]:v8.2.3Compare Source
Patch Changes
42ef004Thanks @jat001! - Changes the default Node.js version of Vercel functions to 22v8.2.2Compare Source
Patch Changes
de5a253Thanks @RobbieTheWagner! - Allow settingdomainstoundefinedinimagesConfigso thatremotePatternscan be better utilized for images from a variety of domains.v8.2.1Compare Source
Patch Changes
9261996Thanks @florian-lefebvre! - Fixes a bug that caused too many files to be bundled in SSRv8.2.0Compare Source
Minor Changes
#13965
95ece06Thanks @ematipico! - Adds support for the experimental static headers Astro feature.When the feature is enabled via option
experimentalStaticHeaders, and experimental Content Security Policy is enabled, the adapter will generateResponseheaders for static pages, which allows support for CSP directives that are not supported inside a<meta>tag (e.g.frame-ancestors).Patch Changes
#13917
e615216Thanks @ascorbic! - The responsive images feature introduced behind a flag in v5.0.0 is no longer experimental and is available for general use.The new responsive images feature in Astro automatically generates optimized images for different screen sizes and resolutions, and applies the correct attributes to ensure that images are displayed correctly on all devices.
Enable the
or component, or configure a default
image.responsiveStylesoption in your Astro config. Then, set alayoutattribute on anyimage.layout, for instantly responsive images with automatically generatedsrcsetandsizesattributes based on the image's dimensions and the layout type.Displaying images correctly on the web can be challenging, and is one of the most common performance issues seen in sites. This new feature simplifies the most challenging part of the process: serving your site visitor an image optimized for their viewing experience, and for your website's performance.
For full details, see the updated Image guide.
Migration from Experimental Responsive Images
The
experimental.responsiveImagesflag has been removed, and all experimental image configuration options have been renamed to their final names.If you were using the experimental responsive images feature, you'll need to update your configuration:
Remove the experimental flag
export default defineConfig({ experimental: { - responsiveImages: true, }, });Update image configuration options
During the experimental phase, default styles were applied automatically to responsive images. Now, you need to explicitly set the
responsiveStylesoption totrueif you want these styles applied.export default defineConfig({ image: { + responsiveStyles: true, }, });The experimental image configuration options have been renamed:
Before:
After:
Component usage remains the same
The
layout,fit, andpositionprops on<Image>and<Picture>components work exactly the same as before:If you weren't using the experimental responsive images feature, no changes are required.
Please see the Image guide for more information on using responsive images in Astro.
v8.1.5Compare Source
Patch Changes
4a8f193Thanks @moonclavedev! - Handle SVG images correctly in build image servicesanity-io/client (@sanity/client)
v7.12.0Compare Source
Features
v7.11.2Compare Source
Bug Fixes
v7.11.1Compare Source
Bug Fixes
v7.11.0Compare Source
Features
v7.10.0Compare Source
Features
v7.9.0Compare Source
Features
v7.8.2Compare Source
Bug Fixes
v7.8.1Compare Source
Bug Fixes
providerproperty toCurrentSanityUsertype (#1115) (5d98eca)v7.8.0Compare Source
Features
baseIdandversionIdinstead ofdocument(#1108) (aaa1042)v7.7.0Compare Source
Features
isHttpErrormethod (and sharedHttpErrorinterface) (#1112) (98ee6d3)sanity-io/image-url (@sanity/image-url)
v1.2.0Compare Source
Minor Changes
c48fd9fThanks @stipsan! - add placeholder object for when image is being uploaded (#76)Patch Changes
c7370d4Thanks @RitaDias! - - when still uploading return a placeholder image via dataurl (#84)All notable changes will be documented in this file.
sanity-io/sanity (@sanity/vision)
v4.13.0Compare Source
Bug Fixes
v4.12.0Compare Source
Note: Version bump only for package @sanity/vision
v4.11.0Compare Source
Bug Fixes
2913961+renovate[bot]@users.noreply.github.com)2913961+renovate[bot]@users.noreply.github.com)v4.10.3Compare Source
Bug Fixes
v4.10.2Compare Source
Note: Version bump only for package @sanity/vision
v4.10.1Compare Source
Note: Version bump only for package @sanity/vision
v4.10.0Compare Source
Bug Fixes
v4.9.0Compare Source
Bug Fixes
v4.8.1Compare Source
Note: Version bump only for package @sanity/vision
v4.8.0Compare Source
Bug Fixes
v4.7.0Compare Source
Bug Fixes
v4.6.1Compare Source
Bug Fixes
v4.6.0Compare Source
Bug Fixes
v4.5.0Compare Source
Note: Version bump only for package @sanity/vision
v4.4.1Compare Source
Bug Fixes
v4.4.0Compare Source
Bug Fixes
v4.3.0Compare Source
Bug Fixes
v4.2.0Compare Source
Bug Fixes
v4.1.1Compare Source
Note: Version bump only for package @sanity/vision
v4.1.0Compare Source
Bug Fixes
v4.0.1Compare Source
Note: Version bump only for package @sanity/vision
theisel/astro-portabletext (astro-portabletext)
v0.11.3Compare Source
Bug Fixes
v0.11.2Compare Source
Bug Fixes
facebook/react (react)
v19.2.0Compare Source
Below is a list of all new features, APIs, and bug fixes.
Read the React 19.2 release post for more information.
New React Features
<Activity>: A new API to hide and restore the UI and internal state of its children.useEffectEventis a React Hook that lets you extract non-reactive logic into an Effect Event.cacheSignal(for RSCs) lets your know when thecache()lifetime is over.New React DOM Features
resume: to resume a prerender to a stream.resumeAndPrerender: to resume a prerender to HTML.resumeToPipeableStream: to resume a prerender to a stream.resumeAndPrerenderToNodeStream: to resume a prerender to HTML.prerenderAPIs to return apostponedstate that can be passed to theresumeAPIs.Notable changes
<ViewTransition>Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.prerender,renderToReadableStream) to server-side-rendering APIs for Node.js:IDs generated by useIdAll Changes
React
<Activity />was developed over many years, starting beforeClassComponent.setState(@acdlite @sebmarkbage and many others)%oplaceholder (@eps1lon #34198)useDeferredValueloop in popstate event (@acdlite #32821)useDeferredValue(@acdlite #34376)cacheSignal(@sebmarkbage #33557)React DOM
:for IDs generated byuseId(@sebmarkbage, @eps1lon: #32001, #33342#33099, #33422)nonceto be used on hoistable styles (@Andarist #32461)React.useinsideReact.lazy-ed Component (@hi-ogawa #33941)progressiveChunkSizeoption for server-side-rendering APIs (@sebmarkbage #33027)React Server Components
<img>and<link>using hints before they're rendered (@sebmarkbage #34604)Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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.
This PR has been generated by Mend Renovate using a curated preset maintained by
. View repository job log here