Skip to content

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
@eslint/js (source) ^9.15.0 -> ^9.16.0 age adoption passing confidence
@sveltejs/kit (source) ^2.8.3 -> ^2.9.0 age adoption passing confidence
@sveltejs/vite-plugin-svelte-inspector (source) ^4.0.0 -> ^4.0.1 age adoption passing confidence
@types/node (source) ^22.9.3 -> ^22.10.1 age adoption passing confidence
carbon-components-svelte ^0.86.1 -> ^0.86.2 age adoption passing confidence
carbon-preprocess-svelte ^0.11.7 -> ^0.11.8 age adoption passing confidence
dts-buddy ^0.5.3 -> ^0.5.4 age adoption passing confidence
eslint (source) ^9.15.0 -> ^9.16.0 age adoption passing confidence
eslint-plugin-svelte (source) ^2.46.0 -> ^2.46.1 age adoption passing confidence
globals ^15.12.0 -> ^15.13.0 age adoption passing confidence
magic-string ^0.30.13 -> ^0.30.14 age adoption passing confidence
pnpm (source) 9.14.2 -> 9.14.4 age adoption passing confidence
prettier (source) ^3.3.3 -> ^3.4.1 age adoption passing confidence
svelte (source) ^5.2.7 -> ^5.3.1 age adoption passing confidence
typescript-eslint (source) ^8.15.0 -> ^8.16.0 age adoption passing confidence
vite (source) ^6.0.0 -> ^6.0.2 age adoption passing confidence
vite (source) ^6.0.0-beta.10 -> ^6.0.2 age adoption passing confidence
vitefu ^1.0.3 -> ^1.0.4 age adoption passing confidence
vitest (source) ^2.1.5 -> ^2.1.6 age adoption passing confidence

Release Notes

eslint/eslint (@​eslint/js)

v9.16.0

Compare Source

sveltejs/kit (@​sveltejs/kit)

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)
sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte-inspector)

v4.0.1

Compare Source

Patch Changes
carbon-design-system/carbon-components-svelte (carbon-components-svelte)

v0.86.2

Compare Source

carbon-design-system/carbon-preprocess-svelte (carbon-preprocess-svelte)

v0.11.8

Compare Source

Fixes

  • de-dupe selectors in component index
  • preserve comments in TypeScript definitions
Rich-Harris/dts-buddy (dts-buddy)

v0.5.4

Compare Source

  • Support TypeScript 5.6 and 5.7 (#​91)
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

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

v2.46.1

Compare Source

Patch Changes
sindresorhus/globals (globals)

v15.13.0

Compare Source

rich-harris/magic-string (magic-string)

v0.30.14

Compare Source

Features
pnpm/pnpm (pnpm)

v9.14.4

Compare Source

v9.14.3

Compare Source

prettier/prettier (prettier)

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

sveltejs/svelte (svelte)

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)

v5.2.9

Compare Source

Patch Changes
  • fix: show :then block for null/undefined value (#​14440)

  • fix: relax html parent validation (#​14442)

  • fix: prevent memory leak when creating deriveds inside untrack (#​14443)

  • fix: disregard TypeScript nodes when pruning CSS (#​14446)

v5.2.8

Compare Source

Patch Changes
  • fix: correctly prune each blocks (#​14403)

  • fix: provide temporary LegacyComponentType (#​14257)

  • fix: attach spread attribute events synchronously (#​14387)

  • fix: ensure last empty text node correctly hydrates (#​14425)

  • fix: correctly prune key blocks (#​14403)

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

v8.16.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)

v6.0.2

Compare Source

v6.0.1

Compare Source

svitejs/vitefu (vitefu)

v1.0.4

Compare Source

  • Allow Vite 6 peer dependency (remove beta support)
vitest-dev/vitest (vitest)

v2.1.6

Compare Source

🚀 Features

  • Support VIte 6
    View changes on GitHub

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 label Dec 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5d5c2ee to 3d70e81 Compare December 2, 2024 08:16
@dominikg dominikg merged commit 12dc87c into main Dec 2, 2024
6 checks passed
@dominikg dominikg deleted the renovate/all-minor-patch branch December 2, 2024 09:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant