Skip to content

Update all dependencies (major)#140

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all-dependencies
Open

Update all dependencies (major)#140
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jun 7, 2026

Copy link
Copy Markdown

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/checkout action major v6v7 age confidence
node uses-with major 2224 age confidence
svelte-meta-tags (source) devDependencies major ^4.4.1^5.0.0 age confidence
svelte-sitemap devDependencies major ^3.0.0^4.0.0 age confidence

Release Notes

actions/checkout (actions/checkout)

v7.0.0

Compare Source

v7

Compare Source

actions/node-versions (node)

v24.18.0: 24.18.0

Compare Source

Node.js 24.18.0

v24.17.0: 24.17.0

Compare Source

Node.js 24.17.0

v24.16.0: 24.16.0

Compare Source

Node.js 24.16.0

v24.15.0: 24.15.0

Compare Source

Node.js 24.15.0

v24.14.1: 24.14.1

Compare Source

Node.js 24.14.1

v24.14.0: 24.14.0

Compare Source

Node.js 24.14.0

v24.13.1: 24.13.1

Compare Source

Node.js 24.13.1

v24.13.0: 24.13.0

Compare Source

Node.js 24.13.0

v24.12.0: 24.12.0

Compare Source

Node.js 24.12.0

v24.11.1: 24.11.1

Compare Source

Node.js 24.11.1

v24.11.0: 24.11.0

Compare Source

Node.js 24.11.0

v24.10.0: 24.10.0

Compare Source

Node.js 24.10.0

v24.9.0: 24.9.0

Compare Source

Node.js 24.9.0

v24.8.0: 24.8.0

Compare Source

Node.js 24.8.0

v24.7.0: 24.7.0

Compare Source

Node.js 24.7.0

v24.6.0: 24.6.0

Compare Source

Node.js 24.6.0

v24.5.0: 24.5.0

Compare Source

Node.js 24.5.0

v24.4.1: 24.4.1

Compare Source

Node.js 24.4.1

v24.4.0: 24.4.0

Compare Source

Node.js 24.4.0

v24.3.0: 24.3.0

Compare Source

Node.js 24.3.0

v24.2.0: 24.2.0

Compare Source

Node.js 24.2.0

v24.1.0: 24.1.0

Compare Source

Node.js 24.1.0

v24.0.2: 24.0.2

Compare Source

Node.js 24.0.2

v24.0.1: 24.0.1

Compare Source

Node.js 24.0.1

v24.0.0: 24.0.0

Compare Source

Node.js 24.0.0

oekazuma/svelte-meta-tags (svelte-meta-tags)

v5.0.0

Compare Source

Major Changes
  • 96c14b0: feat: update schema-dts to v2

    schema-dts (the package providing the types for the JsonLd component's schema prop) has been updated from v1 to v2. The runtime behavior of JsonLd is unchanged.

    This is a breaking change at the type level:

    • If your app depends on schema-dts directly, update it to ^2.0.0. Mixing schema-dts v1 types in your app with this version can cause TypeScript "Excessive stack depth" errors when assigning to the schema prop.
    • schema-dts v2 itself includes breaking type changes (non-recursive Role typings, Quantity as a core DataType, renamed non-schema.org type exports). See the schema-dts v2.0.0 release notes.
    • schema-dts v2 depends on schema-dts-lib, which declares typescript >=4.9.5 as a peer dependency. With strict peer-dependency enforcement (e.g. pnpm's strict-peer-dependencies=true), projects without TypeScript installed may need to add it explicitly.

    New schema-dts v2 features such as WithActionConstraints (typed query-input / -input / -output constraints) and MergeLeafTypes (multi-typed schema objects) work with the schema prop out of the box.

bartholomej/svelte-sitemap (svelte-sitemap)

v4.0.3

Compare Source

  • feat: sort sitemap pages alphabetically

Sort sitemap pages alphabetically (from root to deepest) to ensure a clean, hierarchical output and avoid git diff noises across different OS builds.

Full Changelog: bartholomej/svelte-sitemap@v4.0.2...v4.0.3

v4.0.2

Compare Source

  • fix: Resolved false positive warnings for prerendered routes.

Full Changelog: bartholomej/svelte-sitemap@v4.0.1...v4.0.2

v4.0.1

Compare Source

  • Add jsdoc for all options

Full Changelog: bartholomej/svelte-sitemap@v4.0.0...v4.0.1

v4.0.0: – Vite plugin

Compare 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?

  • Seamless integration: Automatically hooks into the Vite build pipeline. No more manual postbuild scripts
  • Zero-config file overhead: You can manage all your sitemap settings directly inside vite.config.ts
  • Fully backwards compatible: It accepts the exact same configuration options you are used to

Migrating from the CLI or config file to the Vite plugin

  1. Remove svelte-sitemap from package.json scripts:

    {
      "scripts": {
    -   "postbuild": "npx svelte-sitemap"
      }
    }
  2. 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.

  3. Register the plugin in vite.config.ts:
    Import svelteSitemap and configure your options directly inside the plugin. The options object is 100% compatible, so you can copy and paste your configuration directly into svelteSitemap({...}):

    // 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)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, on day 1 of the month (* 0-3 1 * *)
  • 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 was generated by Mend Renovate. View the repository job log.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

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

@renovate renovate Bot force-pushed the renovate/major-all-dependencies branch 2 times, most recently from 412c1c5 to 0fb71ec Compare June 12, 2026 15:13
@renovate renovate Bot changed the title Update all dependencies to v24 Update all dependencies (major) Jun 12, 2026
@renovate renovate Bot force-pushed the renovate/major-all-dependencies branch from 0fb71ec to 780caa2 Compare June 14, 2026 07:16
@renovate renovate Bot force-pushed the renovate/major-all-dependencies branch from 780caa2 to 24b1872 Compare June 20, 2026 07:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants