chore(deps): update dependency svelte to v5.1.9 #302

Merged
renovate-bot merged 1 commit from renovate/svelte-5.x-lockfile into master 2024-11-04 19:02:52 +00:00
Member

This PR contains the following updates:

Package Type Update Change
svelte (source) devDependencies patch 5.1.3 -> 5.1.9

Release Notes

sveltejs/svelte (svelte)

v5.1.9

Compare Source

Patch Changes
  • fix: ensure transitions are applied to nested elements (#​14080)

v5.1.8

Compare Source

Patch Changes
  • fix: ensure compiler statements are correctly included (#​14074)

v5.1.7

Compare Source

Patch Changes
  • fix: ensure each block inert items are disposed of if the each block is also inert (#​13930)

  • fix: allow warningFilter option for compileModule (#​14066)

  • fix: ensure onMount correctly fires when new expressions are used (#​14049)

  • fix: wrap :id, :where``:not and :has with :global during migration (#​13850)

  • fix: ensure custom element attribute/prop changes are in their own context (#​14016)

v5.1.6

Compare Source

Patch Changes
  • fix: ensure child effects are destroyed before their deriveds (#​14043)

v5.1.5

Compare Source

Patch Changes
  • fix: replace typo in compiler error messages (#​14044)

  • fix: preserve the separator between selectors when an unused selector is in between (#​13954)

  • fix: more robust re-subscribe detection for fromStore (#​13995)

  • fix: allow to pass in TS preference to migration (#​13929)

  • fix: extend derived/state validation error to indirect exports (#​14039)

  • fix: minify inject CSS in prod mode (#​14006)

  • fix: ensure toStore subscription correctly syncs latest value (#​14015)

  • fix: don't access requestAnimationFrame until needed to reduce need for mocks during testing (#​14040)

  • fix: ensure element effects are executed in the correct order (#​14038)

  • fix: make compiler error extend from Error (#​14036)

v5.1.4

Compare Source

Patch Changes
  • fix: add empty stack to CompileDiagnostic to show error on build (#​13942)

  • fix: ensure effect_tracking correctly handles tracking reactions (#​14005)

  • fix: update broken links (#​13944)

  • fix: more exhaustive check during SvelteMap.set in deriveds (#​13951)

  • fix: trim whitespace while migrating blocks (#​13941)

  • fix: update links that previously pointed to preview site (#​14001)

  • fix: properly migrate imports types prefixed with $ (#​14007)


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [svelte](https://svelte.dev) ([source](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte)) | devDependencies | patch | [`5.1.3` -> `5.1.9`](https://renovatebot.com/diffs/npm/svelte/5.1.3/5.1.9) | --- ### Release Notes <details> <summary>sveltejs/svelte (svelte)</summary> ### [`v5.1.9`](https://github.com/sveltejs/svelte/blob/HEAD/packages/svelte/CHANGELOG.md#519) [Compare Source](https://github.com/sveltejs/svelte/compare/svelte@5.1.8...svelte@5.1.9) ##### Patch Changes - fix: ensure transitions are applied to nested elements ([#&#8203;14080](https://github.com/sveltejs/svelte/pull/14080)) ### [`v5.1.8`](https://github.com/sveltejs/svelte/blob/HEAD/packages/svelte/CHANGELOG.md#518) [Compare Source](https://github.com/sveltejs/svelte/compare/svelte@5.1.7...svelte@5.1.8) ##### Patch Changes - fix: ensure compiler statements are correctly included ([#&#8203;14074](https://github.com/sveltejs/svelte/pull/14074)) ### [`v5.1.7`](https://github.com/sveltejs/svelte/blob/HEAD/packages/svelte/CHANGELOG.md#517) [Compare Source](https://github.com/sveltejs/svelte/compare/svelte@5.1.6...svelte@5.1.7) ##### Patch Changes - fix: ensure each block inert items are disposed of if the each block is also inert ([#&#8203;13930](https://github.com/sveltejs/svelte/pull/13930)) - fix: allow `warningFilter` option for `compileModule` ([#&#8203;14066](https://github.com/sveltejs/svelte/pull/14066)) - fix: ensure onMount correctly fires when new expressions are used ([#&#8203;14049](https://github.com/sveltejs/svelte/pull/14049)) - fix: wrap `:id`, `:where``:not` and `:has` with `:global` during migration ([#&#8203;13850](https://github.com/sveltejs/svelte/pull/13850)) - fix: ensure custom element attribute/prop changes are in their own context ([#&#8203;14016](https://github.com/sveltejs/svelte/pull/14016)) ### [`v5.1.6`](https://github.com/sveltejs/svelte/blob/HEAD/packages/svelte/CHANGELOG.md#516) [Compare Source](https://github.com/sveltejs/svelte/compare/svelte@5.1.5...svelte@5.1.6) ##### Patch Changes - fix: ensure child effects are destroyed before their deriveds ([#&#8203;14043](https://github.com/sveltejs/svelte/pull/14043)) ### [`v5.1.5`](https://github.com/sveltejs/svelte/blob/HEAD/packages/svelte/CHANGELOG.md#515) [Compare Source](https://github.com/sveltejs/svelte/compare/svelte@5.1.4...svelte@5.1.5) ##### Patch Changes - fix: replace typo in compiler error messages ([#&#8203;14044](https://github.com/sveltejs/svelte/pull/14044)) - fix: preserve the separator between selectors when an unused selector is in between ([#&#8203;13954](https://github.com/sveltejs/svelte/pull/13954)) - fix: more robust re-subscribe detection for `fromStore` ([#&#8203;13995](https://github.com/sveltejs/svelte/pull/13995)) - fix: allow to pass in TS preference to migration ([#&#8203;13929](https://github.com/sveltejs/svelte/pull/13929)) - fix: extend derived/state validation error to indirect exports ([#&#8203;14039](https://github.com/sveltejs/svelte/pull/14039)) - fix: minify inject CSS in prod mode ([#&#8203;14006](https://github.com/sveltejs/svelte/pull/14006)) - fix: ensure toStore subscription correctly syncs latest value ([#&#8203;14015](https://github.com/sveltejs/svelte/pull/14015)) - fix: don't access `requestAnimationFrame` until needed to reduce need for mocks during testing ([#&#8203;14040](https://github.com/sveltejs/svelte/pull/14040)) - fix: ensure element effects are executed in the correct order ([#&#8203;14038](https://github.com/sveltejs/svelte/pull/14038)) - fix: make compiler error extend from `Error` ([#&#8203;14036](https://github.com/sveltejs/svelte/pull/14036)) ### [`v5.1.4`](https://github.com/sveltejs/svelte/blob/HEAD/packages/svelte/CHANGELOG.md#514) [Compare Source](https://github.com/sveltejs/svelte/compare/svelte@5.1.3...svelte@5.1.4) ##### Patch Changes - fix: add empty stack to `CompileDiagnostic` to show error on build ([#&#8203;13942](https://github.com/sveltejs/svelte/pull/13942)) - fix: ensure effect_tracking correctly handles tracking reactions ([#&#8203;14005](https://github.com/sveltejs/svelte/pull/14005)) - fix: update broken links ([#&#8203;13944](https://github.com/sveltejs/svelte/pull/13944)) - fix: more exhaustive check during `SvelteMap.set` in deriveds ([#&#8203;13951](https://github.com/sveltejs/svelte/pull/13951)) - fix: trim whitespace while migrating blocks ([#&#8203;13941](https://github.com/sveltejs/svelte/pull/13941)) - fix: update links that previously pointed to preview site ([#&#8203;14001](https://github.com/sveltejs/svelte/pull/14001)) - fix: properly migrate imports types prefixed with $ ([#&#8203;14007](https://github.com/sveltejs/svelte/pull/14007)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMTUuMSIsInVwZGF0ZWRJblZlciI6IjM4LjExNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
renovate-bot added 1 commit 2024-11-04 17:01:52 +00:00
chore(deps): update dependency svelte to v5.1.9
Some checks failed
Build & Deploy / build (pull_request) Successful in 1m9s
Build & Deploy / build (push) Failing after 12m24s
5ddd740fc6
renovate-bot scheduled this pull request to auto merge when all checks succeed 2024-11-04 17:01:52 +00:00
renovate-bot force-pushed renovate/svelte-5.x-lockfile from 5ddd740fc6 to ca573db69c 2024-11-04 19:01:39 +00:00 Compare
renovate-bot merged commit ca573db69c into master 2024-11-04 19:02:52 +00:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: infrastructure/pages-landing-page#302
No description provided.