Skip to content

Commit 9086055

Browse files
Version Packages (#8855)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b0a3fa1 commit 9086055

File tree

8 files changed

+18
-31
lines changed

8 files changed

+18
-31
lines changed

.changeset/eight-emus-allow.md

-5
This file was deleted.

.changeset/long-humans-dress.md

-5
This file was deleted.

.changeset/neat-feet-accept.md

-5
This file was deleted.

.changeset/pretty-tools-whisper.md

-5
This file was deleted.

.changeset/thick-trains-unite.md

-5
This file was deleted.

packages/svelte/CHANGELOG.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# svelte
22

3+
## 4.0.1
4+
5+
### Patch Changes
6+
7+
- fix: ensure identifiers in destructuring contexts don't clash with existing ones ([#8840](https://github.com/sveltejs/svelte/pull/8840))
8+
9+
- fix: ensure `createEventDispatcher` and `ActionReturn` work with types from generic function parameters ([#8872](https://github.com/sveltejs/svelte/pull/8872))
10+
11+
- fix: apply transition to `<svelte:element>` with local transition ([#8865](https://github.com/sveltejs/svelte/pull/8865))
12+
13+
- fix: relax a11y "no redundant role" rule for li, ul, ol ([#8867](https://github.com/sveltejs/svelte/pull/8867))
14+
15+
- fix: remove tsconfig.json from published package ([#8859](https://github.com/sveltejs/svelte/pull/8859))
16+
317
## 4.0.0
418

519
### Major Changes
@@ -24,8 +38,8 @@
2438

2539
- breaking: Stricter types for `Action` and `ActionReturn` (see PR for migration instructions) ([#7442](https://github.com/sveltejs/svelte/pull/7442))
2640

27-
- breaking: Stricter types for `onMount` - now throws a type error when returning a function asynchronously to catch potential mistakes around callback functions
28-
(see PR for migration instructions) ([#8136](https://github.com/sveltejs/svelte/pull/8136))
41+
- breaking: Stricter types for `onMount` - now throws a type error when returning a function asynchronously to catch potential mistakes around callback functions
42+
(see PR for migration instructions) ([#8136](https://github.com/sveltejs/svelte/pull/8136))
2943

3044
- 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))
3145

@@ -49,7 +63,6 @@
4963

5064
### Minor Changes
5165

52-
5366
- Add a way to modify attributes for script/style preprocessors ([#8618](https://github.com/sveltejs/svelte/pull/8618))
5467

5568
- 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 @@
7083

7184
### Patch Changes
7285

73-
7486
- Bind `null` option and input values consistently ([#8312](https://github.com/sveltejs/svelte/issues/8312))
7587

7688
- Allow `$store` to be used with changing values including nullish values ([#7555](https://github.com/sveltejs/svelte/issues/7555))

packages/svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Cybernetically enhanced web apps",
55
"type": "module",
66
"module": "src/runtime/index.js",

packages/svelte/src/shared/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
* https://svelte.dev/docs/svelte-compiler#svelte-version
77
* @type {string}
88
*/
9-
export const VERSION = '4.0.0';
9+
export const VERSION = '4.0.1';
1010
export const PUBLIC_VERSION = '4';

0 commit comments

Comments
 (0)