Version Packages (next) (#10158)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10171/head svelte@5.0.0-next.34
github-actions[bot] 9 months ago committed by GitHub
parent c3e30efeb2
commit 2e9e8e8454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,6 +15,7 @@
"brave-walls-destroy", "brave-walls-destroy",
"breezy-carrots-flash", "breezy-carrots-flash",
"bright-peas-juggle", "bright-peas-juggle",
"bright-snakes-sing",
"brown-spoons-boil", "brown-spoons-boil",
"chatty-cups-drop", "chatty-cups-drop",
"chatty-taxis-juggle", "chatty-taxis-juggle",
@ -76,6 +77,7 @@
"itchy-terms-guess", "itchy-terms-guess",
"khaki-mails-draw", "khaki-mails-draw",
"khaki-moose-arrive", "khaki-moose-arrive",
"kind-baboons-approve",
"kind-deers-lay", "kind-deers-lay",
"kind-eagles-join", "kind-eagles-join",
"large-clouds-carry", "large-clouds-carry",
@ -102,6 +104,7 @@
"neat-dingos-clap", "neat-dingos-clap",
"new-boats-wait", "new-boats-wait",
"ninety-dingos-walk", "ninety-dingos-walk",
"odd-buckets-lie",
"odd-needles-joke", "odd-needles-joke",
"odd-schools-wait", "odd-schools-wait",
"odd-shoes-cheat", "odd-shoes-cheat",
@ -132,6 +135,7 @@
"serious-socks-cover", "serious-socks-cover",
"serious-zebras-scream", "serious-zebras-scream",
"seven-deers-jam", "seven-deers-jam",
"seven-jobs-sniff",
"seven-ravens-check", "seven-ravens-check",
"sharp-gorillas-impress", "sharp-gorillas-impress",
"sharp-kids-happen", "sharp-kids-happen",
@ -143,6 +147,7 @@
"slimy-walls-draw", "slimy-walls-draw",
"slow-beds-shave", "slow-beds-shave",
"slow-chefs-dream", "slow-chefs-dream",
"slow-wombats-reply",
"small-papayas-laugh", "small-papayas-laugh",
"smart-parents-swim", "smart-parents-swim",
"smart-zebras-pay", "smart-zebras-pay",
@ -151,6 +156,7 @@
"soft-tigers-wink", "soft-tigers-wink",
"sour-forks-stare", "sour-forks-stare",
"sour-rules-march", "sour-rules-march",
"sour-weeks-fix",
"spicy-plums-admire", "spicy-plums-admire",
"spotty-pens-agree", "spotty-pens-agree",
"stale-books-perform", "stale-books-perform",

@ -1,5 +1,21 @@
# svelte # svelte
## 5.0.0-next.34
### Patch Changes
- fix: make `@types/estree` a dependency ([#10150](https://github.com/sveltejs/svelte/pull/10150))
- fix: improve intro transitions on dynamic mount ([#10162](https://github.com/sveltejs/svelte/pull/10162))
- fix: improve code generation ([#10156](https://github.com/sveltejs/svelte/pull/10156))
- fix: adjust `$inspect.with` type ([`c7cb90c91`](https://github.com/sveltejs/svelte/commit/c7cb90c91cd3553ad59126267c9bfddecbb290b4))
- fix: improve how transitions are handled on mount ([#10157](https://github.com/sveltejs/svelte/pull/10157))
- fix: adjust `parse` return type ([`a271878ab`](https://github.com/sveltejs/svelte/commit/a271878abe7018923839401129b18082eb2c811a))
## 5.0.0-next.33 ## 5.0.0-next.33
### 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.33", "version": "5.0.0-next.34",
"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.33'; export const VERSION = '5.0.0-next.34';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save