Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 29, 2024

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@nrwl/nx-cloud 18.0.119.1.0 age confidence devDependencies major
@sveltejs/adapter-cloudflare (source) 4.9.07.2.4 age confidence devDependencies major
@sveltejs/vite-plugin-svelte (source) 3.0.26.2.1 age confidence devDependencies major
@vite-pwa/sveltekit 0.6.61.1.0 age confidence devDependencies major
actions/checkout v4v6 age confidence action major
actions/setup-node v4v6 age confidence action major
node (source) 21.7.325.2.1 age confidence major
node (source) 21.7.325.2.1 age confidence engines major
nx (source) 18.4.0-canary.20240418-e549ea222.3.3 age confidence devDependencies major
pnpm (source) 8.15.910.27.0 age confidence packageManager major
pnpm/action-setup v3.0.0v4.2.0 age confidence action major
svelte (source) 4.2.195.46.1 age confidence devDependencies major
svelte (source) 4.2.195.46.1 age confidence dependencies major
svelte-check 3.8.64.3.5 age confidence devDependencies major
ubuntu 22.0424.04 age confidence github-runner major
vite (source) 5.4.117.3.0 age confidence devDependencies major
vite-imagetools (source) 6.2.99.0.2 age confidence devDependencies major
vite-plugin-pwa 0.21.11.2.0 age confidence devDependencies major
wrangler (source) 3.99.04.54.0 age confidence devDependencies major

Release Notes

sveltejs/kit (@​sveltejs/adapter-cloudflare)

v7.2.4

Compare Source

Patch Changes
  • chore: update "homepage" field in package.json (#​14579)

v7.2.3

Compare Source

Patch Changes
  • fix: improve the error message when read(...) fails (#​14306)

v7.2.2

Compare Source

Patch Changes

v7.2.1

Compare Source

Patch Changes
  • fix: avoid erroring on builder properties that only exist on the latest version of SvelteKit (#​14233)

  • Updated dependencies [f2db41c]:

v7.2.0

Compare Source

Minor Changes
  • feat: add instrumentation.server.ts for tracing and observability setup (#​13899)
Patch Changes

v7.1.3

Compare Source

Patch Changes

v7.1.2

Compare Source

Patch Changes
  • fix: resolve the absolute path of the Wrangler config setting assets.directory in case the config file is in a different directory than the root project (#​14036)

  • Updated dependencies [793ae28]:

v7.1.1

Compare Source

Patch Changes

v7.1.0

Compare Source

Minor Changes
  • feat: add support for read imported from $app/server (#​13859)
Patch Changes

v7.0.5

Compare Source

Patch Changes
  • fix: deprecate platform.context in favor of platform.ctx to align with Cloudflare's naming convention (#​13856)

  • Updated dependencies [bcdaf21]:

v7.0.4

Compare Source

Patch Changes

v7.0.3

Compare Source

Patch Changes

v7.0.2

Compare Source

Patch Changes

v7.0.1

Compare Source

Patch Changes

v7.0.0

Compare Source

Major Changes
  • feat: support specifically building for Cloudflare Workers Static Assets (#​13634)
Patch Changes

v6.0.1

Compare Source

Patch Changes
  • fix: revert writing server files to the cloudflare build directory (#​13622)

v6.0.0

Compare Source

Major Changes
  • fix: copy the _headers and _redirects files from the project root instead of the /static directory (#​13227)
Patch Changes
  • fix: write server files to the cloudflare build directory (#​13610)

v5.1.0

Compare Source

Minor Changes
Patch Changes

v5.0.3

Compare Source

Patch Changes

v5.0.2

Compare Source

Patch Changes

v5.0.1

Compare Source

Patch Changes

v5.0.0

Compare Source

Major Changes
Patch Changes
sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

v6.2.1

Compare Source

Patch Changes
  • fix: remove unscopable global styles warning (#​1223)

  • Remove automatic configuration for rolldownOptions.optimization.inlineConst because latest version of rolldown-vite has it enabled by default. (#​1225)

v6.2.0

Compare Source

Minor Changes
  • feat(rolldown-vite): enable optimization.inlineConst by default to ensure treeshaking works with esm-env in svelte (#​1207)

v6.1.4

Compare Source

Patch Changes
  • fix: allow preprocess plugin to run twice (#​1206)

  • fix(types): update urls to PreprocessorGroup and CompileOptions in type documention (#​1203)

  • replace kleur dependency with builtin node:utils styleText (#​1210)

v6.1.3

Compare Source

Patch Changes
  • fix(api): add api.filter and deprecate api.idFilter to avoid confusing filter.id = idFilter.id assignments when used as hybrid filter in other plugins (#​1199)

v6.1.2

Compare Source

Patch Changes
  • fix: ensure compiled css is returned when reloading during dev with ssr (e.g. SvelteKit) (#​1194)

v6.1.1

Compare Source

Patch Changes
  • fix: ensure compiled svelte css is loaded correctly when rebuilding in build --watch (#​1189)

v6.1.0

Compare Source

Minor Changes
  • feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (#​1176)
Patch Changes
  • skip comment blocks when reporting compiler errors that might be caused by a preprocessor issue (#​1166)

  • increase logLevel to info for "no Svelte config found" message (#​1179)

v6.0.0

Compare Source

Major Changes
  • drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (#​1129)

  • Remove experimental "advanced raw queries" feature. Basic File.svelte?raw is still supported. (#​1145)

  • Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg @​tsconfig/svelte (#​1135)

  • remove support for loading commonjs svelte config files (#​1142)

  • bump vite peer dependency to ^6.3.0 || ^7.0.0 (#​1130)

  • define filters using object hook syntax and optimize the filter for resolveId (#​1132)

    NOTE
    include logic has changed to files matching svelteConfig.include OR svelteConfig.extensions. Previously only files matching both were loaded and transformed.

  • split preprocess and compile into separate plugins (#​1145)

    It allows vite plugins to transform code between preprocess and compile, see docs and is the recommended way to replace plugin.api.sveltePreprocess usage in other vite plugins.
    You can also use vite-plugin-inspect now to inspect the result of svelte.preprocess by checking the transform of vite-plugin-svelte:preprocess

    NOTE
    This can be a breaking change in case you have other plugins besides vite-plugin-svelte transforming your svelte code
    To fix this, read the docs on how to order plugins in relation to preprocess and compile

Minor Changes
  • Add experimental support for rolldown-vite (#​1135)

  • replace esbuild optimizer with rolldown optimizer if rolldown-vite is used (#​1135)

  • add support for loading TypeScript Svelte config files in runtimes that support it (#​1142)

    NOTE
    This change only applies to vite-plugin-svelte.

    To use svelte.config.ts in SvelteKit, with the Svelte VS Code extension or other tools reading the Svelte config file, you have to wait until support is implemented there.

Patch Changes
  • reduce deprecation logging to info and allow disabling it with a flag (#​1158)

  • refactor internal caching to reduce code, memory use and avoid perEnvironmentCache (#​1154)

  • fix: crawl local workspace private packages devDependencies for generating vite config ssr.noExternal (#​1155)

  • log known-issues link when using rolldown-vite (#​1144)

  • use vite environment api internally (#​1145)

  • remove vite7 beta releases from peerDependency range. (#​1151)

  • deprecate plugin.api.sveltePreprocess (#​1145)

v5.1.1

Compare Source

Patch Changes
  • fix: prevent accidental pollution of svelteconfig.extensions (#​1171)

v5.1.0

Compare Source

Minor Changes
  • scope css to js module to enable treeshaking scoped css from unused components. Requires vite 6.2 and svelte 5.26 (#​1092)
Patch Changes
  • add svelte > clsx to optimizeDeps.include to avoid page reload when using vite6 and npm (#​1124)

v5.0.3

Compare Source

Patch Changes
  • fix errorhandling to work with errors that don't have a code property (#​1054)

v5.0.2

Compare Source

Patch Changes
  • adapt internal handling of warning and error code property to changes in svelte5 (#​1044)

v5.0.1

Compare Source

Patch Changes
  • Fix peer dependencies warning (#​1038)

v5.0.0

Compare Source

Major Changes
  • Handle Vite 6 breaking change and remove Vite 5 handling (#​1020)

  • Support Vite 6 (#​1026)

Minor Changes
  • Add esm-env to ssr.noExternal by default to resolve its conditions with Vite (#​1020)

  • Support ?inline query on Svelte style virtual modules (#​1024)

Patch Changes

v4.0.4

Compare Source

Patch Changes
  • fix errorhandling to work with errors that don't have a code property (1a91581)

v4.0.3

Compare Source

Patch Changes
  • adapt internal handling of warning and error code property to changes in svelte5 (#​1046)

v4.0.2

Compare Source

Patch Changes
  • Allow script tags to span multiple lines (5309d7b)

v4.0.1

Compare Source

Patch Changes
  • removed references to compiler options no longer available in svelte5 (#​1010)

v4.0.0

Compare Source

Major Changes
  • only prebundle files with default filenames (.svelte for components, .svelte.(js|ts) for modules) (#​901)

  • remove support for Svelte 4 (#​892)

  • breaking(types): some types that have been unintentionally public are now private (#​934)

  • disable script preprocessing in vitePreprocess() by default because Svelte 5 supports lang=ts out of the box (#​892)

  • replaced svelte-hmr with Svelte 5 compiler hmr integration (#​892)

Minor Changes
  • allow infix notation for svelte modules (#​901)

    Previously, only suffix notation .svelte.js was allowed, now you can also use .svelte.test.js or .svelte.stories.js.
    This helps when writing testcases or other auxillary code where you may want to use runes too.

  • feat(config): dynamically extract list of svelte exports from peer dependency so that new exports work automatically" (#​941)

  • feat(warnings): change default loglevel of warnings originating from files in node_modules to debug. To see them call DEBUG:vite-plugin-svelte:node-modules-onwarn pnpm build. (#​989)

Patch Changes
  • fix: make defaultHandler a required argument for onwarn in plugin options (#​895)

  • prebundle with dev: true by default (#​901)

  • fix(dev): compile with hmr: false for prebundled deps as hmr does not work with that (#​950)

  • fix: ensure svelte modules correctly run in DEV mode (#​906)

  • ensure consistent use of compileOptions.hmr also for prebundling (#​956)

  • fix(optimizeDeps): avoid to optimise server only entrypoints of svelte that are never used on the client (#​941)

  • update peer on workspace packages to avoid packages bumping each other (#​916)

  • export PluginOptions interface (#​976)

  • Remove log about experimental status of Svelte 5. Note that breaking changes can still occur while vite-plugin-svelte 4 is in prerelease mode (#​894)

  • fix: ensure vite config is only resolved once during lazy init of vitePreprocess (#​912)

  • fix(vitePreprocess): default to build config so that svelte-check does not trigger dev-only plugins (#​931)

  • fix: only apply infix filter to basename (#​920)

  • fix: disable hmr when vite config server.hmr is false (#​913)

  • fix(dev): make sure custom cssHash is applied consistently even for prebundled components to avoid hash mismatches during hydration (#​950)

  • Updated dependencies [22baa25, 49324db, e9f048c, 213fedd]:

v3.1.2

Compare Source

Patch Changes
  • add warning for svelte5 users to update to vite-plugin-svelte@​4 (#​964)

v3.1.1

Compare Source

Patch Changes
  • fix: ensure vite config is only resolved once during lazy init of vitePreprocess (#​917)

  • fix: disable hmr when vite config server.hmr is false (#​917)

v3.1.0

Compare Source

Minor Changes
  • feat(svelte5): enable hmr option in dev (#​836)
Patch Changes
vite-pwa/sveltekit (@​vite-pwa/sveltekit)

v1.1.0

Compare Source

No significant changes

    View changes on GitHub

v1.0.1

Compare Source

No significant changes

    View changes on GitHub

v1.0.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub

v0.6.8

Compare Source

   🚀 Features
    View changes on GitHub

v0.6.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
actions/checkout (actions/checkout)

v6

Compare Source

v5

Compare Source

actions/setup-node (actions/setup-node)

v6

Compare Source

v5

Compare Source

nodejs/node (node)

v25.2.1: 2025-11-17, Version 25.2.1 (Current), @​aduh95

Compare Source

This release reverts the spec-compliant behavior of sometimes throwing on localStorage
access. We received feedback that this change on an experimental API was too breaking
for a semver-minor release, so we decided to push it back for Node.js 26.0.0.

Commits

v24.12.0: 2025-12-10, Version 24.12.0 'Krypton' (LTS), @​targos

Compare Source

Notable Changes
  • [1a00b5f68a] - (SEMVER-MINOR) http: add optimizeEmptyRequests server option (Rafael Gonzaga) #​59778
  • [ff5754077d] - (SEMVER-MINOR) lib: add options to util.deprecate (Rafael Gonzaga) #​59982
  • [8987159234] - (SEMVER-MINOR) module: mark type stripping as stable (Marco Ippolito) #​60600
  • [92c484ebf4] - (SEMVER-MINOR) node-api: add napi_create_object_with_properties (Miguel Marcondes Filho) #​59953
  • [b11bc5984e] - (SEMVER-MINOR) sqlite: allow setting defensive flag (Bart Louwers) #​60217
  • [e7da5b4b7d] - (SEMVER-MINOR) src: add watch config namespace (Marco Ippolito) #​60178
  • [a7f7d10c06] - (SEMVER-MINOR) src: add an option to make compile cache portable (Aditi) #​58797
  • [92ea669240] - (SEMVER-MINOR) src,permission: add --allow-inspector ability (Rafael Gonzaga) #​59711
  • [05d7509bd2] - (SEMVER-MINOR) v8: add cpu profile (theanarkh) #​59807
Commits

Configuration

📅 Schedule: Branch creation - "on saturday" in timezone Europe/Paris, 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.


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

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

@nx-cloud
Copy link

nx-cloud bot commented Mar 29, 2024

View your CI Pipeline Execution ↗ for commit b1de450.

Command Status Duration Result
nx affected --target build ✅ Succeeded 2s View ↗
nx affected --target typecheck ✅ Succeeded 7s View ↗

☁️ Nx Cloud last updated this comment at 2025-06-20 20:49:08 UTC

@renovate renovate bot force-pushed the renovate/major-all branch from 16c49bf to 898b71e Compare March 31, 2024 17:32
@renovate renovate bot force-pushed the renovate/major-all branch from 898b71e to 6f804aa Compare April 16, 2024 11:29
@renovate renovate bot changed the title chore(deps): update dependency vite-imagetools to v7 chore(deps): update all dependencies (major) Apr 16, 2024
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from d787435 to fe22d8b Compare April 21, 2024 22:46
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 8bbfb7a to eca7859 Compare April 30, 2024 22:01
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from 82d371d to 8258659 Compare May 7, 2024 22:38
@renovate renovate bot force-pushed the renovate/major-all branch 6 times, most recently from dd4bf68 to 633a2fb Compare May 16, 2024 00:19
@renovate renovate bot force-pushed the renovate/major-all branch 7 times, most recently from 2de5756 to 30d004d Compare May 27, 2024 11:00
@renovate renovate bot force-pushed the renovate/major-all branch 11 times, most recently from 3e25b21 to d65cf2e Compare December 13, 2025 02:41
@renovate renovate bot force-pushed the renovate/major-all branch 14 times, most recently from 2455d97 to b635ef2 Compare December 20, 2025 09:03
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 8537309 to f135571 Compare December 24, 2025 17:37
@renovate renovate bot force-pushed the renovate/major-all branch from f135571 to fa85e1b Compare December 31, 2025 01:01
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.

1 participant