@podium/podlet 5.1.5 → 5.1.7

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.7](https://github.com/podium-lib/podlet/compare/v5.1.6...v5.1.7) (2024-06-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update all dependencies (non-major) ([51daf85](https://github.com/podium-lib/podlet/commit/51daf85df00b39dedd9decbed8e3e7b086d7fc11))
7
+
8
+ ## [5.1.6](https://github.com/podium-lib/podlet/compare/v5.1.5...v5.1.6) (2024-05-27)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update all dependencies (non-major) ([e401e9d](https://github.com/podium-lib/podlet/commit/e401e9d5cab42ef0ba20c5a60974d203fc0d2883))
14
+
1
15
  ## [5.1.5](https://github.com/podium-lib/podlet/compare/v5.1.4...v5.1.5) (2024-05-14)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podium/podlet",
3
- "version": "5.1.5",
3
+ "version": "5.1.7",
4
4
  "type": "module",
5
5
  "description": "Module for building page fragment servers in a micro frontend architecture.",
6
6
  "license": "MIT",
@@ -31,15 +31,15 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@metrics/client": "2.5.2",
34
- "@podium/proxy": "5.0.16",
35
- "@podium/schemas": "5.0.2",
36
- "@podium/utils": "5.0.6",
34
+ "@podium/proxy": "5.0.20",
35
+ "@podium/schemas": "5.0.5",
36
+ "@podium/utils": "5.0.7",
37
37
  "abslog": "2.4.4",
38
- "ajv": "8.13.0",
38
+ "ajv": "8.16.0",
39
39
  "objobj": "1.0.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@babel/eslint-parser": "7.24.5",
42
+ "@babel/eslint-parser": "7.24.6",
43
43
  "@podium/test-utils": "2.5.2",
44
44
  "@semantic-release/changelog": "6.0.3",
45
45
  "@semantic-release/commit-analyzer": "11.1.0",
@@ -57,8 +57,8 @@
57
57
  "express": "4.19.2",
58
58
  "json-stringify-safe": "5.0.1",
59
59
  "prettier": "3.2.5",
60
- "semantic-release": "23.0.8",
61
- "tap": "18.7.2",
60
+ "semantic-release": "23.1.1",
61
+ "tap": "18.8.0",
62
62
  "typescript": "5.4.5"
63
63
  }
64
64
  }
package/types/podlet.d.ts CHANGED
@@ -466,7 +466,7 @@ export default class PodiumPodlet {
466
466
  */
467
467
  view<T extends {
468
468
  [key: string]: unknown;
469
- }>(fn: (incoming: HttpIncoming<T>, fragment: string, ...args: unknown[]) => string): void;
469
+ }>(fn: (incoming: HttpIncoming<T, Record<string, unknown>, Record<string, unknown>>, fragment: string, ...args: unknown[]) => string): void;
470
470
  /**
471
471
  * Method for serialising the podlet instance into a plain JS object. Called automatically when stringifying the podlet with JSON.stringify(podlet).
472
472
  * Doing so will result in a correct Podium manifest file string and so is suitable for usage in a manifest route hook.
@@ -517,7 +517,7 @@ export default class PodiumPodlet {
517
517
  */
518
518
  render<T_1 extends {
519
519
  [key: string]: unknown;
520
- }>(incoming: HttpIncoming<T_1>, data: string, ...args: any[]): string;
520
+ }>(incoming: HttpIncoming<T_1, Record<string, unknown>, Record<string, unknown>>, data: string, ...args: any[]): string;
521
521
  /**
522
522
  * Method for processing an incoming HTTP request. This method is intended to be used to implement support for multiple HTTP frameworks and in most cases will not need to be used directly by podlet developers when creating podlet servers.
523
523
  *