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

Merged
merged 1 commit into from
Sep 20, 2023
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/chilled-tigers-tie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eighty-poems-deliver.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/famous-news-perform.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-wolves-dream.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-mugs-tie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-terms-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-tomatoes-warn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-poems-remember.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-planets-rush.md

This file was deleted.

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

## 4.2.1

### Patch Changes

- fix: update style directive when style attribute is present and is updated via an object prop ([#9187](https://github.com/sveltejs/svelte/pull/9187))

- fix: css sourcemap generation with unicode filenames ([#9120](https://github.com/sveltejs/svelte/pull/9120))

- fix: do not add module declared variables as dependencies ([#9122](https://github.com/sveltejs/svelte/pull/9122))

- fix: handle `svelte:element` with dynamic this and spread attributes ([#9112](https://github.com/sveltejs/svelte/pull/9112))

- fix: silence false positive reactive component warning ([#9094](https://github.com/sveltejs/svelte/pull/9094))

- fix: head duplication when binding is present ([#9124](https://github.com/sveltejs/svelte/pull/9124))

- fix: take custom attribute name into account when reflecting property ([#9140](https://github.com/sveltejs/svelte/pull/9140))

- fix: add `indeterminate` to the list of HTMLAttributes ([#9180](https://github.com/sveltejs/svelte/pull/9180))

- fix: recognize option value on spread attribute ([#9125](https://github.com/sveltejs/svelte/pull/9125))

## 4.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "4.2.0",
"version": "4.2.1",
"description": "Cybernetically enhanced web apps",
"type": "module",
"module": "src/runtime/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/shared/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 = '4.2.0';
export const VERSION = '4.2.1';
export const PUBLIC_VERSION = '4';