Skip to content
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

fix(deps): update all non-major dependencies #12579

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 2, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@bluwy/giget-core ^0.1.1 -> ^0.1.2 age adoption passing confidence
@preact/signals (source) ^1.3.0 -> ^1.3.1 age adoption passing confidence
@preact/signals (source) 1.3.0 -> 1.3.1 age adoption passing confidence
@types/alpinejs (source) ^3.13.10 -> ^3.13.11 age adoption passing confidence
@vitejs/plugin-vue-jsx (source) ^4.0.1 -> ^4.1.1 age adoption passing confidence
@vue/compiler-sfc (source) ^3.5.12 -> ^3.5.13 age adoption passing confidence
alpinejs (source) ^3.14.3 -> ^3.14.6 age adoption passing confidence
eslint (source) ^9.15.0 -> ^9.16.0 age adoption passing confidence
preact (source) ^10.25.0 -> ^10.25.1 age adoption passing confidence
preact (source) ^10.24.3 -> ^10.25.1 age adoption passing confidence
prettier (source) ^3.4.1 -> ^3.4.2 age adoption passing confidence
rollup (source) ^4.27.4 -> ^4.28.0 age adoption passing confidence
sass ^1.81.0 -> ^1.82.0 age adoption passing confidence
sass ^1.80.6 -> ^1.82.0 age adoption passing confidence
shiki (source) ^1.23.1 -> ^1.24.0 age adoption passing confidence
svelte (source) ^5.2.9 -> ^5.5.3 age adoption passing confidence
svelte (source) ^5.1.16 -> ^5.5.3 age adoption passing confidence
svelte2tsx (source) ^0.7.22 -> ^0.7.30 age adoption passing confidence
tailwindcss (source) ^3.4.14 -> ^3.4.16 age adoption passing confidence
tailwindcss (source) ^3.4.15 -> ^3.4.16 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence
typescript-eslint (source) ^8.16.0 -> ^8.17.0 age adoption passing confidence
vite (source) ^6.0.1 -> ^6.0.2 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.6.3 -> ^7.6.7 age adoption passing confidence
vitest (source) ^2.1.6 -> ^2.1.8 age adoption passing confidence
vue (source) ^3.5.12 -> ^3.5.13 age adoption passing confidence
yocto-spinner ^0.1.0 -> ^0.1.1 age adoption passing confidence

Release Notes

preactjs/signals (@​preact/signals)

v1.3.1

Compare Source

Patch Changes
vitejs/vite-plugin-vue (@​vitejs/plugin-vue-jsx)

v4.1.1

v4.1.0

vuejs/core (@​vue/compiler-sfc)

v3.5.13

Compare Source

Bug Fixes
Performance Improvements
alpinejs/alpine (alpinejs)

v3.14.6

Compare Source

v3.14.5

Compare Source

Changed

  • Optimize mutation observer to better handle move operations - ref #​4450 #​4451
  • 🐛 Fixes Regression in Mutation handling #​4450

v3.14.4

Compare Source

What's Changed

Full Changelog: alpinejs/alpine@v3.14.3...v3.14.4

eslint/eslint (eslint)

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

preactjs/preact (preact)

v10.25.1

Compare Source

Fixes

Types

Maintenance

prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;
rollup/rollup (rollup)

v4.28.0

Compare Source

2024-11-30

Features
  • Allow to specify how to handle import attributes when transpiling Rollup config files (#​5743)
Pull Requests
sass/dart-sass (sass)

v1.82.0

Compare Source

Command-Line Interface
  • Improve --watch mode reliability when making multiple changes at once, such
    as checking out a different Git branch.

  • Parse the calc-size() function as a calculation now that it's supported in
    some browsers.

Dart API
  • Add a SassCalculation.calcSize() function.

v1.81.1

Compare Source

  • No user-visible changes.
shikijs/shiki (shiki)

v1.24.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
sveltejs/svelte (svelte)

v5.5.3

Compare Source

Patch Changes
  • fix: don't try to add owners to non-$state class fields (#​14533)

  • fix: capture infinite_loop_guard in error boundary (#​14534)

  • fix: proxify values when assigning using ||=, &&= and ??= operators (#​14273)

v5.5.2

Compare Source

Patch Changes
  • fix: use correct reaction when lazily creating deriveds inside SvelteDate (#​14525)

v5.5.0

Compare Source

Minor Changes
  • feat: allow snippets to be exported from module scripts (#​14315)
Patch Changes
  • fix: ignore TypeScript generics on variables (#​14509)

v5.4.0

Compare Source

Minor Changes

v5.3.2

Compare Source

Patch Changes
  • fix: correctly prune CSS for elements inside snippets (#​14494)

  • fix: render attributes during SSR regardless of case (#​14492)

v5.3.1

Compare Source

Patch Changes
  • fix: treat spread elements the same as call expressions (#​14488)

  • fix: correctly increment/decrement bigints (#​14485)

v5.3.0

Compare Source

Minor Changes
  • feat: add error boundaries with <svelte:boundary> (#​14211)

v5.2.12

Compare Source

Patch Changes
  • fix: upgrade to esm-env 1.2.1 to fix issues with non-Vite setups (#​14470)

  • fix: prevent infinite loops when pruning CSS (#​14474)

  • fix: generate correct code when encountering object expression statement (#​14480)

v5.2.11

Compare Source

Patch Changes
  • fix: ignore text and expressions outside the template when validating HTML (#​14468)

  • fix: better account for render tags when pruning CSS (#​14456)

v5.2.10

Compare Source

Patch Changes
  • fix: correctly remove unused selectors in middle of selector lists (#​14448)

  • chore: upgrade esm-env for Vite 6 support (#​14460)

  • fix: strip exported TypeScript function overloads (#​14458)

sveltejs/language-tools (svelte2tsx)

v0.7.30

Compare Source

  • fix: support each without as (#​2615)

v0.7.29

Compare Source

  • fix: ensure imports without semicolon doesn't break intellisense (#​2610)

v0.7.28

Compare Source

  • fix: ensure "organize imports" doesn't mess with generated $$Component type

v0.7.27

Compare Source

  • fix: don't move appended content from previous node while hoisting interface (#​2596)
  • fix: ensure hoisted interfaces are moved after hoisted imports (#​2597)
  • fix: preserve bind:... mapping on elements for better source maps

v0.7.26

Compare Source

  • fix: detect shadowed variables/types during type hoisting (#​2590)

v0.7.25

Compare Source

  • fix: fall back to any instead of unknown for untyped $props (#​2582)
  • fix: robustify and fix file writing (#​2584)
  • fix: hoist types related to $props rune if possible (#​2571)

v0.7.24

Compare Source

  • fix: $props: infer types for $bindable, infer function type from arrow function

v0.7.23

Compare Source

  • feat: autotype const load = ... declarations (#​2540)
  • feat: provide component instance type in Svelte 5 (#​2553)
  • fix: infer object and array shapes from fallback types (#​2562)
  • fix: ignore exported variable declarations that aren't simple identifiers when checking for valid SvelteKit exports
tailwindlabs/tailwindcss (tailwindcss)

v3.4.16

Compare Source

Fixed
  • Ensure the TypeScript types for PluginsConfig allow undefined values (#​14668)

Changed

v3.4.15

Compare Source

  • Bump versions for security vulnerabilities (#​14697)
  • Ensure the TypeScript types for the boxShadow theme configuration allows arrays (#​14856)
  • Set fallback for opacity variables to ensure setting colors with the selection:* variant works in Chrome 131 (#​15003)
microsoft/TypeScript (typescript)

v5.7.2

Compare Source

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

v8.17.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](https://main--typescript-eslint.netlify.app/users/ve


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Dec 2, 2024
Copy link

changeset-bot bot commented Dec 2, 2024

⚠️ No Changeset found

Latest commit: b2995c1

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions github-actions bot added feat: markdown Related to Markdown (scope) pkg: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope) pkg: example Related to an example package (scope) pkg: preact Related to Preact (scope) pkg: integration Related to any renderer integration (scope) pkg: create-astro Related to the `create-astro` package (scope) pkg: astro Related to the core `astro` package (scope) labels Dec 2, 2024
@github-actions github-actions bot added pkg: react Related to React (scope) pkg: solid Related to Solid (scope) labels Dec 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 04b6b87 to e2969de Compare December 2, 2024 14:51
@bluwy
Copy link
Member

bluwy commented Dec 2, 2024

Looks like Vitest (vite-node) just released a new version that removes vite 6 support, since it's causing some breaking changes: vitest-dev/vitest#6992

I think it's better to hold off resolving this PR for now until we release Astro 5.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 23f5f83 to 90d42f0 Compare December 3, 2024 21:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b99c325 to b4d281e Compare December 4, 2024 00:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file feat: markdown Related to Markdown (scope) pkg: astro Related to the core `astro` package (scope) pkg: create-astro Related to the `create-astro` package (scope) pkg: example Related to an example package (scope) pkg: integration Related to any renderer integration (scope) pkg: preact Related to Preact (scope) pkg: react Related to React (scope) pkg: solid Related to Solid (scope) pkg: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant