Skip to content

Update all non-major dependencies

renovate requested to merge renovate/all-minor-patch into main

This MR contains the following updates:

Package Type Update Change
@sveltejs/adapter-static (source) devDependencies patch ^3.0.1 -> ^3.0.2
@sveltejs/kit (source) devDependencies patch ^2.5.7 -> ^2.5.18
@sveltejs/vite-plugin-svelte (source) devDependencies patch ^3.1.0 -> ^3.1.1
@types/node (source) devDependencies minor ^20.12.11 -> ^20.14.9
daisyui (source) devDependencies minor ^4.11.1 -> ^4.12.10
eslint-plugin-svelte (source) devDependencies minor ^2.39.0 -> ^2.41.0
postcss (source) devDependencies patch ^8.4.38 -> ^8.4.39
prettier (source) devDependencies minor ^3.2.5 -> ^3.3.2
prettier-plugin-svelte devDependencies patch ^3.2.3 -> ^3.2.5
prettier-plugin-tailwindcss devDependencies minor ^0.5.14 -> ^0.6.5
svelte (source) devDependencies patch ^4.2.16 -> ^4.2.18
svelte-check devDependencies minor ^3.7.1 -> ^3.8.4
tailwindcss (source) devDependencies patch ^3.4.3 -> ^3.4.4
tslib (source) devDependencies patch ^2.6.2 -> ^2.6.3
typescript (source) devDependencies minor ^5.4.5 -> ^5.5.3
typescript-eslint (source) devDependencies minor ^7.8.0 -> ^7.15.0
vite (source) devDependencies minor ^5.2.11 -> ^5.3.2

Release Notes

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

v3.0.2

Compare Source

Patch Changes
sveltejs/kit (@​sveltejs/kit)

v2.5.18

Compare Source

Patch Changes
  • fix: respect HTML attributes enctype and formenctype for forms with use:enhance (#​12198)

  • fix: prevent client import error when a hooks.server file imports a private environment variable (#​12195)

  • fix: set default Content-Type header to application/x-www-form-urlencoded for POST form submissions with use:enhance to align with native form behaviour (#​12198)

v2.5.17

Compare Source

Patch Changes
  • chore: update package description (#​11846)

v2.5.16

Compare Source

Patch Changes
  • fix: determine local Svelte version more reliably (#​12350)

v2.5.15

Compare Source

Patch Changes

v2.5.14

Compare Source

Patch Changes
  • fix: read non-encoded data URIs (#​12347)

v2.5.13

Compare Source

Patch Changes
  • fix: decode asset URLs in dev when reading them, but for real this time (#​12344)

v2.5.12

Compare Source

Patch Changes
  • fix: decode asset URLs in dev when reading them (#​12341)

v2.5.11

Compare Source

Patch Changes
  • fix: hrefs that start with config.prerender.origin are now crawled (#​12277)

  • chore: add keywords for discovery in npm search (#​12330)

  • fix: handle whitespace in HTTP Accept header (#​12292)

v2.5.10

Compare Source

Patch Changes
  • fix: exclude server files from optimizeDeps.entries (#​12242)

  • fix: bump import-meta-resolve to remove deprecation warnings (#​12240)

v2.5.9

Compare Source

Patch Changes
  • fix: yield main thread before navigating (#​12225)

  • fix: correctly handle aliases to files in the .svelte-kit directory (#​12220)

v2.5.8

Compare Source

Patch Changes
  • fix: prevent excessive Vite dependency optimizations on navigation (#​12182)
sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

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)

saadeghi/daisyui (daisyui)

v4.12.10

Compare Source

Bug Fixes

v4.12.9

Compare Source

Bug Fixes

v4.12.8

Compare Source

Bug Fixes
  • decrease default scrollbar color contrast using color-mix (92d98ed)

v4.12.7

Compare Source

Bug Fixes

v4.12.6

Compare Source

v4.12.5

Compare Source

Bug Fixes

v4.12.4

Compare Source

Bug Fixes

v4.12.3

Compare Source

v4.12.2

Compare Source

sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v2.41.0

Compare Source

Minor Changes
Patch Changes

v2.40.0

Compare Source

Minor Changes
Patch Changes

v2.39.5

Compare Source

Patch Changes

v2.39.4

Compare Source

Patch Changes

v2.39.3

Compare Source

Patch Changes

v2.39.2

Compare Source

Patch Changes

v2.39.1

Compare Source

Patch Changes
postcss/postcss (postcss)

v8.4.39

Compare Source

prettier/prettier (prettier)

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

sveltejs/prettier-plugin-svelte (prettier-plugin-svelte)

v3.2.5

Compare Source

  • (fix) Svelte 5: format TypeScript in the template

v3.2.4

Compare Source

  • (fix) speed up regex
tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.6.5

Compare Source

  • Only re-apply string escaping when necessary (#​295)

v0.6.4

Compare Source

  • Export PluginOptions type (#​292)

v0.6.3

Compare Source

  • Improve detection of string concatenation (#​288)

v0.6.2

Compare Source

Changed
  • Only remove duplicate Tailwind classes (#​277)
  • Make sure escapes in classes are preserved in string literals (#​286)

v0.6.1

Compare Source

Added
  • Add new tailwindPreserveDuplicates option to disable removal of duplicate classes (#​276)
Fixed
  • Improve handling of whitespace removal when concatenating strings (#​276)
  • Fix a bug where Angular expressions may produce invalid code after sorting (#​276)
  • Disabled whitespace and duplicate class removal for Liquid and Svelte (#​276)

v0.6.0

Compare Source

Changed
  • Remove duplicate classes (#​272)
  • Remove extra whitespace around classes (#​272)
sveltejs/svelte (svelte)

v4.2.18

Compare Source

Patch Changes

v4.2.17

Compare Source

Patch Changes
  • fix: correctly handle falsy values of style directives in SSR mode (#​11584)
sveltejs/language-tools (svelte-check)

v3.8.4

Compare Source

  • fix: ensure bindings and exports work properly for Svelte 5 + TS5.5

v3.8.3

Compare Source

  • fix: detect root snippets correctly
  • fix: prevent false positive store declarations (#​2422)

v3.8.2

Compare Source

v3.8.1

Compare Source

  • fix: adjust ambient module snipping logic
  • chore: speed up regex

v3.8.0

Compare Source

  • fix: allow for whitespace in snippets declaration (#​2366)
  • fix: allow as expressions for bindable props (#​2372)
  • fix: force correct semantic tokens for $props types (#​2379)
  • feat: Svelte 5 component class/function interop (#​2380)
tailwindlabs/tailwindcss (tailwindcss)

v3.4.4

Compare Source

Fixed
  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#​13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#​13770)
  • Support negative values for {col,row}-{start,end} utilities (#​13781)
  • Update embedded browserslist database (#​13792)
Microsoft/tslib (tslib)

v2.6.3

Compare Source

What's Changed

Full Changelog: https://github.com/microsoft/tslib/compare/v2.6.2...v2.6.3

Microsoft/TypeScript (typescript)

v5.5.3: TypeScript 5.5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.2: TypeScript 5.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

typescript-eslint/typescript-eslint (typescript-eslint)

v7.15.0

Compare Source

🚀 Features
  • eslint-plugin: back-port new rules around empty object types from v8
🩹 Fixes
  • disable EXPERIMENTAL_useProjectService in disabled-type-checked shared config
️ Thank You
  • auvred
  • Kim Sang Du
  • rgehbt
  • Vinccool96

You can read about our versioning strategy and releases on our website.

v7.14.1

Compare Source

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 and releases on our website.

v7.14.0

Compare Source

🚀 Features
  • support TypeScript 5.5
️ Thank You
  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

You can read about our versioning strategy and releases on our website.

v7.13.1

Compare Source

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 and releases on our website.

v7.13.0

Compare Source

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 and releases on our website.

v7.12.0

Compare Source

🚀 Features
  • eslint-plugin: [no-useless-template-literals] rename to no-useless-template-expression (deprecate no-useless-template-literals)
🩹 Fixes
  • no-useless-template-expression -> no-unnecessary-template-expression
️ Thank You
  • Abraham Guo
  • Han Yeong-woo
  • Joshua Chen
  • Kim Sang Du
  • Kirk Waiblinger
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v7.11.0

Compare Source

🚀 Features
  • eslint-plugin: deprecate prefer-ts-expect-error in favor of ban-ts-comment
️ Thank You
  • Abraham Guo
  • auvred
  • Dom Armstrong
  • Kirk Waiblinger

You can read about our versioning strategy and releases on our website.

v7.10.0

Compare Source

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 and releases on our website.

v7.9.0

Compare Source

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 and releases on our website.

vitejs/vite (vite)

v5.3.2

Compare Source

v5.3.1

v5.3.0

Features
Performance
Fixes
Chore
Previous Changelogs
5.3.0-beta.2 (2024-06-10)

See 5.3.0-beta.2 changelog

5.3.0-beta.1 (2024-06-07)

See 5.3.0-beta.1 changelog

5.3.0-beta.0 (2024-05-30)

See 5.3.0-beta.0 changelog

v5.2.13

Compare Source

Please refer to CHANGELOG.md for details.

v5.2.12

Compare Source


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 MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


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

This MR has been generated by Renovate Bot.

Edited by renovate

Merge request reports