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 Change Age Adoption Passing Confidence
daisyui (source) ^2.51.4 -> ^2.51.5 age adoption passing confidence
prettier (source) ^2.8.5 -> ^2.8.6 age adoption passing confidence
prettier-plugin-svelte ^2.9.0 -> ^2.10.0 age adoption passing confidence

Release Notes

saadeghi/daisyui

v2.51.5

Compare Source

prettier/prettier

v2.8.6

Compare Source

diff

Allow decorators on private members and class expressions (#​14548 by @​fisker)
// Input
class A {
  @​decorator()
  #privateMethod () {}
}

// Prettier 2.8.5
SyntaxError: Decorators are not valid here. (2:3)
  1 | class A {
> 2 |   @​decorator()
    |   ^^^^^^^^^^^^
  3 |   #privateMethod () {}
  4 | }

// Prettier 2.8.6
class A {
  @​decorator()
  #privateMethod() {}
}
sveltejs/prettier-plugin-svelte

v2.10.0

Compare Source

  • (feat) support requirePragma and insertPragma options (#​350)
  • (feat) support <svelte:document>
  • (feat) trim whitespace in class attributes (#​339)
  • (feat) allow multiple comments atop of script/style tags (#​291)
  • (fix) handle script/style attributes without quotes (#​344)

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