@podium/podlet 5.1.0 → 5.1.2
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 +14 -0
- package/package.json +4 -4
- package/types/podlet.d.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [5.1.2](https://github.com/podium-lib/podlet/compare/v5.1.1...v5.1.2) (2024-04-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update all dependencies (non-major) ([83d0eb3](https://github.com/podium-lib/podlet/commit/83d0eb39e6b8f03bfdb42cfe19a2d8f6f51edbef))
|
|
7
|
+
|
|
8
|
+
## [5.1.1](https://github.com/podium-lib/podlet/compare/v5.1.0...v5.1.1) (2024-04-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update all dependencies (non-major) ([292c3b5](https://github.com/podium-lib/podlet/commit/292c3b5be8950ea9ba14dd26941a83e30c8bf1c5))
|
|
14
|
+
|
|
1
15
|
# [5.1.0](https://github.com/podium-lib/podlet/compare/v5.0.7...v5.1.0) (2024-04-14)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podium/podlet",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Module for building page fragment servers in a micro frontend architecture.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@metrics/client": "2.5.2",
|
|
34
|
-
"@podium/proxy": "5.0.
|
|
34
|
+
"@podium/proxy": "5.0.9",
|
|
35
35
|
"@podium/schemas": "5.0.0",
|
|
36
|
-
"@podium/utils": "5.0.
|
|
37
|
-
"abslog": "2.4.
|
|
36
|
+
"@podium/utils": "5.0.4",
|
|
37
|
+
"abslog": "2.4.2",
|
|
38
38
|
"ajv": "8.12.0",
|
|
39
39
|
"objobj": "1.0.0"
|
|
40
40
|
},
|
package/types/podlet.d.ts
CHANGED
|
@@ -650,10 +650,7 @@ export type AssetJsLike = {
|
|
|
650
650
|
scope?: "content" | "fallback" | "all";
|
|
651
651
|
};
|
|
652
652
|
import Proxy from '@podium/proxy';
|
|
653
|
-
import { AssetCss } from '@podium/utils';
|
|
654
|
-
import { AssetJs } from '@podium/utils';
|
|
655
653
|
import Metrics from '@metrics/client';
|
|
656
|
-
import { HttpIncoming } from '@podium/utils';
|
|
657
654
|
declare global {
|
|
658
655
|
namespace Express {
|
|
659
656
|
interface Response {
|