@podium/podlet 4.4.64 → 4.4.66

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/index.d.ts +2 -0
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [4.4.66](https://github.com/podium-lib/podlet/compare/v4.4.65...v4.4.66) (2022-11-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update all dependencies (non-major) ([bf8620d](https://github.com/podium-lib/podlet/commit/bf8620dc2693a5c25daa9ae26969b591848ec541))
7
+
8
+ ## [4.4.65](https://github.com/podium-lib/podlet/compare/v4.4.64...v4.4.65) (2022-09-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **types:** Add pathname() method to Podium type ([779f8c3](https://github.com/podium-lib/podlet/commit/779f8c33dc92183acec90cd647865a83a99b558e))
14
+
1
15
  ## [4.4.64](https://github.com/podium-lib/podlet/compare/v4.4.63...v4.4.64) (2022-05-09)
2
16
 
3
17
 
package/index.d.ts CHANGED
@@ -23,6 +23,8 @@ export interface PodletOptions {
23
23
  export default class Podlet {
24
24
  constructor(options: PodletOptions);
25
25
 
26
+ pathname(): string;
27
+
26
28
  middleware(): (req: any, res: any, next: any) => Promise<void>;
27
29
 
28
30
  manifest(options?: { prefix?: boolean }): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podium/podlet",
3
- "version": "4.4.64",
3
+ "version": "4.4.66",
4
4
  "description": "Module for building page fragment servers in a micro frontend architecture.",
5
5
  "main": "lib/podlet.js",
6
6
  "license": "MIT",
@@ -29,28 +29,28 @@
29
29
  "dependencies": {
30
30
  "@metrics/client": "2.5.0",
31
31
  "@podium/proxy": "4.2.75",
32
- "@podium/schemas": "4.1.32",
32
+ "@podium/schemas": "4.1.33",
33
33
  "@podium/utils": "4.4.36",
34
34
  "abslog": "2.4.0",
35
- "ajv": "8.11.0",
35
+ "ajv": "8.11.2",
36
36
  "objobj": "1.0.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@semantic-release/changelog": "6.0.1",
40
40
  "@semantic-release/commit-analyzer": "9.0.2",
41
41
  "@semantic-release/git": "10.0.1",
42
- "@semantic-release/github": "8.0.4",
43
- "@semantic-release/npm": "8.0.3",
42
+ "@semantic-release/github": "8.0.6",
43
+ "@semantic-release/npm": "9.0.1",
44
44
  "@semantic-release/release-notes-generator": "10.0.3",
45
- "semantic-release": "18.0.1",
46
- "@podium/test-utils": "2.4.1",
45
+ "semantic-release": "19.0.5",
46
+ "@podium/test-utils": "2.5.2",
47
47
  "eslint": "7.32.0",
48
48
  "eslint-config-airbnb-base": "14.2.1",
49
49
  "eslint-config-prettier": "8.5.0",
50
50
  "eslint-plugin-import": "2.26.0",
51
51
  "eslint-plugin-prettier": "3.4.1",
52
- "express": "4.18.1",
53
- "prettier": "2.6.2",
54
- "tap": "15.2.3"
52
+ "express": "4.18.2",
53
+ "prettier": "2.7.1",
54
+ "tap": "16.3.0"
55
55
  }
56
56
  }