@verdaccio/tarball 11.0.0-6-next.7 → 11.0.0-6-next.8

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,25 @@
1
1
  # Change Log
2
2
 
3
+ ## 11.0.0-6-next.8
4
+
5
+ ### Major Changes
6
+
7
+ - 794af76c: Remove Node 12 support
8
+
9
+ - We need move to the new `undici` and does not support Node.js 12
10
+
11
+ ### Minor Changes
12
+
13
+ - 154b2ecd: refactor: remove @verdaccio/commons-api in favor @verdaccio/core and remove duplications
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [794af76c]
18
+ - Updated dependencies [154b2ecd]
19
+ - @verdaccio/core@6.0.0-6-next.2
20
+ - @verdaccio/url@11.0.0-6-next.6
21
+ - @verdaccio/utils@6.0.0-6-next.7
22
+
3
23
  ## 11.0.0-6-next.7
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/tarball",
3
- "version": "11.0.0-6-next.7",
3
+ "version": "11.0.0-6-next.8",
4
4
  "description": "tarball utilities resolver",
5
5
  "keywords": [
6
6
  "private",
@@ -19,7 +19,7 @@
19
19
  "license": "MIT",
20
20
  "homepage": "https://verdaccio.org",
21
21
  "engines": {
22
- "node": ">=10",
22
+ "node": ">=14",
23
23
  "npm": ">=6"
24
24
  },
25
25
  "repository": {
@@ -34,13 +34,13 @@
34
34
  "access": "public"
35
35
  },
36
36
  "dependencies": {
37
- "@verdaccio/commons-api": "11.0.0-6-next.4",
38
- "@verdaccio/url": "11.0.0-6-next.5",
39
- "@verdaccio/utils": "6.0.0-6-next.6",
37
+ "@verdaccio/core": "6.0.0-6-next.2",
38
+ "@verdaccio/url": "11.0.0-6-next.6",
39
+ "@verdaccio/utils": "6.0.0-6-next.7",
40
40
  "lodash": "4.17.21"
41
41
  },
42
42
  "devDependencies": {
43
- "@verdaccio/types": "11.0.0-6-next.8",
43
+ "@verdaccio/types": "11.0.0-6-next.9",
44
44
  "express": "4.17.1",
45
45
  "node-mocks-http": "1.10.1"
46
46
  },
@@ -1,5 +1,5 @@
1
1
  import * as httpMocks from 'node-mocks-http';
2
- import { HEADERS } from '@verdaccio/commons-api';
2
+ import { HEADERS } from '@verdaccio/core';
3
3
  import { convertDistRemoteToLocalTarballUrls } from '../src';
4
4
 
5
5
  describe('convertDistRemoteToLocalTarballUrls', () => {
package/tsconfig.json CHANGED
@@ -10,9 +10,6 @@
10
10
  {
11
11
  "path": "../../utils"
12
12
  },
13
- {
14
- "path": "../commons-api"
15
- },
16
13
  {
17
14
  "path": "../url"
18
15
  }