Version Packages (next) (#11433)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11440/head
github-actions[bot] 2 months ago committed by GitHub
parent 9c1a5063b9
commit c0e91a7490
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -126,6 +126,7 @@
"forty-dolls-wave",
"forty-peaches-unite",
"forty-suns-smile",
"four-balloons-beam",
"four-flies-hammer",
"four-mice-hammer",
"four-pugs-listen",
@ -328,6 +329,7 @@
"selfish-socks-smile",
"selfish-spies-help",
"selfish-tools-hide",
"serious-bobcats-carry",
"serious-crabs-punch",
"serious-gorillas-eat",
"serious-kids-deliver",
@ -459,11 +461,13 @@
"twelve-dragons-join",
"twelve-onions-juggle",
"twelve-worms-jog",
"two-candles-move",
"two-dragons-yell",
"two-falcons-buy",
"unlucky-boxes-obey",
"unlucky-steaks-warn",
"unlucky-trees-lick",
"violet-mugs-behave",
"violet-pigs-jam",
"weak-drinks-speak",
"weak-frogs-bow",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.122
### Patch Changes
- fix: mark function properties on runes as deprecated for better intellisense ([#11439](https://github.com/sveltejs/svelte/pull/11439))
- fix: only warn about non-reactive state in runes mode ([#11434](https://github.com/sveltejs/svelte/pull/11434))
- fix: prevent ownership validation from infering with component context ([#11438](https://github.com/sveltejs/svelte/pull/11438))
- fix: ensure $inspect untracks inspected object ([#11432](https://github.com/sveltejs/svelte/pull/11432))
## 5.0.0-next.121
### Patch Changes

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

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

Loading…
Cancel
Save