Skip to content

chore(deps): update dependency @sveltejs/kit to v2.20.7 #50

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 14, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sveltejs/kit (source) 2.5.20 -> 2.20.7 age adoption passing confidence

Release Notes

sveltejs/kit (@​sveltejs/kit)

v2.20.7

Compare Source

Patch Changes
  • fix: regression when serializing server data (#​13709)

v2.20.6

Compare Source

Patch Changes

v2.20.5

Compare Source

Patch Changes
  • allow HandleServerError hook to access getRequestEvent (#​13666)

  • fix: prevent Rollup warnings for undefined hooks (#​13687)

v2.20.4

Compare Source

Patch Changes
  • chore: remove internal class-replacement hack that isn't needed anymore (#​13664)

v2.20.3

Compare Source

Patch Changes
  • fix: only call afterNavigate once on app start when SSR is disabled (#​13593)

v2.20.2

Compare Source

Patch Changes
  • fix: allow non-prerendered API endpoint calls during reroute when prerendering (#​13616)

v2.20.1

Compare Source

Patch Changes
  • fix: avoid using top-level await (#​13607)

v2.20.0

Compare Source

Minor Changes
  • feat: add getRequestEvent to $app/server (#​13582)

v2.19.2

Compare Source

Patch Changes
  • fix: lazily load CSS for dynamically imported components (#​13564)

v2.19.1

Compare Source

Patch Changes
  • fix: allow reroute to point to prerendered route (#​13575)

v2.19.0

Compare Source

Minor Changes
Patch Changes

v2.18.0

Compare Source

Minor Changes
Patch Changes
  • fix: correct navigation history with hash router and ensure load functions are rerun on user changes to URL hash (#​13492)

  • fix: include universal load assets as server assets (#​13531)

  • fix: Include root layout and error nodes even when apps have only prerendered pages (#​13522)

  • fix: correctly preload data on mousedown/touchstart if code was preloaded on hover (#​13530)

v2.17.3

Compare Source

Patch Changes
  • fix: avoid simulated CORS errors with non-HTTP URLs (#​13493)

  • fix: correctly preload links on mousedown/touchstart (#​13486)

  • fix: load CSS when using server-side route resolution (#​13498)

  • fix: correctly find shared entry-point CSS files during inlining (#​13431)

v2.17.2

Compare Source

Patch Changes
  • fix: add promise return type to the enhance action callback (#​13420)

  • fix: change server-side route resolution endpoint (#​13461)

v2.17.1

Compare Source

Patch Changes
  • fix: make route resolution imports root-relative if paths.relative option is false (#​13412)

v2.17.0

Compare Source

Minor Changes
  • feat: validate values for cache-control and content-type headers in dev mode (#​13114)

  • feat: support server-side route resolution (#​13379)

Patch Changes
  • chore: don't error during development when using use:enhance with +server as some third party libraries make it possible to POST forms to it (#​13397)

  • fix: skip hooks for server fetch to prerendered routes (#​13377)

  • fix: ignore non-entry-point CSS files during inlining (#​13395)

  • fix: default server fetch to use prerendered paths (#​13377)

v2.16.1

Compare Source

Patch Changes
  • fix: avoid overwriting headers for sub-requests made while loading the error page (#​13341)

  • fix: correctly resolve index file entrypoints such as src/service-worker/index.js (#​13354)

  • fix: correctly handle relative anchors when using the hash router (#​13356)

v2.16.0

Compare Source

Minor Changes
  • feat: add ability to invalidate a custom identifier on goto() (#​13256)

  • feat: remove the postinstall script to support pnpm 10 (#​13304)

    NOTE: users should add "prepare": "svelte-kit sync" to their package.json in order to avoid the following warning upon first running Vite:

    ▲ [WARNING] Cannot find base config file "./.svelte-kit/tsconfig.json" [tsconfig.json]
    
        tsconfig.json:2:12:
          2 │   "extends": "./.svelte-kit/tsconfig.json",
            ╵              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
  • feat: provide PageProps and LayoutProps types (#​13308)

Patch Changes
  • perf: shorten chunk file names (#​13003)

  • fix: strip internal data before passing URL to reroute (#​13092)

  • fix: support absolute URLs and reroutes with data-sveltekit-preload-code="viewport" (#​12217)

  • fix: use current window.fetch for server load fetch requests (#​13315)

  • fix: resolve symlinks when handling routes (#​12740)

  • fix: prevent infinite reload when using the hash router and previewing /index.html (#​13296)

  • fix: service worker base path in dev mode (#​12577)

  • chore: error during development when using use:enhance with +server (#​13197)

  • chore: add most common status codes to redirect() JS documentation (#​13301)

  • fix: correctly link to assets inlined by the inlineStyleThreshold option (#​13068)

  • fix: fall back to importing dynamic dependencies relative to SvelteKit package (#​12532)

  • fix: use arrow function types over bound funcs (#​12955)

  • fix: correctly navigate when hash router is enabled and the browser encodes extra hashes (#​13321)

v2.15.3

Compare Source

Patch Changes
  • fix: fix race-condition when not using SSR when pressing back before initial load (#​12925)

  • fix: remove ":$" from virtual module ids to allow dev server to work with proxies (#​12157)

  • fix: upgrade esm-env to remove warning when NODE_ENV is not set (#​13291)

  • fix: handle Redirect thrown from root layout load function when client-side navigating to a non-existent page (#​12005)

  • fix: make param matchers generated type import end with .js (#​13286)

v2.15.2

Compare Source

Patch Changes
  • fix: correctly notify page store subscribers (#​13205)

  • fix: prerender data when there is no server load but the trailingSlash option is set from the server (#​13262)

  • fix: correctly remove navigation callbacks when returning function in onNavigate (#​13241)

v2.15.1

Compare Source

Patch Changes
  • fix: add CSP hashes/nonces to inline styles when using bundleStrategy: 'inline' (#​13232)

  • fix: silence dev/prod warning during sync (#​13244)

v2.15.0

Compare Source

Minor Changes
  • feat: add bundleStrategy: 'inline' option (#​13193)

v2.14.1

Compare Source

Patch Changes
  • fix: do not mutate URL during reroute logic (#​13222)

v2.14.0

Compare Source

Minor Changes
  • feat: add hash-based routing option (#​13191)
Patch Changes
  • fix: create new URL when calling goto(...), to handle case where URL is mutated (#​13196)

v2.13.0

Compare Source

Minor Changes
  • feat: add bundleStrategy: 'split' | 'single' option (#​13173)

v2.12.2

Compare Source

Patch Changes
  • fix: correctly resolve no hooks file when a similarly named directory exists (#​13188)

  • fix: correctly resolve $app/state on the server with Vite 5 (#​13192)

v2.12.1

Compare Source

Patch Changes
  • fix: replace navigating.current.<x> with navigating.<x> (#​13174)

v2.12.0

Compare Source

Minor Changes
Patch Changes
  • chore: specify the route ID in the error message during development when making a form action request to a route without form actions (#​13167)

v2.11.1

Compare Source

Patch Changes
  • fix: adhere to Vite build.minify setting when building the service worker (#​13143)

v2.11.0

Compare Source

Minor Changes
  • feat: transport custom types across the server/client boundary (#​13149)
Patch Changes
  • fix: correctly resolve hooks file when a similarly named directory exists (#​13144)

v2.10.1

Compare Source

Patch Changes
  • fix: export init hook from get_hooks (#​13136)

v2.10.0

Compare Source

Minor Changes
  • feat: server and client init hook (#​13103)
Patch Changes
  • fix: prevent hooks exported from hooks.js from overwriting hooks from hooks.server.js (#​13104)

v2.9.1

Compare Source

Patch Changes
  • fix: correctly match route groups preceding optional parameters (#​13099)

v2.9.0

Compare Source

Minor Changes
Patch Changes
  • fix: transform link[rel='shortcut icon'] and link[rel='apple-touch-icon'] to be absolute to avoid console error when navigating (#​13077)

v2.8.5

Compare Source

Patch Changes
  • fix: don't hydrate when falling back to error page (#​13056)

v2.8.4

Compare Source

Patch Changes
  • fix: update inline css url generation for FOUC prevention in dev (#​13007)

v2.8.3

Compare Source

Patch Changes
  • fix: ensure error messages are escaped (#​13050)

  • fix: escape values included in dev 404 page (#​13039)

v2.8.2

Compare Source

Patch Changes
  • fix: prevent duplicate fetch request when using Request with load function's fetch (#​13023)

  • fix: do not override default cookie decoder to allow users to override the cookie library version (#​13037)

v2.8.1

Compare Source

Patch Changes
  • fix: only add nonce to script-src-elem, style-src-attr and style-src-elem CSP directives when unsafe-inline is not present (#​11613)

  • fix: support HTTP/2 in dev and production. Revert the changes from #​12907 to downgrade HTTP/2 to TLS as now being unnecessary (#​12989)

v2.8.0

Compare Source

Minor Changes
  • feat: add helper to identify ActionFailure objects (#​12878)

v2.7.7

Compare Source

Patch Changes

v2.7.6

Compare Source

Patch Changes
  • fix: update broken links in JSDoc (#​12960)

v2.7.5

Compare Source

Patch Changes
  • fix: warn on invalid cookie name characters (#​12806)

  • fix: when using @vitejs/plugin-basic-ssl, set a no-op proxy config to downgrade from HTTP/2 to TLS since undici does not yet enable HTTP/2 by default (#​12907)

v2.7.4

Compare Source

Patch Changes
  • fix: ensure element is focused after subsequent clicks of the same hash link (#​12866)

  • fix: avoid preload if event default was prevented for touchstart and mousedown events (#​12887)

  • fix: avoid reloading behaviour for hash links with data-sveltekit-reload if the hash is on the same page (#​12866)

v2.7.3

Compare Source

Patch Changes
  • fix: include importer in illegal import error message (#​12820)

  • fix: don't try reading assets directly that aren't present (#​12876)

  • fix: decode non-latin characters when previewing prerendered pages (#​12874)

  • fix: better error message when a Result is returned from a form action (#​12829)

  • docs: update URLs for new svelte.dev site (#​12857)

v2.7.2

Compare Source

Patch Changes
  • fix: use absolute links in JSDoc comments (#​12718)

v2.7.1

Compare Source

Patch Changes
  • chore: upgrade to sirv 3.0 (#​12796)

  • fix: warn when form action responses are lost because SSR is off (#​12063)

v2.7.0

Compare Source

Minor Changes
  • feat: update service worker when new version is detected (#​12448)
Patch Changes
  • fix: correctly handle relative paths when fetching assets on the server (#​12113)

  • fix: decode non ASCII anchor hashes when scrolling into view (#​12699)

  • fix: page response missing CSP and Link headers when return promise in load (#​12418)

v2.6.4

Compare Source

Patch Changes
  • fix: only preload links that have a different URL than the current page (#​12773)

  • fix: revert change to replace version in generateBundle (#​12779)

  • fix: catch stack trace fixing errors thrown in web containers (#​12775)

  • fix: use absolute links in JSDoc comments (#​12772)

v2.6.3

Compare Source

Patch Changes
  • fix: ensure a changing version doesn't affect the hashes for chunks without any actual code changes (#​12700)

  • fix: prevent crash when logging URL search params in a server load function (#​12763)

  • chore: revert update dependency cookie to ^0.7.0 (#​12767)

v2.6.2

Compare Source

Patch Changes
  • chore(deps): update dependency cookie to ^0.7.0 (#​12746)

v2.6.1

Compare Source

Patch Changes
  • fix: better error message when calling push/replaceState before router is initialized (#​11968)

v2.6.0

Compare Source

Minor Changes
  • feat: support typed arrays in load functions (#​12716)
Patch Changes
  • fix: open a new tab for <form target="_blank"> and ` submissions (#​11936)

v2.5.28

Compare Source

Patch Changes
  • fix: import node:process instead of using globals (#​12641)

v2.5.27

Compare Source

Patch Changes
  • fix: asynchronously instantiate components when using Svelte 5 (#​12613)

  • fix: use {@&#8203;render ...} tag when generating default fallback page for svelte 5 apps (#​12653)

  • fix: emulate event.platform even when the route does not exist (#​12513)

v2.5.26

Compare Source

Patch Changes
  • fix: exclude service worker directory from tsconfig (#​12196)

v2.5.25

Compare Source

Patch Changes

v2.5.24

Compare Source

Patch Changes

v2.5.23

Compare Source

Patch Changes
  • fix: use dynamic components in root.svelte instead of svelte:component for svelte 5 (#​12584)

v2.5.22

Compare Source

Patch Changes
  • chore: configure provenance in a simpler manner (#​12570)

v2.5.21

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 9400f47 to a5e9fcc Compare January 15, 2025 13:39
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.15.2 chore(deps): update dependency @sveltejs/kit to v2.15.3 Jan 15, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from a5e9fcc to f0697f7 Compare January 17, 2025 13:58
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.15.3 chore(deps): update dependency @sveltejs/kit to v2.16.0 Jan 17, 2025
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.16.0 chore(deps): update dependency @sveltejs/kit to v2.16.1 Jan 21, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from 8dbc0b3 to 240fc25 Compare January 23, 2025 21:56
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from 09c3f55 to eacd5b1 Compare February 3, 2025 12:30
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.16.1 chore(deps): update dependency @sveltejs/kit to v2.17.0 Feb 3, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from eacd5b1 to 03ef49a Compare February 3, 2025 17:52
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.17.0 chore(deps): update dependency @sveltejs/kit to v2.17.1 Feb 3, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from 0e5e5ed to 6556d12 Compare February 14, 2025 19:45
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.17.1 chore(deps): update dependency @sveltejs/kit to v2.17.2 Feb 14, 2025
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.17.2 chore(deps): update dependency @sveltejs/kit to v2.17.3 Feb 25, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from 061ae44 to c073e3a Compare March 3, 2025 16:10
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from c073e3a to 1286b25 Compare March 4, 2025 18:50
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.17.3 chore(deps): update dependency @sveltejs/kit to v2.18.0 Mar 4, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 1286b25 to e53fa37 Compare March 7, 2025 21:34
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.18.0 chore(deps): update dependency @sveltejs/kit to v2.19.0 Mar 7, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 3 times, most recently from 87857a9 to fe42442 Compare March 14, 2025 22:04
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.19.0 chore(deps): update dependency @sveltejs/kit to v2.19.1 Mar 14, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from fe42442 to d5514b1 Compare March 15, 2025 17:47
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.19.1 chore(deps): update dependency @sveltejs/kit to v2.19.2 Mar 15, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from d5514b1 to 5cf146b Compare March 17, 2025 17:27
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.19.2 chore(deps): update dependency @sveltejs/kit to v2.20.0 Mar 17, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 5cf146b to 8c019bf Compare March 18, 2025 19:43
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.20.0 chore(deps): update dependency @sveltejs/kit to v2.20.1 Mar 18, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 8c019bf to 77e213b Compare March 21, 2025 16:25
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.20.1 chore(deps): update dependency @sveltejs/kit to v2.20.2 Mar 21, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from f212fdd to f9a8ad2 Compare April 2, 2025 08:42
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.20.2 chore(deps): update dependency @sveltejs/kit to v2.20.3 Apr 2, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from f9a8ad2 to 68562f6 Compare April 4, 2025 19:00
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.20.3 chore(deps): update dependency @sveltejs/kit to v2.20.4 Apr 4, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch 2 times, most recently from 20189c1 to 52e32be Compare April 9, 2025 23:46
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.20.4 chore(deps): update dependency @sveltejs/kit to v2.20.5 Apr 9, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 52e32be to 0676d31 Compare April 14, 2025 18:55
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.20.5 chore(deps): update dependency @sveltejs/kit to v2.20.6 Apr 14, 2025
@renovate renovate bot force-pushed the renovate/sveltejs-kit-2.x-lockfile branch from 0676d31 to 27ef8a5 Compare April 15, 2025 01:36
@renovate renovate bot changed the title chore(deps): update dependency @sveltejs/kit to v2.20.6 chore(deps): update dependency @sveltejs/kit to v2.20.7 Apr 15, 2025
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