withastro / astro

The web framework for content-driven websites. ⭐️ Star to support our work!
https://astro.build
Other
43.84k stars 2.28k forks source link

fix(deps): update all non-major dependencies #11318

Closed renovate[bot] closed 4 days ago

renovate[bot] commented 5 days ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/compiler (source) ^2.8.0 -> ^2.8.1 age adoption passing confidence
@astrojs/react (source) ^3.5.0 -> ^3.6.0 age adoption passing confidence
@changesets/cli (source) ^2.27.5 -> ^2.27.6 age adoption passing confidence
@preact/preset-vite ^2.8.2 -> ^2.8.3 age adoption passing confidence
@solidjs/router ^0.13.5 -> ^0.13.6 age adoption passing confidence
@types/react (source) ^18.2.75 -> ^18.3.3 age adoption passing confidence
@types/react-dom (source) ^18.2.24 -> ^18.3.0 age adoption passing confidence
@vue/compiler-sfc (source) ^3.4.29 -> ^3.4.30 age adoption passing confidence
alpinejs (source) ^3.14.0 -> ^3.14.1 age adoption passing confidence
es-module-lexer ^1.5.3 -> ^1.5.4 age adoption passing confidence
node-mocks-http ^1.14.1 -> ^1.15.0 age adoption passing confidence
react (source) ^18.2.0 -> ^18.3.1 age adoption passing confidence
react-dom (source) ^18.2.0 -> ^18.3.1 age adoption passing confidence
sass ^1.77.5 -> ^1.77.6 age adoption passing confidence
shiki (source) ^1.6.5 -> ^1.9.0 age adoption passing confidence
svelte2tsx (source) ^0.7.9 -> ^0.7.10 age adoption passing confidence
tar ^7.2.0 -> ^7.4.0 age adoption passing confidence
typescript (source) ^5.4.5 -> ^5.5.2 age adoption passing confidence
typescript (source) ~5.4.5 -> ~5.5.2 age adoption passing confidence
typescript-eslint (source) ^7.13.0 -> ^7.13.1 age adoption passing confidence
unified (source) ^11.0.4 -> ^11.0.5 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.3.0 -> ^7.3.4 age adoption passing confidence
vue (source) ^3.4.29 -> ^3.4.30 age adoption passing confidence
web-vitals ^4.1.1 -> ^4.2.0 age adoption passing confidence
zod-to-json-schema ^3.23.0 -> ^3.23.1 age adoption passing confidence

Release Notes

withastro/compiler (@​astrojs/compiler) ### [`v2.8.1`](https://togithub.com/withastro/compiler/releases/tag/%40astrojs/compiler%402.8.1) [Compare Source](https://togithub.com/withastro/compiler/compare/@astrojs/compiler@2.8.0...@astrojs/compiler@2.8.1) ##### Patch Changes - [`0bb2746`](https://togithub.com/withastro/compiler/commit/0bb2746): Allow `data-astro-reload` to take a value
withastro/astro (@​astrojs/react) ### [`v3.6.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/integrations/react/CHANGELOG.md#360) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/react@3.5.0...@astrojs/react@3.6.0) ##### Minor Changes - [#​11234](https://togithub.com/withastro/astro/pull/11234) [`4385bf7`](https://togithub.com/withastro/astro/commit/4385bf7a4dc9c65bff53a30c660f7a909fcabfc9) Thanks [@​ematipico](https://togithub.com/ematipico)! - Adds a new function called `addServerRenderer` to the Container API. Use this function to manually store renderers inside the instance of your container. This new function should be preferred when using the Container API in environments like on-demand pages: ```ts import type { APIRoute } from 'astro'; import { experimental_AstroContainer } from 'astro/container'; import reactRenderer from '@​astrojs/react/server.js'; import vueRenderer from '@​astrojs/vue/server.js'; import ReactComponent from '../components/button.jsx'; import VueComponent from '../components/button.vue'; // MDX runtime is contained inside the Astro core import mdxRenderer from 'astro/jsx/server.js'; // In case you need to import a custom renderer import customRenderer from '../renderers/customRenderer.js'; export const GET: APIRoute = async (ctx) => { const container = await experimental_AstroContainer.create(); container.addServerRenderer({ renderer: reactRenderer }); container.addServerRenderer({ renderer: vueRenderer }); container.addServerRenderer({ renderer: customRenderer }); // You can pass a custom name too container.addServerRenderer({ name: 'customRenderer', renderer: customRenderer, }); const vueComponent = await container.renderToString(VueComponent); return await container.renderToResponse(Component); }; ```
changesets/changesets (@​changesets/cli) ### [`v2.27.6`](https://togithub.com/changesets/changesets/releases/tag/%40changesets/cli%402.27.6) [Compare Source](https://togithub.com/changesets/changesets/compare/@changesets/cli@2.27.5...@changesets/cli@2.27.6) ##### Patch Changes - [#​1392](https://togithub.com/changesets/changesets/pull/1392) [`f295b3e`](https://togithub.com/changesets/changesets/commit/f295b3e560233e2a800f62216febb7061ba66df3) Thanks [@​bluwy](https://togithub.com/bluwy)! - Replace `meow` dependency with `mri` to reduce the number of transitive dependencies - [#​1390](https://togithub.com/changesets/changesets/pull/1390) [`6a3452e`](https://togithub.com/changesets/changesets/commit/6a3452ef1943bfb3a3018168b4b6c14af556fdef) Thanks [@​bluwy](https://togithub.com/bluwy)! - Display `changeset status --verbose` in list form and remove `tty-table` dependency
preactjs/preset-vite (@​preact/preset-vite) ### [`v2.8.3`](https://togithub.com/preactjs/preset-vite/releases/tag/2.8.3) [Compare Source](https://togithub.com/preactjs/preset-vite/compare/2.8.2...2.8.3) #### What's Changed - fix: Devtool flag inconsistencies by [@​rschristian](https://togithub.com/rschristian) in [https://github.com/preactjs/preset-vite/pull/113](https://togithub.com/preactjs/preset-vite/pull/113) - refactor: Use ESBuild in prod if a user does not require Babel by [@​rschristian](https://togithub.com/rschristian) in [https://github.com/preactjs/preset-vite/pull/114](https://togithub.com/preactjs/preset-vite/pull/114) - fix: Ensure `stack-trace` works w/ CJS build by [@​rschristian](https://togithub.com/rschristian) in [https://github.com/preactjs/preset-vite/pull/116](https://togithub.com/preactjs/preset-vite/pull/116) - fix: Ensure sourcemap comments are stripped too by [@​rschristian](https://togithub.com/rschristian) in [https://github.com/preactjs/preset-vite/pull/118](https://togithub.com/preactjs/preset-vite/pull/118) - fix: Sourcemap regex by [@​rschristian](https://togithub.com/rschristian) in [https://github.com/preactjs/preset-vite/pull/120](https://togithub.com/preactjs/preset-vite/pull/120) - Add [@​babel/code-frame](https://togithub.com/babel/code-frame) as a dependency by [@​atikenny](https://togithub.com/atikenny) in [https://github.com/preactjs/preset-vite/pull/122](https://togithub.com/preactjs/preset-vite/pull/122) - docs: Fix API mistake in prerender example & show that iso will discover links automatically by [@​rschristian](https://togithub.com/rschristian) in [https://github.com/preactjs/preset-vite/pull/123](https://togithub.com/preactjs/preset-vite/pull/123) - fix: Stub out `__VITE_PRELOAD__` during prerender by [@​rschristian](https://togithub.com/rschristian) in [https://github.com/preactjs/preset-vite/pull/126](https://togithub.com/preactjs/preset-vite/pull/126) - 2.8.3 by [@​rschristian](https://togithub.com/rschristian) in [https://github.com/preactjs/preset-vite/pull/127](https://togithub.com/preactjs/preset-vite/pull/127) #### New Contributors - [@​atikenny](https://togithub.com/atikenny) made their first contribution in [https://github.com/preactjs/preset-vite/pull/122](https://togithub.com/preactjs/preset-vite/pull/122) **Full Changelog**: https://github.com/preactjs/preset-vite/compare/2.8.2...2.8.3
solidjs/solid-router (@​solidjs/router) ### [`v0.13.6`](https://togithub.com/solidjs/solid-router/blob/HEAD/CHANGELOG.md#0136) ##### Patch Changes - [`7344f69`](https://togithub.com/solidjs/solid-router/commit/7344f69): Handle absolute redirects within `cache` on server - [`8263115`](https://togithub.com/solidjs/solid-router/commit/8263115): Forward absolute redirects inside `cache` from server to client - [`8fbf74a`](https://togithub.com/solidjs/solid-router/commit/8fbf74a): Treat `window.location.hash` as URI encoded - [`e9fd55d`](https://togithub.com/solidjs/solid-router/commit/e9fd55d): fix [#​449](https://togithub.com/solidjs/solid-router/issues/449) No JS submissions not working - [`f311f4a`](https://togithub.com/solidjs/solid-router/commit/f311f4a): fix [#​452](https://togithub.com/solidjs/solid-router/issues/452) useSubmission types/references - [`2f05f37`](https://togithub.com/solidjs/solid-router/commit/2f05f37): Make isRouting more reliable + other fixes - [`618ef17`](https://togithub.com/solidjs/solid-router/commit/618ef17): performance improvement leveraging redirects in loadfn - [`d81473a`](https://togithub.com/solidjs/solid-router/commit/d81473a): usePreloadRoute method pre-release
vuejs/core (@​vue/compiler-sfc) ### [`v3.4.30`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3430-2024-06-22) [Compare Source](https://togithub.com/vuejs/core/compare/v3.4.29...v3.4.30) **Note: this release contains a fix ([#​11150](https://togithub.com/vuejs/core/issues/11150)) that requires `vue-tsc` to also be updated in sync to ^2.0.22. See [#​11196](https://togithub.com/vuejs/core/issues/11196)** ##### Bug Fixes - **compiler-core:** should not remove slot node with `v-else` ([#​11150](https://togithub.com/vuejs/core/issues/11150)) ([e102670](https://togithub.com/vuejs/core/commit/e102670bde00417c3a5b0262c855b297c0e4169e)) - **hydration:** fix css vars hydration mismatch false positive on attr-fallthrough ([#​11190](https://togithub.com/vuejs/core/issues/11190)) ([7ad67ce](https://togithub.com/vuejs/core/commit/7ad67ced26e5f53a47cb42f4834496e4958cb53b)), closes [#​11188](https://togithub.com/vuejs/core/issues/11188) - **hydration:** skip prop mismatch check for directives that mutate DOM in created ([3169c91](https://togithub.com/vuejs/core/commit/3169c914939d02a013b2938aff30dac8525923f8)), closes [#​11189](https://togithub.com/vuejs/core/issues/11189) - **reactivity:** fix side effect computed dirty level ([#​11183](https://togithub.com/vuejs/core/issues/11183)) ([3bd79e3](https://togithub.com/vuejs/core/commit/3bd79e3e5ed960fc42cbf77bc61a97d2c03557c0)), closes [#​11181](https://togithub.com/vuejs/core/issues/11181) [#​11169](https://togithub.com/vuejs/core/issues/11169) - **runtime-core:** ensure unmount dynamic components in optimized mode ([#​11171](https://togithub.com/vuejs/core/issues/11171)) ([220fe24](https://togithub.com/vuejs/core/commit/220fe247484209e62c7f4991902c5335e29c5007)), closes [#​11168](https://togithub.com/vuejs/core/issues/11168) - **runtime-core:** update devtool \__vnode on patch, avoid memory leak during dev ([a959781](https://togithub.com/vuejs/core/commit/a959781dd6f609dcb6f16dd7fa47d3b16895e5ca)), closes [#​11192](https://togithub.com/vuejs/core/issues/11192) - **runtime-dom:** ensure only symbols are explicitly stringified during attribute patching ([#​11182](https://togithub.com/vuejs/core/issues/11182)) ([a2e35d6](https://togithub.com/vuejs/core/commit/a2e35d682db15a592f4270bb0cde70a0e7bdc4a6)), closes [#​11177](https://togithub.com/vuejs/core/issues/11177) - **runtime-dom:** prevent setting state as attribute for custom elements ([#​11165](https://togithub.com/vuejs/core/issues/11165)) ([8ae4c29](https://togithub.com/vuejs/core/commit/8ae4c293adcec28f18114cb6016230a86787e6a9)), closes [#​11163](https://togithub.com/vuejs/core/issues/11163) ##### Performance Improvements - **reactivity:** cache tracking value ([#​11145](https://togithub.com/vuejs/core/issues/11145)) ([7936dae](https://togithub.com/vuejs/core/commit/7936daebceab2ae9461c3b8f256e51020fb7d3ed))
alpinejs/alpine (alpinejs) ### [`v3.14.1`](https://togithub.com/alpinejs/alpine/releases/tag/v3.14.1) [Compare Source](https://togithub.com/alpinejs/alpine/compare/v3.14.0...v3.14.1) ##### Changed - Minor grammar correction in the for directive docs [#​4266](https://togithub.com/alpinejs/alpine/pull/4266) - :bug: Fixes issue with setters accessing deeply nested data [#​4265](https://togithub.com/alpinejs/alpine/pull/4265) - \[UI]\[Tabs] Prevent tab focus on mousedown [#​4239](https://togithub.com/alpinejs/alpine/pull/4239) - \[CSP] Add support for nested properties to CSP build [#​4238](https://togithub.com/alpinejs/alpine/pull/4238)
guybedford/es-module-lexer (es-module-lexer) ### [`v1.5.4`](https://togithub.com/guybedford/es-module-lexer/releases/tag/1.5.4) [Compare Source](https://togithub.com/guybedford/es-module-lexer/compare/1.5.3...1.5.4) ##### What's Changed - fix: of keyword context in for statement only by [@​guybedford](https://togithub.com/guybedford) in [https://github.com/guybedford/es-module-lexer/pull/178](https://togithub.com/guybedford/es-module-lexer/pull/178) **Full Changelog**: https://github.com/guybedford/es-module-lexer/compare/1.5.3...1.5.4
eugef/node-mocks-http (node-mocks-http) ### [`v1.15.0`](https://togithub.com/eugef/node-mocks-http/blob/HEAD/HISTORY.md#v-1150) [Compare Source](https://togithub.com/eugef/node-mocks-http/compare/v1.14.1...v1.15.0) - Add to write() and end() support of TypedArray [Issue #​300][300]. - Fix: return empty string when send() was called with undefined [Issue #​298][298]. [300]: https://togithub.com/eugef/node-mocks-http/pull/300 [298]: https://togithub.com/eugef/node-mocks-http/pull/298
sass/dart-sass (sass) ### [`v1.77.6`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1776) [Compare Source](https://togithub.com/sass/dart-sass/compare/1.77.5...1.77.6) - Fix a few cases where comments and occasionally even whitespace wasn't allowed between the end of Sass statements and the following semicolon.
shikijs/shiki (shiki) ### [`v1.9.0`](https://togithub.com/shikijs/shiki/releases/tag/v1.9.0) [Compare Source](https://togithub.com/shikijs/shiki/compare/v1.8.0...v1.9.0) #####    🚨 Breaking Changes - Rename `getHighlighter` to `createHighlighter`  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/shikijs/shiki/issues/702](https://togithub.com/shikijs/shiki/issues/702) [(faf3b)](https://togithub.com/shikijs/shiki/commit/faf3bd2f) #####     [View changes on GitHub](https://togithub.com/shikijs/shiki/compare/v1.8.0...v1.9.0) ### [`v1.8.0`](https://togithub.com/shikijs/shiki/releases/tag/v1.8.0) [Compare Source](https://togithub.com/shikijs/shiki/compare/v1.7.0...v1.8.0) #####    🚀 Features - **core**: Expose `dispose` function  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/shikijs/shiki/issues/707](https://togithub.com/shikijs/shiki/issues/707) [(2c5b3)](https://togithub.com/shikijs/shiki/commit/2c5b3873) #####     [View changes on GitHub](https://togithub.com/shikijs/shiki/compare/v1.7.0...v1.8.0) ### [`v1.7.0`](https://togithub.com/shikijs/shiki/releases/tag/v1.7.0) [Compare Source](https://togithub.com/shikijs/shiki/compare/v1.6.5...v1.7.0) #####    🚀 Features - **core**: Warning on too many instances, close [#​693](https://togithub.com/shikijs/shiki/issues/693)  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/shikijs/shiki/issues/693](https://togithub.com/shikijs/shiki/issues/693) [(412fe)](https://togithub.com/shikijs/shiki/commit/412fe10e) #####    🐞 Bug Fixes - **core**: Add missing `UTF8ToString` function, close [#​693](https://togithub.com/shikijs/shiki/issues/693)  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/shikijs/shiki/issues/693](https://togithub.com/shikijs/shiki/issues/693) [(0c891)](https://togithub.com/shikijs/shiki/commit/0c89157f) #####     [View changes on GitHub](https://togithub.com/shikijs/shiki/compare/v1.6.5...v1.7.0)
sveltejs/language-tools (svelte2tsx) ### [`v0.7.10`](https://togithub.com/sveltejs/language-tools/releases/tag/svelte2tsx-0.7.10) [Compare Source](https://togithub.com/sveltejs/language-tools/compare/svelte2tsx-0.7.9...svelte2tsx-0.7.10) - chore: speed up regex
isaacs/node-tar (tar) ### [`v7.4.0`](https://togithub.com/isaacs/node-tar/compare/v7.3.0...v7.4.0) [Compare Source](https://togithub.com/isaacs/node-tar/compare/v7.3.0...v7.4.0) ### [`v7.3.0`](https://togithub.com/isaacs/node-tar/compare/v7.2.0...v7.3.0) [Compare Source](https://togithub.com/isaacs/node-tar/compare/v7.2.0...v7.3.0)
Microsoft/TypeScript (typescript) ### [`v5.5.2`](https://togithub.com/Microsoft/TypeScript/compare/v5.4.5...ce2e60e4ea15a65992e54a9e8877d16be9d42abb) [Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.4.5...v5.5.2)
typescript-eslint/typescript-eslint (typescript-eslint) ### [`v7.13.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#7131-2024-06-17) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.13.0...v7.13.1) This was a version bump only for typescript-eslint to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
unifiedjs/unified (unified) ### [`v11.0.5`](https://togithub.com/unifiedjs/unified/releases/tag/11.0.5) [Compare Source](https://togithub.com/unifiedjs/unified/compare/11.0.4...11.0.5) ##### Fix - [`1e0863a`](https://togithub.com/unifiedjs/unified/commit/1e0863a) Fix exception on older browsers by [@​justinbhopper](https://togithub.com/justinbhopper) in [https://github.com/unifiedjs/unified/pull/246](https://togithub.com/unifiedjs/unified/pull/246) **Full Changelog**: https://github.com/unifiedjs/unified/compare/11.0.4...11.0.5
vuejs/devtools-next (vite-plugin-vue-devtools) ### [`v7.3.4`](https://togithub.com/vuejs/devtools-next/releases/tag/v7.3.4) [Compare Source](https://togithub.com/vuejs/devtools-next/compare/v7.3.3...v7.3.4) #####    🐞 Bug Fixes - **core**: Add vue as peerDependencies  -  by [@​webfansplz](https://togithub.com/webfansplz) [(8e143)](https://togithub.com/vuejs/devtools-next/commit/8e143f4) - **kit**: Add null-safety to get vnode props to support vapor  -  by [@​webfansplz](https://togithub.com/webfansplz) [(05515)](https://togithub.com/vuejs/devtools-next/commit/055157a) #####     [View changes on GitHub](https://togithub.com/vuejs/devtools-next/compare/v7.3.3...v7.3.4) ### [`v7.3.3`](https://togithub.com/vuejs/devtools-next/releases/tag/v7.3.3) [Compare Source](https://togithub.com/vuejs/devtools-next/compare/v7.3.2...v7.3.3) #####    🚀 Features - **browser-ext**: Update content_security_policy to support wasm  -  by [@​alexzhang1030](https://togithub.com/alexzhang1030) in [https://github.com/vuejs/devtools-next/issues/463](https://togithub.com/vuejs/devtools-next/issues/463) [(dd4c4)](https://togithub.com/vuejs/devtools-next/commit/dd4c429) - **client**: Only show feature settings on iframe/seperate-window  -  by [@​alexzhang1030](https://togithub.com/alexzhang1030) in [https://github.com/vuejs/devtools-next/issues/461](https://togithub.com/vuejs/devtools-next/issues/461) [(7ac0a)](https://togithub.com/vuejs/devtools-next/commit/7ac0a13) - **kit**: Rename refs to template refs for easy understanding  -  by [@​webfansplz](https://togithub.com/webfansplz) [(f7d01)](https://togithub.com/vuejs/devtools-next/commit/f7d0165) #####    🐞 Bug Fixes - Update shiki and relax version range  -  by [@​antfu](https://togithub.com/antfu) in [https://github.com/vuejs/devtools-next/issues/465](https://togithub.com/vuejs/devtools-next/issues/465) [(00705)](https://togithub.com/vuejs/devtools-next/commit/0070585) #####     [View changes on GitHub](https://togithub.com/vuejs/devtools-next/compare/v7.3.2...v7.3.3) ### [`v7.3.2`](https://togithub.com/vuejs/devtools-next/releases/tag/v7.3.2) [Compare Source](https://togithub.com/vuejs/devtools-next/compare/v7.3.1...v7.3.2) #####    🚀 Features - Enhance inspect component ux  -  by [@​webfansplz](https://togithub.com/webfansplz) [(bd0cc)](https://togithub.com/vuejs/devtools-next/commit/bd0cc77) - **applet**: Add null-safety to inspector component data  -  by [@​webfansplz](https://togithub.com/webfansplz) [(38240)](https://togithub.com/vuejs/devtools-next/commit/382402e) #####    🐞 Bug Fixes - **applet**: - Show delete icon only when editable  -  by [@​webfansplz](https://togithub.com/webfansplz) [(72222)](https://togithub.com/vuejs/devtools-next/commit/722220d) - Prevent state update when data is empty  -  by [@​webfansplz](https://togithub.com/webfansplz) [(db5d9)](https://togithub.com/vuejs/devtools-next/commit/db5d924) - **client**: - Sync state between separate window with floating panel  -  by [@​alexzhang1030](https://togithub.com/alexzhang1030) in [https://github.com/vuejs/devtools-next/issues/459](https://togithub.com/vuejs/devtools-next/issues/459) [(3daaf)](https://togithub.com/vuejs/devtools-next/commit/3daaf00) #####     [View changes on GitHub](https://togithub.com/vuejs/devtools-next/compare/v7.3.1...v7.3.2) ### [`v7.3.1`](https://togithub.com/vuejs/devtools-next/releases/tag/v7.3.1) [Compare Source](https://togithub.com/vuejs/devtools-next/compare/v7.3.0...v7.3.1) #####    🐞 Bug Fixes - **kit**: Prevent duplicate registration of devtool plugin  -  by [@​webfansplz](https://togithub.com/webfansplz) in [https://github.com/vuejs/devtools-next/issues/457](https://togithub.com/vuejs/devtools-next/issues/457) [(9ad1a)](https://togithub.com/vuejs/devtools-next/commit/9ad1a3c) #####     [View changes on GitHub](https://togithub.com/vuejs/devtools-next/compare/v7.3.0...v7.3.1)
GoogleChrome/web-vitals (web-vitals) ### [`v4.2.0`](https://togithub.com/GoogleChrome/web-vitals/blob/HEAD/CHANGELOG.md#v420-2024-06-20) [Compare Source](https://togithub.com/GoogleChrome/web-vitals/compare/v4.1.1...v4.2.0) - Refactor INP attribution code to fix errors on Windows 10 ([#​495](https://togithub.com/GoogleChrome/web-vitals/pull/495))
StefanTerdell/zod-to-json-schema (zod-to-json-schema) ### [`v3.23.1`](https://togithub.com/StefanTerdell/zod-to-json-schema/compare/12cbb448bbf5c92ef2189e0e23391a87d56c105a...9275d6144cfb1a993ae4796650a230b4a947540b) [Compare Source](https://togithub.com/StefanTerdell/zod-to-json-schema/compare/12cbb448bbf5c92ef2189e0e23391a87d56c105a...9275d6144cfb1a993ae4796650a230b4a947540b)

Configuration

📅 Schedule: Branch creation - "before 4am 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 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.



This PR has been generated by Mend Renovate. View repository job log here.

changeset-bot[bot] commented 5 days ago

⚠️ No Changeset found

Latest commit: f355d2ee773710da29504d1295fc917b5f65c7a4

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

ematipico commented 4 days ago

Seems like our e2e tests are failing consistently

bluwy commented 4 days ago

@ematipico this is ready now, in case you want to take another look