From 90860550ae33909bbd3a04e52ecaec5d754f5d21 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Jun 2023 09:35:31 +0200 Subject: [PATCH] Version Packages (#8855) Co-authored-by: github-actions[bot] --- .changeset/eight-emus-allow.md | 5 ----- .changeset/long-humans-dress.md | 5 ----- .changeset/neat-feet-accept.md | 5 ----- .changeset/pretty-tools-whisper.md | 5 ----- .changeset/thick-trains-unite.md | 5 ----- packages/svelte/CHANGELOG.md | 20 ++++++++++++++++---- packages/svelte/package.json | 2 +- packages/svelte/src/shared/version.js | 2 +- 8 files changed, 18 insertions(+), 31 deletions(-) delete mode 100644 .changeset/eight-emus-allow.md delete mode 100644 .changeset/long-humans-dress.md delete mode 100644 .changeset/neat-feet-accept.md delete mode 100644 .changeset/pretty-tools-whisper.md delete mode 100644 .changeset/thick-trains-unite.md diff --git a/.changeset/eight-emus-allow.md b/.changeset/eight-emus-allow.md deleted file mode 100644 index 4c6e084391..0000000000 --- a/.changeset/eight-emus-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: ensure identifiers in destructuring contexts don't clash with existing ones diff --git a/.changeset/long-humans-dress.md b/.changeset/long-humans-dress.md deleted file mode 100644 index bc9cf8b40e..0000000000 --- a/.changeset/long-humans-dress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: ensure `createEventDispatcher` and `ActionReturn` work with types from generic function parameters diff --git a/.changeset/neat-feet-accept.md b/.changeset/neat-feet-accept.md deleted file mode 100644 index f045be3c2f..0000000000 --- a/.changeset/neat-feet-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: apply transition to `` with local transition diff --git a/.changeset/pretty-tools-whisper.md b/.changeset/pretty-tools-whisper.md deleted file mode 100644 index 8af633242f..0000000000 --- a/.changeset/pretty-tools-whisper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: relax a11y "no redundant role" rule for li, ul, ol diff --git a/.changeset/thick-trains-unite.md b/.changeset/thick-trains-unite.md deleted file mode 100644 index 18795469cd..0000000000 --- a/.changeset/thick-trains-unite.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: remove tsconfig.json from published package diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index ae461231a3..ffa517208d 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,19 @@ # svelte +## 4.0.1 + +### Patch Changes + +- fix: ensure identifiers in destructuring contexts don't clash with existing ones ([#8840](https://github.com/sveltejs/svelte/pull/8840)) + +- fix: ensure `createEventDispatcher` and `ActionReturn` work with types from generic function parameters ([#8872](https://github.com/sveltejs/svelte/pull/8872)) + +- fix: apply transition to `` with local transition ([#8865](https://github.com/sveltejs/svelte/pull/8865)) + +- fix: relax a11y "no redundant role" rule for li, ul, ol ([#8867](https://github.com/sveltejs/svelte/pull/8867)) + +- fix: remove tsconfig.json from published package ([#8859](https://github.com/sveltejs/svelte/pull/8859)) + ## 4.0.0 ### Major Changes @@ -24,8 +38,8 @@ - breaking: Stricter types for `Action` and `ActionReturn` (see PR for migration instructions) ([#7442](https://github.com/sveltejs/svelte/pull/7442)) -- breaking: Stricter types for `onMount` - now throws a type error when returning a function asynchronously to catch potential mistakes around callback functions -(see PR for migration instructions) ([#8136](https://github.com/sveltejs/svelte/pull/8136)) +- breaking: Stricter types for `onMount` - now throws a type error when returning a function asynchronously to catch potential mistakes around callback functions + (see PR for migration instructions) ([#8136](https://github.com/sveltejs/svelte/pull/8136)) - breaking: Overhaul and drastically improve creating custom elements with Svelte (see PR for list of changes and migration instructions) ([#8457](https://github.com/sveltejs/svelte/pull/8457)) @@ -49,7 +63,6 @@ ### Minor Changes - - Add a way to modify attributes for script/style preprocessors ([#8618](https://github.com/sveltejs/svelte/pull/8618)) - Improve hydration speed by adding `data-svelte-h` attribute to detect unchanged HTML elements ([#7426](https://github.com/sveltejs/svelte/pull/7426)) @@ -70,7 +83,6 @@ ### Patch Changes - - Bind `null` option and input values consistently ([#8312](https://github.com/sveltejs/svelte/issues/8312)) - Allow `$store` to be used with changing values including nullish values ([#7555](https://github.com/sveltejs/svelte/issues/7555)) diff --git a/packages/svelte/package.json b/packages/svelte/package.json index db67187f5f..22c457602d 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "svelte", - "version": "4.0.0", + "version": "4.0.1", "description": "Cybernetically enhanced web apps", "type": "module", "module": "src/runtime/index.js", diff --git a/packages/svelte/src/shared/version.js b/packages/svelte/src/shared/version.js index 8ad21bf987..835c2fda5b 100644 --- a/packages/svelte/src/shared/version.js +++ b/packages/svelte/src/shared/version.js @@ -6,5 +6,5 @@ * https://svelte.dev/docs/svelte-compiler#svelte-version * @type {string} */ -export const VERSION = '4.0.0'; +export const VERSION = '4.0.1'; export const PUBLIC_VERSION = '4';