Socket
Socket
Sign inDemoInstall

@sveltejs/kit

Package Overview
Dependencies
218
Maintainers
4
Versions
764
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.5.5 to 2.5.6

10

package.json
{
"name": "@sveltejs/kit",
"version": "2.5.5",
"version": "2.5.6",
"description": "The fastest way to build Svelte apps",

@@ -34,9 +34,9 @@ "repository": {

"@types/set-cookie-parser": "^2.4.7",
"dts-buddy": "^0.4.3",
"rollup": "^4.9.5",
"dts-buddy": "0.4.6",
"rollup": "^4.14.2",
"svelte": "^4.2.10",
"svelte-preprocess": "^5.1.3",
"typescript": "^5.3.3",
"vite": "^5.1.0",
"vitest": "^1.2.0"
"vite": "^5.2.8",
"vitest": "^1.5.0"
},

@@ -43,0 +43,0 @@ "peerDependencies": {

@@ -135,3 +135,5 @@ import * as set_cookie_parser from 'set-cookie-parser';

for (const str of set_cookie_parser.splitCookiesString(set_cookie)) {
const { name, value, ...options } = set_cookie_parser.parseString(str);
const { name, value, ...options } = set_cookie_parser.parseString(str, {
decodeValues: false
});

@@ -143,2 +145,3 @@ const path = options.path ?? (url.pathname.split('/').slice(0, -1).join('/') || '/');

path,
encode: (value) => value,
.../** @type {import('cookie').CookieSerializeOptions} */ (options)

@@ -145,0 +148,0 @@ });

// generated during release, do not modify
/** @type {string} */
export const VERSION = '2.5.5';
export const VERSION = '2.5.6';

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc