@cloudflare/util-routes 5.0.119 → 5.1.0
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 +19 -0
- package/dist/route.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [5.1.0](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/util-routes@5.0.120...@cloudflare/util-routes@5.1.0) (2020-05-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **app-dash:** REG-1593 new domain registration ([ff56714](http://stash.cfops.it:7999/fe/stratus/commits/ff56714))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [5.0.120](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/util-routes@5.0.119...@cloudflare/util-routes@5.0.120) (2020-05-05)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @cloudflare/util-routes
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [5.0.119](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/util-routes@5.0.118...@cloudflare/util-routes@5.0.119) (2020-04-30)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @cloudflare/util-routes
|
package/dist/route.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ declare type RoutePatternResultFromParams<Params extends Array<string | RoutePat
|
|
|
18
18
|
returnResult: RoutePatternResult<ValueOfArray<Result>>;
|
|
19
19
|
recurse: RoutePatternResultFromParams<Tail<Params>, Prepend<ExtractParam<Head<Params>>, Result>>;
|
|
20
20
|
}[Head<Params> extends never ? 'returnResult' : 'recurse'];
|
|
21
|
-
declare type ExtractParam<T extends string | RoutePatternResult<string>> = T extends RoutePatternResult<infer S> ? S : T;
|
|
21
|
+
export declare type ExtractParam<T extends string | RoutePatternResult<string>> = T extends RoutePatternResult<infer S> ? S : T;
|
|
22
22
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudflare/util-routes",
|
|
3
3
|
"description": "Wraps path-to-regexp with a convenient, type-safe tagged template function",
|
|
4
|
-
"version": "5.0
|
|
4
|
+
"version": "5.1.0",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"module": "es/index.js",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"autoGeneratedReadme": false
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@cloudflare/types": "^6.5.
|
|
25
|
+
"@cloudflare/types": "^6.5.58",
|
|
26
26
|
"path-to-regexp": "^3.0.0"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "3d4c72cc5cdaf9b5cda38282ead0772143dbbec7"
|
|
29
29
|
}
|