@thi.ng/router 3.2.12 → 3.2.13

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 (2) hide show
  1. package/CHANGELOG.md +10 -10
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-10-28T19:08:39Z
3
+ - **Last updated**: 2022-11-23T22:46:54Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -13,14 +13,14 @@ and/or version bumps of transitive dependencies.
13
13
 
14
14
  #### 🚀 Features
15
15
 
16
- - update format(), hash/prefix handling ([724b3ad](https://github.com/thi-ng/umbrella/commit/724b3ad))
17
- - update HTMLRouter default prefix to "#/" if `useFragment` is true
18
- - remove obsolete `HTMLRouter.format()` (now the same as BasicRouter)
19
- - update BasicRouter.format() to throw error for missing route param value
20
16
  - add trailing slash option, optimize routeForID() ([c003dc2](https://github.com/thi-ng/umbrella/commit/c003dc2))
21
17
  - update BasicRouter default config init
22
18
  - pre-build `routeIndex` in ctor
23
19
  - optimize `routeForID()` to use new `routeIndex`
20
+ - update format(), hash/prefix handling ([724b3ad](https://github.com/thi-ng/umbrella/commit/724b3ad))
21
+ - update HTMLRouter default prefix to "#/" if `useFragment` is true
22
+ - remove obsolete `HTMLRouter.format()` (now the same as BasicRouter)
23
+ - update BasicRouter.format() to throw error for missing route param value
24
24
 
25
25
  ### [3.1.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/router@3.1.5) (2022-04-07)
26
26
 
@@ -51,9 +51,9 @@ and/or version bumps of transitive dependencies.
51
51
 
52
52
  #### ♻️ Refactoring
53
53
 
54
- - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
55
54
  - update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
56
55
  - add .js suffix for all relative imports
56
+ - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
57
57
 
58
58
  # [3.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/router@3.0.0) (2021-10-12)
59
59
 
@@ -74,15 +74,15 @@ and/or version bumps of transitive dependencies.
74
74
 
75
75
  #### ♻️ Refactoring
76
76
 
77
+ - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
78
+ - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
79
+ - update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
77
80
  - update deps & imports in various pkgs ([e1cf29e](https://github.com/thi-ng/umbrella/commit/e1cf29e))
78
81
  - largely related to recent updates/restructuring of these packages:
79
82
  - api
80
83
  - defmulti
81
84
  - errors
82
85
  - logger
83
- - update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
84
- - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
85
- - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
86
86
 
87
87
  ### [2.0.54](https://github.com/thi-ng/umbrella/tree/@thi.ng/router@2.0.54) (2021-09-03)
88
88
 
@@ -167,9 +167,9 @@ and/or version bumps of transitive dependencies.
167
167
 
168
168
  #### ♻️ Refactoring
169
169
 
170
- - update error handling ([adc559a](https://github.com/thi-ng/umbrella/commit/adc559a))
171
170
  - update INotify dummy impl ([b328780](https://github.com/thi-ng/umbrella/commit/b328780))
172
171
  - reflecting INotify updates in [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/main/packages/api)
172
+ - update error handling ([adc559a](https://github.com/thi-ng/umbrella/commit/adc559a))
173
173
 
174
174
  ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/router@0.1.0) (2018-03-11)
175
175
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/router",
3
- "version": "3.2.12",
3
+ "version": "3.2.13",
4
4
  "description": "Generic router for browser & non-browser based applications",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,18 +34,18 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.4.5",
38
- "@thi.ng/checks": "^3.3.2",
39
- "@thi.ng/equiv": "^2.1.12",
40
- "@thi.ng/errors": "^2.2.3",
41
- "tslib": "^2.4.0"
37
+ "@thi.ng/api": "^8.4.6",
38
+ "@thi.ng/checks": "^3.3.3",
39
+ "@thi.ng/equiv": "^2.1.13",
40
+ "@thi.ng/errors": "^2.2.4",
41
+ "tslib": "^2.4.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@microsoft/api-extractor": "^7.33.5",
45
- "@thi.ng/testament": "^0.3.4",
45
+ "@thi.ng/testament": "^0.3.5",
46
46
  "rimraf": "^3.0.2",
47
47
  "tools": "^0.0.1",
48
- "typedoc": "^0.23.18",
48
+ "typedoc": "^0.23.20",
49
49
  "typescript": "^4.8.4"
50
50
  },
51
51
  "keywords": [
@@ -67,8 +67,8 @@
67
67
  "node": ">=12.7"
68
68
  },
69
69
  "files": [
70
- "*.js",
71
- "*.d.ts"
70
+ "./*.js",
71
+ "./*.d.ts"
72
72
  ],
73
73
  "exports": {
74
74
  ".": {
@@ -91,5 +91,5 @@
91
91
  ],
92
92
  "year": 2014
93
93
  },
94
- "gitHead": "a4b60163a8caddceed5ec1b6b3584d164f61e7b6\n"
94
+ "gitHead": "044ee6a3895720fc78e115032d4d831b63510929\n"
95
95
  }