Update all dependencies (major)#140
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Contributor
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
website | 24b1872 | Commit Preview URL Branch Preview URL |
Jun 20 2026, 07:56 AM |
412c1c5 to
0fb71ec
Compare
0fb71ec to
780caa2
Compare
780caa2 to
24b1872
Compare
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
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:
v6→v722→24^4.4.1→^5.0.0^3.0.0→^4.0.0Release Notes
actions/checkout (actions/checkout)
v7.0.0Compare Source
v7Compare Source
actions/node-versions (node)
v24.18.0: 24.18.0Compare Source
Node.js 24.18.0
v24.17.0: 24.17.0Compare Source
Node.js 24.17.0
v24.16.0: 24.16.0Compare Source
Node.js 24.16.0
v24.15.0: 24.15.0Compare Source
Node.js 24.15.0
v24.14.1: 24.14.1Compare Source
Node.js 24.14.1
v24.14.0: 24.14.0Compare Source
Node.js 24.14.0
v24.13.1: 24.13.1Compare Source
Node.js 24.13.1
v24.13.0: 24.13.0Compare Source
Node.js 24.13.0
v24.12.0: 24.12.0Compare Source
Node.js 24.12.0
v24.11.1: 24.11.1Compare Source
Node.js 24.11.1
v24.11.0: 24.11.0Compare Source
Node.js 24.11.0
v24.10.0: 24.10.0Compare Source
Node.js 24.10.0
v24.9.0: 24.9.0Compare Source
Node.js 24.9.0
v24.8.0: 24.8.0Compare Source
Node.js 24.8.0
v24.7.0: 24.7.0Compare Source
Node.js 24.7.0
v24.6.0: 24.6.0Compare Source
Node.js 24.6.0
v24.5.0: 24.5.0Compare Source
Node.js 24.5.0
v24.4.1: 24.4.1Compare Source
Node.js 24.4.1
v24.4.0: 24.4.0Compare Source
Node.js 24.4.0
v24.3.0: 24.3.0Compare Source
Node.js 24.3.0
v24.2.0: 24.2.0Compare Source
Node.js 24.2.0
v24.1.0: 24.1.0Compare Source
Node.js 24.1.0
v24.0.2: 24.0.2Compare Source
Node.js 24.0.2
v24.0.1: 24.0.1Compare Source
Node.js 24.0.1
v24.0.0: 24.0.0Compare Source
Node.js 24.0.0
oekazuma/svelte-meta-tags (svelte-meta-tags)
v5.0.0Compare Source
Major Changes
96c14b0: feat: updateschema-dtsto v2schema-dts(the package providing the types for theJsonLdcomponent'sschemaprop) has been updated from v1 to v2. The runtime behavior ofJsonLdis unchanged.This is a breaking change at the type level:
schema-dtsdirectly, update it to^2.0.0. Mixingschema-dtsv1 types in your app with this version can cause TypeScript "Excessive stack depth" errors when assigning to theschemaprop.schema-dtsv2 itself includes breaking type changes (non-recursiveRoletypings,Quantityas a core DataType, renamed non-schema.org type exports). See the schema-dts v2.0.0 release notes.schema-dtsv2 depends onschema-dts-lib, which declarestypescript >=4.9.5as a peer dependency. With strict peer-dependency enforcement (e.g. pnpm'sstrict-peer-dependencies=true), projects without TypeScript installed may need to add it explicitly.New
schema-dtsv2 features such asWithActionConstraints(typedquery-input/-input/-outputconstraints) andMergeLeafTypes(multi-typed schema objects) work with theschemaprop out of the box.bartholomej/svelte-sitemap (svelte-sitemap)
v4.0.3Compare Source
Full Changelog: bartholomej/svelte-sitemap@v4.0.2...v4.0.3
v4.0.2Compare Source
Full Changelog: bartholomej/svelte-sitemap@v4.0.1...v4.0.2
v4.0.1Compare Source
Full Changelog: bartholomej/svelte-sitemap@v4.0.0...v4.0.1
v4.0.0: – Vite pluginCompare Source
Vite plugin (new default method)
We are excited to introduce the Vite plugin for svelte-sitemap!
Starting from
v4.0.0, this is now the new default and recommended method for generating sitemaps in SvelteKit projects.Why switch to the Vite plugin?
vite.config.tsMigrating from the CLI or config file to the Vite plugin
Remove
svelte-sitemapfrompackage.jsonscripts:{ "scripts": { - "postbuild": "npx svelte-sitemap" } }If you are using a dedicated config file (e.g.,
svelte-sitemap.config.ts), copy its options and then you can safely delete the file.Register the plugin in
vite.config.ts:Import
svelteSitemapand configure your options directly inside the plugin. The options object is 100% compatible, so you can copy and paste your configuration directly intosvelteSitemap({...}):// vite.config.ts import { sveltekit } from '@​sveltejs/kit/vite'; + import { svelteSitemap } from 'svelte-sitemap/vite'; import { defineConfig } from 'vite'; export default defineConfig({ plugins: [ sveltekit(), + svelteSitemap({ + domain: 'https://example.com' + // Paste your options object from svelte-sitemap.config.ts here. + // Note: If migrating from CLI flags, convert kebab-case flags to camelCase options: + // e.g. --ignore -> ignore: ['**/admin/**'] + // --out-dir -> outDir: 'dist' + }) ] });What's Changed
🔄 Migration to Vite Plugin
Full Changelog: bartholomej/svelte-sitemap@v3.2.0...v4.0.0
Configuration
📅 Schedule: (UTC)
* 0-3 1 * *)🚦 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 was generated by Mend Renovate. View the repository job log.