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 #13920

Merged
merged 1 commit into from
Oct 25, 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/blue-boats-call.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gentle-bulldogs-cough.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/giant-bags-wash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-wombats-cheer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shy-penguins-beg.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-buttons-juggle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-dogs-obey.md

This file was deleted.

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

## 5.1.3

### Patch Changes

- fix: rethrow errors from await block if no catch block exists ([#13819](https://github.com/sveltejs/svelte/pull/13819))

- fix: ensure SVG element attributes have case preserved ([#13935](https://github.com/sveltejs/svelte/pull/13935))

- fix: ensure bind:group works as intended with proxied state objects ([#13939](https://github.com/sveltejs/svelte/pull/13939))

- fix: ensure value is correctly set to zero on the progress element ([#13924](https://github.com/sveltejs/svelte/pull/13924))

- fix: skip comment nodes in snippet validation logic ([#13936](https://github.com/sveltejs/svelte/pull/13936))

- fix: typo in `Action` types ([#13874](https://github.com/sveltejs/svelte/pull/13874))

- fix: remove metadata from legacy AST ([#13927](https://github.com/sveltejs/svelte/pull/13927))

## 5.1.2

### 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.2",
"version": "5.1.3",
"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.2';
export const VERSION = '5.1.3';
export const PUBLIC_VERSION = '5';