@podium/podlet 5.1.5 → 5.1.6
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 +7 -0
- package/package.json +5 -5
- package/types/podlet.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [5.1.6](https://github.com/podium-lib/podlet/compare/v5.1.5...v5.1.6) (2024-05-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update all dependencies (non-major) ([e401e9d](https://github.com/podium-lib/podlet/commit/e401e9d5cab42ef0ba20c5a60974d203fc0d2883))
|
|
7
|
+
|
|
1
8
|
## [5.1.5](https://github.com/podium-lib/podlet/compare/v5.1.4...v5.1.5) (2024-05-14)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podium/podlet",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Module for building page fragment servers in a micro frontend architecture.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@metrics/client": "2.5.2",
|
|
34
|
-
"@podium/proxy": "5.0.
|
|
35
|
-
"@podium/schemas": "5.0.
|
|
36
|
-
"@podium/utils": "5.0.
|
|
34
|
+
"@podium/proxy": "5.0.18",
|
|
35
|
+
"@podium/schemas": "5.0.3",
|
|
36
|
+
"@podium/utils": "5.0.7",
|
|
37
37
|
"abslog": "2.4.4",
|
|
38
|
-
"ajv": "8.
|
|
38
|
+
"ajv": "8.14.0",
|
|
39
39
|
"objobj": "1.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
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
|
*
|