@podium/podlet 5.1.2 → 5.1.3

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,10 @@
1
+ ## [5.1.3](https://github.com/podium-lib/podlet/compare/v5.1.2...v5.1.3) (2024-05-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update all dependencies (non-major) ([4833c00](https://github.com/podium-lib/podlet/commit/4833c00bd3875356bc6b8893b1a4fe9f41a5645e))
7
+
1
8
  ## [5.1.2](https://github.com/podium-lib/podlet/compare/v5.1.1...v5.1.2) (2024-04-29)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podium/podlet",
3
- "version": "5.1.2",
3
+ "version": "5.1.3",
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.9",
35
- "@podium/schemas": "5.0.0",
34
+ "@podium/proxy": "5.0.12",
35
+ "@podium/schemas": "5.0.1",
36
36
  "@podium/utils": "5.0.4",
37
- "abslog": "2.4.2",
38
- "ajv": "8.12.0",
37
+ "abslog": "2.4.4",
38
+ "ajv": "8.13.0",
39
39
  "objobj": "1.0.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@babel/eslint-parser": "7.23.10",
42
+ "@babel/eslint-parser": "7.24.5",
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",
@@ -48,16 +48,16 @@
48
48
  "@semantic-release/npm": "11.0.3",
49
49
  "@semantic-release/release-notes-generator": "12.1.0",
50
50
  "@types/node": "^20.10.3",
51
- "eslint": "8.56.0",
51
+ "eslint": "8.57.0",
52
52
  "eslint-config-airbnb-base": "15.0.0",
53
53
  "eslint-config-prettier": "9.1.0",
54
54
  "eslint-plugin-import": "2.29.1",
55
55
  "eslint-plugin-prettier": "5.1.3",
56
56
  "express": "4.19.2",
57
57
  "json-stringify-safe": "5.0.1",
58
- "prettier": "3.2.4",
59
- "semantic-release": "23.0.6",
58
+ "prettier": "3.2.5",
59
+ "semantic-release": "23.0.8",
60
60
  "tap": "18.7.2",
61
- "typescript": "5.3.3"
61
+ "typescript": "5.4.5"
62
62
  }
63
63
  }
package/types/podlet.d.ts CHANGED
@@ -615,7 +615,6 @@ export type PodletContext = {
615
615
  publicPathname: string;
616
616
  };
617
617
  export type AssetCssLike = {
618
- [key: string]: any;
619
618
  as?: string | false | null;
620
619
  crossorigin?: string | null | boolean;
621
620
  disabled?: boolean | '' | null;
@@ -631,9 +630,9 @@ export type AssetCssLike = {
631
630
  }>;
632
631
  strategy?: "beforeInteractive" | "afterInteractive" | "lazy";
633
632
  scope?: "content" | "fallback" | "all";
633
+ [key: string]: any;
634
634
  };
635
635
  export type AssetJsLike = {
636
- [key: string]: any;
637
636
  value: string | null;
638
637
  crossorigin?: string | null | boolean;
639
638
  type?: string | null | false;
@@ -648,6 +647,7 @@ export type AssetJsLike = {
648
647
  }>;
649
648
  strategy?: "beforeInteractive" | "afterInteractive" | "lazy";
650
649
  scope?: "content" | "fallback" | "all";
650
+ [key: string]: any;
651
651
  };
652
652
  import Proxy from '@podium/proxy';
653
653
  import Metrics from '@metrics/client';