Version Packages (next) (#13603)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13622/head svelte@5.0.0-next.266
github-actions[bot] 2 months ago committed by GitHub
parent 76067a5fbc
commit a17a28b30e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -58,6 +58,7 @@
"bright-falcons-float", "bright-falcons-float",
"bright-needles-pretend", "bright-needles-pretend",
"bright-peas-juggle", "bright-peas-juggle",
"bright-seas-brake",
"bright-snakes-sing", "bright-snakes-sing",
"brown-geckos-fry", "brown-geckos-fry",
"brown-houses-obey", "brown-houses-obey",
@ -94,6 +95,7 @@
"clean-eels-beg", "clean-eels-beg",
"clean-melons-wash", "clean-melons-wash",
"clean-shirts-yawn", "clean-shirts-yawn",
"clean-sloths-nail",
"clever-chefs-relate", "clever-chefs-relate",
"clever-maps-travel", "clever-maps-travel",
"clever-rockets-burn", "clever-rockets-burn",
@ -318,6 +320,7 @@
"great-icons-retire", "great-icons-retire",
"great-plums-pretend", "great-plums-pretend",
"green-baboons-sip", "green-baboons-sip",
"green-cameras-bake",
"green-eggs-approve", "green-eggs-approve",
"green-fishes-lie", "green-fishes-lie",
"green-hounds-play", "green-hounds-play",
@ -513,6 +516,7 @@
"nervous-dolphins-allow", "nervous-dolphins-allow",
"nervous-ducks-repeat", "nervous-ducks-repeat",
"nervous-spoons-relax", "nervous-spoons-relax",
"nervous-squids-drop",
"nervous-turkeys-end", "nervous-turkeys-end",
"new-baboons-fetch", "new-baboons-fetch",
"new-boats-wait", "new-boats-wait",
@ -709,6 +713,7 @@
"silent-rocks-yell", "silent-rocks-yell",
"silly-ducks-mix", "silly-ducks-mix",
"silly-fishes-deny", "silly-fishes-deny",
"silly-houses-promise",
"silly-laws-happen", "silly-laws-happen",
"silly-lies-film", "silly-lies-film",
"silly-masks-exist", "silly-masks-exist",

@ -1,5 +1,19 @@
# svelte # svelte
## 5.0.0-next.266
### Patch Changes
- feat: add hidden until-found and beforematch ([#13612](https://github.com/sveltejs/svelte/pull/13612))
- fix: ensure local prop value is read during teardown ([#13611](https://github.com/sveltejs/svelte/pull/13611))
- fix: take snippets into account when scoping CSS ([#13589](https://github.com/sveltejs/svelte/pull/13589))
- breaking: scope `:not(...)` selectors ([#13568](https://github.com/sveltejs/svelte/pull/13568))
- breaking: scope `:has(...)` selectors ([#13567](https://github.com/sveltejs/svelte/pull/13567))
## 5.0.0-next.265 ## 5.0.0-next.265
### Patch Changes ### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte", "name": "svelte",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"license": "MIT", "license": "MIT",
"version": "5.0.0-next.265", "version": "5.0.0-next.266",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.0.0-next.265'; export const VERSION = '5.0.0-next.266';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save