@verdaccio/url 11.0.0-6-next.42 → 12.0.0-next.1

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