@verdaccio/url 12.0.0-next-7.19 → 12.0.0-next-7.20

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,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## 12.0.0-next-7.20
4
+
5
+ ### Patch Changes
6
+
7
+ - ccc7bd1: fix(middleware): link to favicon in template
8
+ - @verdaccio/core@7.0.0-next-7.20
9
+
3
10
  ## 12.0.0-next-7.19
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/url",
3
- "version": "12.0.0-next-7.19",
3
+ "version": "12.0.0-next-7.20",
4
4
  "description": "url utilities resolver",
5
5
  "keywords": [
6
6
  "private",
@@ -33,10 +33,10 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@verdaccio/core": "7.0.0-next-7.19",
36
+ "@verdaccio/core": "7.0.0-next-7.20",
37
37
  "debug": "4.3.4",
38
38
  "lodash": "4.17.21",
39
- "validator": "13.11.0"
39
+ "validator": "13.12.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@verdaccio/types": "12.0.0-next-7.5",
@@ -102,7 +102,7 @@ describe('host', () => {
102
102
  });
103
103
 
104
104
  expect(
105
- getPublicUrl(null, {
105
+ getPublicUrl(undefined, {
106
106
  host: req.hostname,
107
107
  headers: req.headers as any,
108
108
  protocol: req.protocol,