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

Version Packages #14031

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/beige-stingrays-sip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eighty-icons-fold.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eighty-pianos-sip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/giant-wombats-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-queens-reflect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/red-berries-watch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-frogs-fetch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-bobcats-add.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-icons-sort.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-timers-shop.md

This file was deleted.

24 changes: 24 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# svelte

## 5.1.5

### Patch Changes

- fix: replace typo in compiler error messages ([#14044](https://github.com/sveltejs/svelte/pull/14044))

- fix: preserve the separator between selectors when an unused selector is in between ([#13954](https://github.com/sveltejs/svelte/pull/13954))

- fix: more robust re-subscribe detection for `fromStore` ([#13995](https://github.com/sveltejs/svelte/pull/13995))

- fix: allow to pass in TS preference to migration ([#13929](https://github.com/sveltejs/svelte/pull/13929))

- fix: extend derived/state validation error to indirect exports ([#14039](https://github.com/sveltejs/svelte/pull/14039))

- fix: minify inject CSS in prod mode ([#14006](https://github.com/sveltejs/svelte/pull/14006))

- fix: ensure toStore subscription correctly syncs latest value ([#14015](https://github.com/sveltejs/svelte/pull/14015))

- fix: don't access `requestAnimationFrame` until needed to reduce need for mocks during testing ([#14040](https://github.com/sveltejs/svelte/pull/14040))

- fix: ensure element effects are executed in the correct order ([#14038](https://github.com/sveltejs/svelte/pull/14038))

- fix: make compiler error extend from `Error` ([#14036](https://github.com/sveltejs/svelte/pull/14036))

## 5.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.1.4",
"version": "5.1.5",
"type": "module",
"types": "./types/index.d.ts",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.1.4';
export const VERSION = '5.1.5';
export const PUBLIC_VERSION = '5';