Skip to content

Commit a03be13

Browse files
authored
Merge branch 'main' into feat/expose-remote-form-submitted
2 parents 4458e86 + d3fe110 commit a03be13

File tree

12 files changed

+31
-33
lines changed

12 files changed

+31
-33
lines changed

.changeset/empty-animals-retire.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/poor-heads-fix.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/shy-clocks-smoke.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/twenty-papers-unite.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

documentation/docs/20-core-concepts/10-routing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,9 @@ By exporting `POST`/`PUT`/`PATCH`/`DELETE`/`OPTIONS`/`HEAD` handlers, `+server.j
319319
```svelte
320320
<!--- file: src/routes/add/+page.svelte --->
321321
<script>
322-
let a = 0;
323-
let b = 0;
324-
let total = 0;
322+
let a = $state(0);
323+
let b = $state(0);
324+
let total = $state(0);
325325

326326
async function add() {
327327
const response = await fetch('/api/add', {

documentation/docs/40-best-practices/20-seo.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ export async function GET() {
3939
`
4040
<?xml version="1.0" encoding="UTF-8" ?>
4141
<urlset
42-
xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
43-
xmlns:xhtml="https://www.w3.org/1999/xhtml"
44-
xmlns:mobile="https://www.google.com/schemas/sitemap-mobile/1.0"
45-
xmlns:news="https://www.google.com/schemas/sitemap-news/0.9"
46-
xmlns:image="https://www.google.com/schemas/sitemap-image/1.1"
47-
xmlns:video="https://www.google.com/schemas/sitemap-video/1.1"
42+
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
43+
xmlns:xhtml="http://www.w3.org/1999/xhtml"
44+
xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0"
45+
xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
46+
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
47+
xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"
4848
>
4949
<!-- <url> elements go here -->
5050
</urlset>`.trim(),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"prettier-plugin-svelte": "^3.4.0",
3434
"typescript-eslint": "catalog:"
3535
},
36-
"packageManager": "pnpm@10.20.0",
36+
"packageManager": "pnpm@10.22.0",
3737
"engines": {
3838
"pnpm": ">=9.0.0"
3939
},

packages/enhanced-img/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @sveltejs/enhanced-img
22

3+
## 0.8.5
4+
### Patch Changes
5+
6+
7+
- fix: warn rather than crash when non-enhanced image dynamically passed to `enhanced:img` ([#14845](https://github.com/sveltejs/kit/pull/14845))
8+
39
## 0.8.4
410
### Patch Changes
511

packages/enhanced-img/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sveltejs/enhanced-img",
3-
"version": "0.8.4",
3+
"version": "0.8.5",
44
"description": "Image optimization for your Svelte apps",
55
"repository": {
66
"type": "git",

packages/kit/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @sveltejs/kit
22

3+
## 2.48.5
4+
### Patch Changes
5+
6+
7+
- fix: wait an extra microtask in dev before calling `$_init_$` ([#14799](https://github.com/sveltejs/kit/pull/14799))
8+
9+
10+
- fix: discard preload fork before creating a new one ([#14865](https://github.com/sveltejs/kit/pull/14865))
11+
12+
13+
- fix: delete `RemoteFormAllIssue`, add `path` to `RemoteFormIssue` ([#14864](https://github.com/sveltejs/kit/pull/14864))
14+
315
## 2.48.4
416
### Patch Changes
517

0 commit comments

Comments
 (0)