Skip to content

Commit 8ba9932

Browse files
committed
Merge branch 'main' into improve_server_error_logging
2 parents 911c9ef + 06e1d2c commit 8ba9932

File tree

76 files changed

+352
-372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+352
-372
lines changed

.changeset/mean-horses-divide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@sveltejs/kit': patch
3+
---
4+
5+
fix: extend `vite-plugin-svelte`'s `Config` type instead of duplicating it

.changeset/moody-baboons-drum.md

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

.changeset/spotty-ideas-clap.md

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

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Issues with the [**soon**](https://github.com/sveltejs/kit/issues?q=is%3Aissue+i
6969

7070
## Testing
7171

72-
Run `pnpm test` to run the tests from all subpackages. Browser tests live in subdirectories of `packages/kit/test` such as `packages/kit/test/apps/basics`.
72+
Run `pnpm test:kit` to run the tests from the `packages/kit` directory. You can also run `pnpm test:others` to run tests from all packages __except__ the `packages/kit` directory. Browser tests live in subdirectories of `packages/kit/test` such as `packages/kit/test/apps/basics`.
7373

7474
You can run the tests for only a single package by first moving to that directory. E.g. `cd packages/kit`.
7575

eslint.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ export default [
4141
'packages/kit/test/build-errors/**/*',
4242
'packages/kit/test/prerendering/**/*',
4343
'packages/package/test/errors/**/*',
44-
'packages/package/test/fixtures/**/*'
44+
'packages/package/test/fixtures/**/*',
45+
'packages/test-redirect-importer/index.js'
4546
]
4647
}
4748
];

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"prettier-plugin-svelte": "^3.4.0",
3232
"typescript-eslint": "^8.35.0"
3333
},
34-
"packageManager": "pnpm@10.12.4",
34+
"packageManager": "pnpm@10.13.1",
3535
"engines": {
3636
"pnpm": ">=9.0.0"
3737
},

packages/adapter-cloudflare/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @sveltejs/adapter-cloudflare
22

3+
## 7.0.5
4+
### Patch Changes
5+
6+
7+
- fix: deprecate `platform.context` in favor of `platform.ctx` to align with Cloudflare's naming convention ([#13856](https://github.com/sveltejs/kit/pull/13856))
8+
9+
- Updated dependencies [[`bcdaf21`](https://github.com/sveltejs/kit/commit/bcdaf215c2182524e7678a1049a5f1ccbbe71e21)]:
10+
- @sveltejs/kit@2.22.3
11+
312
## 7.0.4
413
### Patch Changes
514

packages/adapter-cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sveltejs/adapter-cloudflare",
3-
"version": "7.0.4",
3+
"version": "7.0.5",
44
"description": "Adapter for building SvelteKit applications on Cloudflare Pages with Workers integration",
55
"keywords": [
66
"adapter",

packages/adapter-cloudflare/test/apps/pages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@sveltejs/kit": "workspace:^",
1414
"@sveltejs/vite-plugin-svelte": "catalog:",
1515
"server-side-dep": "file:server-side-dep",
16-
"svelte": "^5.23.1",
16+
"svelte": "^5.35.5",
1717
"vite": "catalog:",
1818
"wrangler": "^4.14.3"
1919
},

packages/adapter-cloudflare/test/apps/workers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@sveltejs/vite-plugin-svelte": "catalog:",
1717
"cross-env": "catalog:",
1818
"server-side-dep": "file:server-side-dep",
19-
"svelte": "^5.23.1",
19+
"svelte": "^5.35.5",
2020
"vite": "catalog:",
2121
"wrangler": "^4.14.3"
2222
},

0 commit comments

Comments
 (0)