@podium/podlet 5.1.9 → 5.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [5.1.11](https://github.com/podium-lib/podlet/compare/v5.1.10...v5.1.11) (2024-08-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update all dependencies (non-major) ([801a95a](https://github.com/podium-lib/podlet/commit/801a95a1b3251d491e774a536f1c43b538c21a9b))
7
+
8
+ ## [5.1.10](https://github.com/podium-lib/podlet/compare/v5.1.9...v5.1.10) (2024-07-17)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * add podium context to locals type ([6827f8c](https://github.com/podium-lib/podlet/commit/6827f8ca545a08685cf702028faeb9ca6514b68a))
14
+
1
15
  ## [5.1.9](https://github.com/podium-lib/podlet/compare/v5.1.8...v5.1.9) (2024-07-15)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podium/podlet",
3
- "version": "5.1.9",
3
+ "version": "5.1.11",
4
4
  "type": "module",
5
5
  "description": "Module for building page fragment servers in a micro frontend architecture.",
6
6
  "license": "MIT",
@@ -34,8 +34,8 @@
34
34
  "types:fixup": "node ./fixup.js"
35
35
  },
36
36
  "dependencies": {
37
- "@metrics/client": "2.5.2",
38
- "@podium/proxy": "5.0.22",
37
+ "@metrics/client": "2.5.3",
38
+ "@podium/proxy": "5.0.23",
39
39
  "@podium/schemas": "5.0.6",
40
40
  "@podium/utils": "5.0.7",
41
41
  "abslog": "2.4.4",
@@ -52,17 +52,17 @@
52
52
  "@semantic-release/npm": "11.0.3",
53
53
  "@semantic-release/release-notes-generator": "12.1.0",
54
54
  "@types/node": "^20.10.3",
55
- "@types/readable-stream": "4.0.14",
55
+ "@types/readable-stream": "4.0.15",
56
56
  "eslint": "9.6.0",
57
57
  "eslint-config-prettier": "9.1.0",
58
58
  "eslint-plugin-prettier": "5.1.3",
59
59
  "express": "4.19.2",
60
60
  "globals": "15.8.0",
61
61
  "json-stringify-safe": "5.0.1",
62
- "npm-run-all": "4.1.5",
62
+ "npm-run-all2": "5.0.2",
63
63
  "prettier": "3.3.2",
64
64
  "semantic-release": "23.1.1",
65
65
  "tap": "18.8.0",
66
- "typescript": "5.5.3"
66
+ "typescript": "5.5.4"
67
67
  }
68
68
  }
package/types/podlet.d.ts CHANGED
@@ -1,6 +1,12 @@
1
1
 
2
+ import type { HttpIncoming } from "@podium/utils";
3
+
2
4
  declare global {
3
5
  namespace Express {
6
+ export interface Locals {
7
+ podium: HttpIncoming;
8
+ }
9
+
4
10
  export interface Response {
5
11
  /**
6
12
  * Calls the send / write method on the `http.ServerResponse` object.