Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#9005)
Browse files Browse the repository at this point in the history
* chore(deps): update all non-major dependencies

* accommodate new undici behaviour

* changeset

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Rich Harris <[email protected]>
  • Loading branch information
renovate[bot] and Rich-Harris authored Feb 16, 2023
1 parent eed3416 commit 8ed07ec
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 15 deletions.
5 changes: 5 additions & 0 deletions .changeset/honest-rats-relax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sveltejs/adapter-netlify': patch
---

chore: support newest version of undici
3 changes: 2 additions & 1 deletion packages/adapter-netlify/src/headers.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export function split_headers(headers) {

headers.forEach((value, key) => {
if (key === 'set-cookie') {
m[key] = set_cookie_parser.splitCookiesString(value);
if (!m[key]) m[key] = [];
m[key].push(...set_cookie_parser.splitCookiesString(value));
} else {
h[key] = value;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"devalue": "^4.2.3",
"esm-env": "^1.0.0",
"kleur": "^4.1.5",
"magic-string": "^0.27.0",
"magic-string": "^0.29.0",
"mime": "^3.0.0",
"sade": "^1.8.1",
"set-cookie-parser": "^2.5.1",
"sirv": "^2.0.2",
"tiny-glob": "^0.2.9",
"undici": "5.18.0"
"undici": "5.19.1"
},
"devDependencies": {
"@playwright/test": "^1.29.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/migrate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"dependencies": {
"kleur": "^4.1.5",
"magic-string": "^0.27.0",
"magic-string": "^0.29.0",
"prompts": "^2.4.2",
"tiny-glob": "^0.2.9",
"typescript": "^4.9.4"
Expand Down
26 changes: 16 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sites/kit.svelte.dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@types/d3-geo": "^3.0.2",
"@types/node": "^16.18.6",
"flexsearch": "^0.7.31",
"magic-string": "^0.27.0",
"magic-string": "^0.29.0",
"marked": "^4.2.3",
"prism-svelte": "^0.5.0",
"prismjs": "^1.29.0",
Expand Down

0 comments on commit 8ed07ec

Please sign in to comment.