@verdaccio/config 6.0.0-6-next.66 → 6.0.0-6-next.67
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 +12 -0
- package/build/conf/default.yaml +3 -0
- package/build/conf/docker.yaml +3 -0
- package/package.json +3 -3
- package/src/conf/default.yaml +3 -0
- package/src/conf/docker.yaml +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @verdaccio/config
|
|
2
2
|
|
|
3
|
+
## 6.0.0-6-next.67
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 16e38df8: feat: trustProxy property
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [16e38df8]
|
|
12
|
+
- @verdaccio/core@6.0.0-6-next.67
|
|
13
|
+
- @verdaccio/utils@6.0.0-6-next.35
|
|
14
|
+
|
|
3
15
|
## 6.0.0-6-next.66
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/build/conf/default.yaml
CHANGED
|
@@ -106,6 +106,9 @@ server:
|
|
|
106
106
|
# A regex for the password validation /.{3}$/ (3 characters min)
|
|
107
107
|
# An example to limit to 10 characters minimum
|
|
108
108
|
# passwordValidationRegex: /.{10}$/
|
|
109
|
+
# Allow `req.ip` to resolve properly when Verdaccio is behind a proxy or load-balancer
|
|
110
|
+
# See: https://expressjs.com/en/guide/behind-proxies.html
|
|
111
|
+
# trustProxy: '127.0.0.1'
|
|
109
112
|
|
|
110
113
|
# https://verdaccio.org/docs/configuration#offline-publish
|
|
111
114
|
# publish:
|
package/build/conf/docker.yaml
CHANGED
|
@@ -112,6 +112,9 @@ server:
|
|
|
112
112
|
# A regex for the password validation /.{3}$/ (3 characters min)
|
|
113
113
|
# An example to limit to 10 characters minimum
|
|
114
114
|
# passwordValidationRegex: /.{10}$/
|
|
115
|
+
# Allow `req.ip` to resolve properly when Verdaccio is behind a proxy or load-balancer
|
|
116
|
+
# See: https://expressjs.com/en/guide/behind-proxies.html
|
|
117
|
+
# trustProxy: '127.0.0.1'
|
|
115
118
|
|
|
116
119
|
# https://verdaccio.org/docs/configuration#offline-publish
|
|
117
120
|
# publish:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/config",
|
|
3
|
-
"version": "6.0.0-6-next.
|
|
3
|
+
"version": "6.0.0-6-next.67",
|
|
4
4
|
"description": "logger",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"node": ">=12"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@verdaccio/core": "6.0.0-6-next.
|
|
33
|
-
"@verdaccio/utils": "6.0.0-6-next.
|
|
32
|
+
"@verdaccio/core": "6.0.0-6-next.67",
|
|
33
|
+
"@verdaccio/utils": "6.0.0-6-next.35",
|
|
34
34
|
"debug": "4.3.4",
|
|
35
35
|
"js-yaml": "4.1.0",
|
|
36
36
|
"lodash": "4.17.21",
|
package/src/conf/default.yaml
CHANGED
|
@@ -106,6 +106,9 @@ server:
|
|
|
106
106
|
# A regex for the password validation /.{3}$/ (3 characters min)
|
|
107
107
|
# An example to limit to 10 characters minimum
|
|
108
108
|
# passwordValidationRegex: /.{10}$/
|
|
109
|
+
# Allow `req.ip` to resolve properly when Verdaccio is behind a proxy or load-balancer
|
|
110
|
+
# See: https://expressjs.com/en/guide/behind-proxies.html
|
|
111
|
+
# trustProxy: '127.0.0.1'
|
|
109
112
|
|
|
110
113
|
# https://verdaccio.org/docs/configuration#offline-publish
|
|
111
114
|
# publish:
|
package/src/conf/docker.yaml
CHANGED
|
@@ -112,6 +112,9 @@ server:
|
|
|
112
112
|
# A regex for the password validation /.{3}$/ (3 characters min)
|
|
113
113
|
# An example to limit to 10 characters minimum
|
|
114
114
|
# passwordValidationRegex: /.{10}$/
|
|
115
|
+
# Allow `req.ip` to resolve properly when Verdaccio is behind a proxy or load-balancer
|
|
116
|
+
# See: https://expressjs.com/en/guide/behind-proxies.html
|
|
117
|
+
# trustProxy: '127.0.0.1'
|
|
115
118
|
|
|
116
119
|
# https://verdaccio.org/docs/configuration#offline-publish
|
|
117
120
|
# publish:
|