Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@podium/context

Package Overview
Dependencies
Maintainers
0
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@podium/context - npm Package Compare versions

Comparing version 5.0.26 to 5.0.27

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [5.0.27](https://github.com/podium-lib/context/compare/v5.0.26...v5.0.27) (2024-09-06)
### Bug Fixes
* **deps:** update dependency @podium/utils to v5.2.0 ([735bf2e](https://github.com/podium-lib/context/commit/735bf2eb539bd06eb4065d9292393d73f2e15d64))
## [5.0.26](https://github.com/podium-lib/context/compare/v5.0.25...v5.0.26) (2024-08-19)

@@ -2,0 +9,0 @@

14

package.json
{
"name": "@podium/context",
"version": "5.0.26",
"version": "5.0.27",
"description": "Module to generate the context which is passed on requests from a Podium Layout server to a Podium Podlet server",

@@ -44,3 +44,3 @@ "type": "module",

"@podium/schemas": "5.0.6",
"@podium/utils": "5.1.0",
"@podium/utils": "5.2.0",
"abslog": "2.4.4",

@@ -60,12 +60,12 @@ "bcp47-validate": "^1.0.0",

"@types/readable-stream": "4.0.15",
"eslint": "9.6.0",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"globals": "15.8.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.9.0",
"npm-run-all2": "5.0.2",
"prettier": "3.3.2",
"prettier": "3.3.3",
"semantic-release": "23.1.1",
"tap": "18.8.0",
"typescript": "5.4.5"
"typescript": "5.5.4"
}
}

@@ -41,3 +41,3 @@ /**

*/
readonly log: import('abslog').ValidLogger;
readonly log: import("abslog").ValidLogger;
/**

@@ -47,3 +47,3 @@ * @readonly

*/
readonly metrics: import('@metrics/client');
readonly metrics: import("@metrics/client");
/**

@@ -53,3 +53,3 @@ * @readonly

*/
readonly histogram: import('@metrics/client').MetricsHistogram;
readonly histogram: import("@metrics/client").MetricsHistogram;
/**

@@ -73,3 +73,3 @@ * @readonly

*/
process(incoming: import('@podium/utils').HttpIncoming): Promise<import('@podium/utils').HttpIncoming>;
process(incoming: import("@podium/utils").HttpIncoming): Promise<import("@podium/utils").HttpIncoming>;
get [Symbol.toStringTag](): string;

@@ -83,11 +83,11 @@ }

logger?: object;
publicPathname?: import('./get-public-pathname.js').PodiumContextPublicPathnameParserOptions;
mountPathname?: import('./get-mount-pathname.js').PodiumContextMountPathnameParserOptions;
mountOrigin?: import('./get-mount-origin.js').PodiumContextMountOriginParserOptions;
deviceType?: import('./get-device-type.js').PodiumContextDeviceTypeParserOptions;
locale?: import('./get-locale.js').PodiumContextLocaleParserOptions;
debug?: import('./get-debug.js').PodiumContextDebugParserOptions;
publicPathname?: import("./get-public-pathname.js").PodiumContextPublicPathnameParserOptions;
mountPathname?: import("./get-mount-pathname.js").PodiumContextMountPathnameParserOptions;
mountOrigin?: import("./get-mount-origin.js").PodiumContextMountOriginParserOptions;
deviceType?: import("./get-device-type.js").PodiumContextDeviceTypeParserOptions;
locale?: import("./get-locale.js").PodiumContextLocaleParserOptions;
debug?: import("./get-debug.js").PodiumContextDebugParserOptions;
};
export type PodiumContextParser = {
parse: (incoming?: import('@podium/utils').PodiumHttpIncoming) => string | ((name: string) => string) | Promise<string> | ((name: string) => Promise<string>);
parse: (incoming?: import("@podium/utils").PodiumHttpIncoming) => string | ((name: string) => string) | Promise<string> | ((name: string) => Promise<string>);
};
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc