@verdaccio/url 11.0.0-6-next.42 → 12.0.0-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +103 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,108 @@
1
1
  # Change Log
2
2
 
3
+ ## 12.0.0-next.0
4
+
5
+ ### Major Changes
6
+
7
+ - feat!: bump to v7
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @verdaccio/core@7.0.0-next.0
13
+
14
+ ## 11.0.0
15
+
16
+ ### Major Changes
17
+
18
+ - 292c0a37f: feat!: replace deprecated request dependency by got
19
+
20
+ This is a big refactoring of the core, fetching dependencies, improve code, more tests and better stability. This is essential for the next release, will take some time but would allow modularize more the core.
21
+
22
+ ## Notes
23
+
24
+ - Remove deprecated `request` by other `got`, retry improved, custom Agent ( got does not include it built-in)
25
+ - Remove `async` dependency from storage (used by core) it was linked with proxy somehow safe to remove now
26
+ - Refactor with promises instead callback wherever is possible
27
+ - ~Document the API~
28
+ - Improve testing, integration tests
29
+ - Bugfix
30
+ - Clean up old validations
31
+ - Improve performance
32
+
33
+ ## 💥 Breaking changes
34
+
35
+ - Plugin API methods were callbacks based are returning promises, this will break current storage plugins, check documentation for upgrade.
36
+ - Write Tarball, Read Tarball methods parameters change, a new set of options like `AbortController` signals are being provided to the `addAbortSignal` can be internally used with Streams when a request is aborted. eg: `addAbortSignal(signal, fs.createReadStream(pathName));`
37
+ - `@verdaccio/streams` stream abort support is legacy is being deprecated removed
38
+ - Remove AWS and Google Cloud packages for future refactoring [#2574](https://github.com/verdaccio/verdaccio/pull/2574).
39
+
40
+ - dc05edfe6: # async storage plugin bootstrap
41
+
42
+ Gives a storage plugin the ability to perform asynchronous tasks on initialization
43
+
44
+ ## Breaking change
45
+
46
+ Plugin must have an init method in which asynchronous tasks can be executed
47
+
48
+ ```js
49
+ public async init(): Promise<void> {
50
+ this.data = await this._fetchLocalPackages();
51
+ this._sync();
52
+ }
53
+ ```
54
+
55
+ - 794af76c5: Remove Node 12 support
56
+
57
+ - We need move to the new `undici` and does not support Node.js 12
58
+
59
+ ### Minor Changes
60
+
61
+ - ef88da3b4: feat: improve support for fs promises older nodejs
62
+ - 154b2ecd3: refactor: remove @verdaccio/commons-api in favor @verdaccio/core and remove duplications
63
+ - ce013d2fc: refactor: npm star command support reimplemented
64
+ - 4b29d715b: chore: move improvements from v5 to v6
65
+
66
+ Migrate improvements form v5 to v6:
67
+
68
+ - https://github.com/verdaccio/verdaccio/pull/3158
69
+ - https://github.com/verdaccio/verdaccio/pull/3151
70
+ - https://github.com/verdaccio/verdaccio/pull/2271
71
+ - https://github.com/verdaccio/verdaccio/pull/2787
72
+ - https://github.com/verdaccio/verdaccio/pull/2791
73
+ - https://github.com/verdaccio/verdaccio/pull/2205
74
+
75
+ ### Patch Changes
76
+
77
+ - 351aeeaa8: fix(deps): @verdaccio/utils should be a prod dep of local-storage
78
+ - 9718e0330: fix: build targets for 5x modules
79
+ - Updated dependencies [292c0a37f]
80
+ - Updated dependencies [974cd8c19]
81
+ - Updated dependencies [ef88da3b4]
82
+ - Updated dependencies [43f32687c]
83
+ - Updated dependencies [a3a209b5e]
84
+ - Updated dependencies [459b6fa72]
85
+ - Updated dependencies [24b9be020]
86
+ - Updated dependencies [794af76c5]
87
+ - Updated dependencies [351aeeaa8]
88
+ - Updated dependencies [9718e0330]
89
+ - Updated dependencies [a1da11308]
90
+ - Updated dependencies [00d1d2a17]
91
+ - Updated dependencies [154b2ecd3]
92
+ - Updated dependencies [378e907d5]
93
+ - Updated dependencies [16e38df8a]
94
+ - Updated dependencies [82cb0f2bf]
95
+ - Updated dependencies [dc571aabd]
96
+ - Updated dependencies [f859d2b1a]
97
+ - Updated dependencies [6c1eb021b]
98
+ - Updated dependencies [62c24b632]
99
+ - Updated dependencies [0a6412ca9]
100
+ - Updated dependencies [5167bb528]
101
+ - Updated dependencies [c9d1af0e5]
102
+ - Updated dependencies [4b29d715b]
103
+ - Updated dependencies [b849128de]
104
+ - @verdaccio/core@6.0.0
105
+
3
106
  ## 11.0.0-6-next.42
4
107
 
5
108
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/url",
3
- "version": "11.0.0-6-next.42",
3
+ "version": "12.0.0-next.0",
4
4
  "description": "url utilities resolver",
5
5
  "keywords": [
6
6
  "private",
@@ -33,13 +33,13 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@verdaccio/core": "6.0.0-6-next.76",
36
+ "@verdaccio/core": "7.0.0-next.0",
37
37
  "debug": "4.3.4",
38
38
  "lodash": "4.17.21",
39
39
  "validator": "13.9.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@verdaccio/types": "11.0.0-6-next.25",
42
+ "@verdaccio/types": "12.0.0-next.0",
43
43
  "node-mocks-http": "1.13.0"
44
44
  },
45
45
  "funding": {