@verdaccio/proxy 7.0.0-next.1 → 7.0.0-next.3
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 +22 -0
- package/package.json +8 -8
- package/test/proxy.metadata.spec.ts +1 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @verdaccio/proxy
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.3
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- e7ebccb61: update major dependencies, remove old nodejs support
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [daceb6d87]
|
|
12
|
+
- Updated dependencies [e7ebccb61]
|
|
13
|
+
- @verdaccio/config@7.0.0-next.3
|
|
14
|
+
- @verdaccio/core@7.0.0-next.3
|
|
15
|
+
- @verdaccio/utils@7.0.0-next.3
|
|
16
|
+
|
|
17
|
+
## 7.0.0-next.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- @verdaccio/core@7.0.0-next.2
|
|
22
|
+
- @verdaccio/config@7.0.0-next.2
|
|
23
|
+
- @verdaccio/utils@7.0.0-next.2
|
|
24
|
+
|
|
3
25
|
## 7.0.0-next.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/proxy",
|
|
3
|
-
"version": "7.0.0-next.
|
|
3
|
+
"version": "7.0.0-next.3",
|
|
4
4
|
"description": "verdaccio proxy fetcher",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"verdaccio"
|
|
27
27
|
],
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=
|
|
29
|
+
"node": ">=18"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@verdaccio/config": "7.0.0-next.
|
|
33
|
-
"@verdaccio/core": "7.0.0-next.
|
|
34
|
-
"@verdaccio/utils": "7.0.0-next.
|
|
32
|
+
"@verdaccio/config": "7.0.0-next.3",
|
|
33
|
+
"@verdaccio/core": "7.0.0-next.3",
|
|
34
|
+
"@verdaccio/utils": "7.0.0-next.3",
|
|
35
35
|
"JSONStream": "1.3.5",
|
|
36
36
|
"debug": "4.3.4",
|
|
37
37
|
"got-cjs": "12.5.4",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"lodash": "4.17.21"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@verdaccio/
|
|
43
|
-
"@verdaccio/
|
|
42
|
+
"@verdaccio/logger": "7.0.0-next.3",
|
|
43
|
+
"@verdaccio/types": "12.0.0-next.1",
|
|
44
44
|
"get-stream": "^6.0.1",
|
|
45
|
-
"nock": "13.
|
|
45
|
+
"nock": "13.3.3",
|
|
46
46
|
"node-mocks-http": "1.13.0",
|
|
47
47
|
"p-cancelable": "2.1.1",
|
|
48
48
|
"semver": "7.5.4"
|
|
@@ -198,11 +198,7 @@ describe('proxy', () => {
|
|
|
198
198
|
prox1.getRemoteMetadata('jquery', {
|
|
199
199
|
remoteAddress: '127.0.0.1',
|
|
200
200
|
})
|
|
201
|
-
).rejects.toThrow(
|
|
202
|
-
new Error(
|
|
203
|
-
'Unexpected token s in JSON at position 0 in "https://registry.npmjs.org/jquery"'
|
|
204
|
-
)
|
|
205
|
-
);
|
|
201
|
+
).rejects.toThrow();
|
|
206
202
|
});
|
|
207
203
|
|
|
208
204
|
test('400 error proxy call', async () => {
|