@verdaccio/web 6.0.0-6-next.63 → 7.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 +499 -0
  2. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,504 @@
1
1
  # @verdaccio/web
2
2
 
3
+ ## 7.0.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - @verdaccio/core@7.0.0-next.1
8
+ - @verdaccio/config@7.0.0-next.1
9
+ - @verdaccio/auth@7.0.0-next.1
10
+ - @verdaccio/tarball@12.0.0-next.1
11
+ - @verdaccio/url@12.0.0-next.1
12
+ - @verdaccio/loaders@7.0.0-next.1
13
+ - @verdaccio/middleware@7.0.0-next.1
14
+ - @verdaccio/store@7.0.0-next.1
15
+ - @verdaccio/utils@7.0.0-next.1
16
+ - @verdaccio/logger@7.0.0-next.1
17
+
18
+ ## 7.0.0-next.0
19
+
20
+ ### Major Changes
21
+
22
+ - feat!: bump to v7
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies
27
+ - @verdaccio/auth@7.0.0-next.0
28
+ - @verdaccio/config@7.0.0-next.0
29
+ - @verdaccio/core@7.0.0-next.0
30
+ - @verdaccio/tarball@12.0.0-next.0
31
+ - @verdaccio/url@12.0.0-next.0
32
+ - @verdaccio/loaders@7.0.0-next.0
33
+ - @verdaccio/logger@7.0.0-next.0
34
+ - @verdaccio/middleware@7.0.0-next.0
35
+ - @verdaccio/store@7.0.0-next.0
36
+ - @verdaccio/utils@7.0.0-next.0
37
+
38
+ ## 6.0.0
39
+
40
+ ### Major Changes
41
+
42
+ - 292c0a37f: feat!: replace deprecated request dependency by got
43
+
44
+ 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.
45
+
46
+ ## Notes
47
+
48
+ - Remove deprecated `request` by other `got`, retry improved, custom Agent ( got does not include it built-in)
49
+ - Remove `async` dependency from storage (used by core) it was linked with proxy somehow safe to remove now
50
+ - Refactor with promises instead callback wherever is possible
51
+ - ~Document the API~
52
+ - Improve testing, integration tests
53
+ - Bugfix
54
+ - Clean up old validations
55
+ - Improve performance
56
+
57
+ ## 💥 Breaking changes
58
+
59
+ - Plugin API methods were callbacks based are returning promises, this will break current storage plugins, check documentation for upgrade.
60
+ - 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));`
61
+ - `@verdaccio/streams` stream abort support is legacy is being deprecated removed
62
+ - Remove AWS and Google Cloud packages for future refactoring [#2574](https://github.com/verdaccio/verdaccio/pull/2574).
63
+
64
+ - 459b6fa72: refactor: search v1 endpoint and local-database
65
+
66
+ - refactor search `api v1` endpoint, improve performance
67
+ - remove usage of `async` dependency https://github.com/verdaccio/verdaccio/issues/1225
68
+ - refactor method storage class
69
+ - create new module `core` to reduce the ammount of modules with utilities
70
+ - use `undici` instead `node-fetch`
71
+ - use `fastify` instead `express` for functional test
72
+
73
+ ### Breaking changes
74
+
75
+ - plugin storage API changes
76
+ - remove old search endpoint (return 404)
77
+ - filter local private packages at plugin level
78
+
79
+ The storage api changes for methods `get`, `add`, `remove` as promise base. The `search` methods also changes and recieves a `query` object that contains all query params from the client.
80
+
81
+ ```ts
82
+ export interface IPluginStorage<T> extends IPlugin {
83
+ add(name: string): Promise<void>;
84
+ remove(name: string): Promise<void>;
85
+ get(): Promise<any>;
86
+ init(): Promise<void>;
87
+ getSecret(): Promise<string>;
88
+ setSecret(secret: string): Promise<any>;
89
+ getPackageStorage(packageInfo: string): IPackageStorage;
90
+ search(query: searchUtils.SearchQuery): Promise<searchUtils.SearchItem[]>;
91
+ saveToken(token: Token): Promise<any>;
92
+ deleteToken(user: string, tokenKey: string): Promise<any>;
93
+ readTokens(filter: TokenFilter): Promise<Token[]>;
94
+ }
95
+ ```
96
+
97
+ - 9fc2e7961: feat(plugins): improve plugin loader
98
+
99
+ ### Changes
100
+
101
+ - Add scope plugin support to 6.x https://github.com/verdaccio/verdaccio/pull/3227
102
+ - Avoid config collisions https://github.com/verdaccio/verdaccio/issues/928
103
+ - https://github.com/verdaccio/verdaccio/issues/1394
104
+ - `config.plugins` plugin path validations
105
+ - Updated algorithm for plugin loader.
106
+ - improved documentation (included dev)
107
+
108
+ ## Features
109
+
110
+ - Add scope plugin support to 6.x https://github.com/verdaccio/verdaccio/pull/3227
111
+ - Custom prefix:
112
+
113
+ ```
114
+ // config.yaml
115
+ server:
116
+ pluginPrefix: mycompany
117
+ middleware:
118
+ audit:
119
+ foo: 1
120
+ ```
121
+
122
+ This configuration will look up for `mycompany-audit` instead `Verdaccio-audit`.
123
+
124
+ ## Breaking Changes
125
+
126
+ ### sinopia plugins
127
+
128
+ - `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
129
+
130
+ ### plugin filter
131
+
132
+ - method rename `filter_metadata`->`filterMetadata`
133
+
134
+ ### Plugin constructor does not merge configs anymore https://github.com/verdaccio/verdaccio/issues/928
135
+
136
+ The plugin receives as first argument `config`, which represents the config of the plugin. Example:
137
+
138
+ ```
139
+ // config.yaml
140
+ auth:
141
+ plugin:
142
+ foo: 1
143
+ bar: 2
144
+
145
+ export class Plugin<T> {
146
+ public constructor(config: T, options: PluginOptions) {
147
+ console.log(config);
148
+ // {foo:1, bar: 2}
149
+ }
150
+ }
151
+ ```
152
+
153
+ - 794af76c5: Remove Node 12 support
154
+
155
+ - We need move to the new `undici` and does not support Node.js 12
156
+
157
+ - 10aeb4f13: feat!: experiments config renamed to flags
158
+
159
+ - The `experiments` configuration is renamed to `flags`. The functionality is exactly the same.
160
+
161
+ ```js
162
+ flags: token: false;
163
+ search: false;
164
+ ```
165
+
166
+ - The `self_path` property from the config file is being removed in favor of `config_file` full path.
167
+ - Refactor `config` module, better types and utilities
168
+
169
+ - e367c3f1e: - Replace signature handler for legacy tokens by removing deprecated crypto.createDecipher by createCipheriv
170
+
171
+ - Introduce environment variables for legacy tokens
172
+
173
+ ### Code Improvements
174
+
175
+ - Add debug library for improve developer experience
176
+
177
+ ### Breaking change
178
+
179
+ - The new signature invalidates all previous tokens generated by Verdaccio 4 or previous versions.
180
+ - The secret key must have 32 characters long.
181
+
182
+ ### New environment variables
183
+
184
+ - `VERDACCIO_LEGACY_ALGORITHM`: Allows to define the specific algorithm for the token signature which by default is `aes-256-ctr`
185
+ - `VERDACCIO_LEGACY_ENCRYPTION_KEY`: By default, the token stores in the database, but using this variable allows to get it from memory
186
+
187
+ - 82cb0f2bf: feat!: config.logs throw an error, logging config not longer accept array or logs property
188
+
189
+ ### 💥 Breaking change
190
+
191
+ This is valid
192
+
193
+ ```yaml
194
+ log: { type: stdout, format: pretty, level: http }
195
+ ```
196
+
197
+ This is invalid
198
+
199
+ ```yaml
200
+ logs: { type: stdout, format: pretty, level: http }
201
+ ```
202
+
203
+ or
204
+
205
+ ```yaml
206
+ logs:
207
+ - [{ type: stdout, format: pretty, level: http }]
208
+ ```
209
+
210
+ - 000d43746: feat: upgrade to material ui 5
211
+ - 558d78f32: feat: flexible user interface generator
212
+
213
+ **breaking change**
214
+
215
+ The UI does not provide a pre-generated `index.html`, instead the server generates
216
+ the body of the web application based in few parameters:
217
+
218
+ - Webpack manifest
219
+ - User configuration details
220
+
221
+ It allows inject html tags, javascript and new CSS to make the page even more flexible.
222
+
223
+ ### Web new properties for dynamic template
224
+
225
+ The new set of properties are made in order allow inject _html_ and _JavaScript_ scripts within the template. This
226
+ might be useful for scenarios like Google Analytics scripts or custom html in any part of the body.
227
+
228
+ - metaScripts: html injected before close the `head` element.
229
+ - scriptsBodyAfter: html injected before close the `body` element.
230
+ - bodyAfter: html injected after _verdaccio_ JS scripts.
231
+
232
+ ```yaml
233
+ web:
234
+ scriptsBodyAfter:
235
+ - '<script type="text/javascript" src="https://my.company.com/customJS.min.js"></script>'
236
+ metaScripts:
237
+ - '<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>'
238
+ - '<script type="text/javascript" src="https://browser.sentry-cdn.com/5.15.5/bundle.min.js"></script>'
239
+ - '<meta name="robots" content="noindex" />'
240
+ bodyBefore:
241
+ - '<div id="myId">html before webpack scripts</div>'
242
+ bodyAfter:
243
+ - '<div id="myId">html after webpack scripts</div>'
244
+ ```
245
+
246
+ ### UI plugin changes
247
+
248
+ - `index.html` is not longer used, template is generated based on `manifest.json` generated by webpack.
249
+ - Plugin must export:
250
+ - the manifest file.
251
+ - the manifest files: matcher (array of id that generates required scripts to run the ui)
252
+ - static path: The absolute path where the files are located in `node_modules`
253
+
254
+ ```
255
+ exports.staticPath = path.join(__dirname, 'static');
256
+ exports.manifest = require('./static/manifest.json');
257
+ exports.manifestFiles = {
258
+ js: ['runtime.js', 'vendors.js', 'main.js'],
259
+ css: [],
260
+ ico: 'favicon.ico',
261
+ };
262
+ ```
263
+
264
+ - Remove font files
265
+ - CSS is inline on JS (this will help with #2046)
266
+
267
+ ### Docker v5 Examples
268
+
269
+ - Move all current examples to v4 folder
270
+ - Remove any v3 example
271
+ - Create v5 folder with Nginx Example
272
+
273
+ #### Related tickets
274
+
275
+ https://github.com/verdaccio/verdaccio/issues/1523
276
+ https://github.com/verdaccio/verdaccio/issues/1297
277
+ https://github.com/verdaccio/verdaccio/issues/1593
278
+ https://github.com/verdaccio/verdaccio/discussions/1539
279
+ https://github.com/verdaccio/website/issues/264
280
+ https://github.com/verdaccio/verdaccio/issues/1565
281
+ https://github.com/verdaccio/verdaccio/issues/1251
282
+ https://github.com/verdaccio/verdaccio/issues/2029
283
+ https://github.com/verdaccio/docker-examples/issues/29
284
+
285
+ - 781ac9ac2: fix package configuration issues
286
+
287
+ ### Minor Changes
288
+
289
+ - 0da7031e7: allow disable login on ui and endpoints
290
+
291
+ To be able disable the login, set `login: false`, anything else would enable login. This flag will disable access via UI and web endpoints.
292
+
293
+ ```yml
294
+ web:
295
+ title: verdaccio
296
+ login: false
297
+ ```
298
+
299
+ - a1986e098: feat: expose middleware utils
300
+ - 24b9be020: refactor: improve docker image build with strict dependencies and prod build
301
+ - 631abe1ac: feat: refactor logger
302
+ - a23628be9: feat: parse and sanitize on ui
303
+ - 048ac95e8: feat: align with v5 ui endpoints and ui small bugfix
304
+ - b61f762d6: feat: add server rate limit protection to all request
305
+
306
+ To modify custom values, use the server settings property.
307
+
308
+ ```markdown
309
+ server:
310
+
311
+ ## https://www.npmjs.com/package/express-rate-limit#configuration-options
312
+
313
+ rateLimit:
314
+ windowMs: 1000
315
+ max: 10000
316
+ ```
317
+
318
+ The values are intended to be high, if you want to improve security of your server consider
319
+ using different values.
320
+
321
+ - 154b2ecd3: refactor: remove @verdaccio/commons-api in favor @verdaccio/core and remove duplications
322
+ - aa763baec: feat: add typescript project references settings
323
+
324
+ Reading https://ebaytech.berlin/optimizing-multi-package-apps-with-typescript-project-references-d5c57a3b4440 I realized I can use project references to solve the issue to pre-compile modules on develop mode.
325
+
326
+ It allows to navigate (IDE) trough the packages without need compile the packages.
327
+
328
+ Add two `tsconfig`, one using the previous existing configuration that is able to produce declaration files (`tsconfig.build`) and a new one `tsconfig` which is enables [_projects references_](https://www.typescriptlang.org/docs/handbook/project-references.html).
329
+
330
+ - 62c24b632: feat: add passwordValidationRegex property
331
+ - d08fe29d9: feat(web): add a config item to web,let the developer can select whet……her enable the html cache
332
+ - 5167bb528: feat: ui search support for remote, local and private packages
333
+
334
+ The command `npm search` search globally and return all matches, with this improvement the user interface
335
+ is powered with the same capabilities.
336
+
337
+ The UI also tag where is the origin the package with a tag, also provide the latest version and description of the package.
338
+
339
+ - f86c31ed0: feat: migrate web sidebar endpoint to fastify
340
+
341
+ reuse utils methods between packages
342
+
343
+ - 20c9e43ed: dist tags Implementation on Fastify
344
+ - 4b29d715b: chore: move improvements from v5 to v6
345
+
346
+ Migrate improvements form v5 to v6:
347
+
348
+ - https://github.com/verdaccio/verdaccio/pull/3158
349
+ - https://github.com/verdaccio/verdaccio/pull/3151
350
+ - https://github.com/verdaccio/verdaccio/pull/2271
351
+ - https://github.com/verdaccio/verdaccio/pull/2787
352
+ - https://github.com/verdaccio/verdaccio/pull/2791
353
+ - https://github.com/verdaccio/verdaccio/pull/2205
354
+
355
+ - 37274e4c8: feat: implement abbreviated manifest
356
+
357
+ Enable abbreviated manifest data by adding the header:
358
+
359
+ ```
360
+ curl -H "Accept: application/vnd.npm.install-v1+json" https://registry.npmjs.org/verdaccio
361
+ ```
362
+
363
+ It returns a filtered manifest, additionally includes the [time](https://github.com/pnpm/rfcs/pull/2) field by request.
364
+
365
+ Current support for packages managers:
366
+
367
+ - npm: yes
368
+ - pnpm: yes
369
+ - yarn classic: yes
370
+ - yarn modern (+2.x): [no](https://github.com/yarnpkg/berry/pull/3981#issuecomment-1076566096)
371
+
372
+ https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md#abbreviated-metadata-format
373
+
374
+ - 45c03819e: refactor: render html middleware
375
+ - aecbd226d: web: allow ui hide package managers on sidebar
376
+
377
+ If there is a package manager of preference over others, you can define the package managers to be displayed on the detail page and sidebar, just define in the `config.yaml` and web section the list of package managers to be displayed.
378
+
379
+ ```
380
+ web:
381
+ title: Verdaccio
382
+ sort_packages: asc
383
+ primary_color: #cccccc
384
+ pkgManagers:
385
+ - pnpm
386
+ - yarn
387
+ # - npm
388
+ ```
389
+
390
+ To disable all package managers, just define empty:
391
+
392
+ ```
393
+ web:
394
+ title: Verdaccio
395
+ sort_packages: asc
396
+ primary_color: #cccccc
397
+ pkgManagers:
398
+ ```
399
+
400
+ and the section would be hidden.
401
+
402
+ ### Patch Changes
403
+
404
+ - 702d5c497: Fix the password validation logic for the `/reset_password` route to ensure that the password is only reset if it is valid.
405
+ - 351aeeaa8: fix(deps): @verdaccio/utils should be a prod dep of local-storage
406
+ - 1d1112805: Remove @ts-ignore and any in packages/web/src/endpoint/package.ts
407
+ - a828a5f6c: fix: #3174 set correctly ui values to html render
408
+ - a610ef26b: chore: add release step to private regisry on merge changeset pr
409
+ - 4fc21146a: fix: missing logo on header
410
+ - 34f0f1101: Enable prerelease mode with **changesets**
411
+ - 5ddfa5264: Fix the search by exact name of the package
412
+
413
+ Full package name queries was not finding anithing. It was happening
414
+ becouse of stemmer of [lunr.js](https://lunrjs.com/).
415
+
416
+ To fix this, the stemmer of [lunr.js](https://lunrjs.com/) was removed from search pipeline.
417
+
418
+ - 0a6412ca9: refactor: got instead undici
419
+ - b4cc80017: fix: improve abort request search
420
+ - Updated dependencies [292c0a37f]
421
+ - Updated dependencies [dc05edfe6]
422
+ - Updated dependencies [a1986e098]
423
+ - Updated dependencies [974cd8c19]
424
+ - Updated dependencies [a828271d6]
425
+ - Updated dependencies [ef88da3b4]
426
+ - Updated dependencies [43f32687c]
427
+ - Updated dependencies [679c19c1b]
428
+ - Updated dependencies [a3a209b5e]
429
+ - Updated dependencies [459b6fa72]
430
+ - Updated dependencies [9fc2e7961]
431
+ - Updated dependencies [9943e2b18]
432
+ - Updated dependencies [ae93e039d]
433
+ - Updated dependencies [24b9be020]
434
+ - Updated dependencies [794af76c5]
435
+ - Updated dependencies [e75c0a3b9]
436
+ - Updated dependencies [351aeeaa8]
437
+ - Updated dependencies [10aeb4f13]
438
+ - Updated dependencies [1d1112805]
439
+ - Updated dependencies [631abe1ac]
440
+ - Updated dependencies [9718e0330]
441
+ - Updated dependencies [7ef599cc4]
442
+ - Updated dependencies [b702ea363]
443
+ - Updated dependencies [1b217fd34]
444
+ - Updated dependencies [e367c3f1e]
445
+ - Updated dependencies [a1da11308]
446
+ - Updated dependencies [d167f92e1]
447
+ - Updated dependencies [d2c65da9c]
448
+ - Updated dependencies [00d1d2a17]
449
+ - Updated dependencies [1810ed0d8]
450
+ - Updated dependencies [a610ef26b]
451
+ - Updated dependencies [ddb6a2239]
452
+ - Updated dependencies [31d661c7b]
453
+ - Updated dependencies [648575aa4]
454
+ - Updated dependencies [b61f762d6]
455
+ - Updated dependencies [4fc21146a]
456
+ - Updated dependencies [d43894e8f]
457
+ - Updated dependencies [154b2ecd3]
458
+ - Updated dependencies [061bfcc8d]
459
+ - Updated dependencies [aa763baec]
460
+ - Updated dependencies [378e907d5]
461
+ - Updated dependencies [16e38df8a]
462
+ - Updated dependencies [34f0f1101]
463
+ - Updated dependencies [82cb0f2bf]
464
+ - Updated dependencies [dc571aabd]
465
+ - Updated dependencies [5ddfa5264]
466
+ - Updated dependencies [b78f35257]
467
+ - Updated dependencies [ce013d2fc]
468
+ - Updated dependencies [f859d2b1a]
469
+ - Updated dependencies [2c594910d]
470
+ - Updated dependencies [6c1eb021b]
471
+ - Updated dependencies [62c24b632]
472
+ - Updated dependencies [0a6412ca9]
473
+ - Updated dependencies [0a6412ca9]
474
+ - Updated dependencies [d08fe29d9]
475
+ - Updated dependencies [5167bb528]
476
+ - Updated dependencies [f86c31ed0]
477
+ - Updated dependencies [65f88b826]
478
+ - Updated dependencies [aeff267d9]
479
+ - Updated dependencies [20c9e43ed]
480
+ - Updated dependencies [b3e8438f6]
481
+ - Updated dependencies [c9d1af0e5]
482
+ - Updated dependencies [730b5d8cc]
483
+ - Updated dependencies [4b29d715b]
484
+ - Updated dependencies [b13a3fefd]
485
+ - Updated dependencies [68ea21214]
486
+ - Updated dependencies [37274e4c8]
487
+ - Updated dependencies [fa274ee44]
488
+ - Updated dependencies [8f43bf17d]
489
+ - Updated dependencies [45c03819e]
490
+ - Updated dependencies [b849128de]
491
+ - @verdaccio/auth@6.0.0
492
+ - @verdaccio/config@6.0.0
493
+ - @verdaccio/core@6.0.0
494
+ - @verdaccio/tarball@11.0.0
495
+ - @verdaccio/url@11.0.0
496
+ - @verdaccio/loaders@6.0.0
497
+ - @verdaccio/logger@6.0.0
498
+ - @verdaccio/middleware@6.0.0
499
+ - @verdaccio/store@6.0.0
500
+ - @verdaccio/utils@6.0.0
501
+
3
502
  ## 6.0.0-6-next.63
4
503
 
5
504
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/web",
3
- "version": "6.0.0-6-next.63",
3
+ "version": "7.0.0-next.1",
4
4
  "description": "web ui middleware",
5
5
  "main": "./build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -25,30 +25,30 @@
25
25
  },
26
26
  "license": "MIT",
27
27
  "dependencies": {
28
- "@verdaccio/auth": "6.0.0-6-next.55",
29
- "@verdaccio/core": "6.0.0-6-next.76",
30
- "@verdaccio/config": "6.0.0-6-next.76",
31
- "@verdaccio/loaders": "6.0.0-6-next.45",
32
- "@verdaccio/logger": "6.0.0-6-next.44",
33
- "@verdaccio/middleware": "6.0.0-6-next.55",
34
- "@verdaccio/store": "6.0.0-6-next.56",
35
- "@verdaccio/tarball": "11.0.0-6-next.45",
36
- "@verdaccio/url": "11.0.0-6-next.42",
37
- "@verdaccio/utils": "6.0.0-6-next.44",
28
+ "@verdaccio/auth": "7.0.0-next.1",
29
+ "@verdaccio/core": "7.0.0-next.1",
30
+ "@verdaccio/config": "7.0.0-next.1",
31
+ "@verdaccio/loaders": "7.0.0-next.1",
32
+ "@verdaccio/logger": "7.0.0-next.1",
33
+ "@verdaccio/middleware": "7.0.0-next.1",
34
+ "@verdaccio/store": "7.0.0-next.1",
35
+ "@verdaccio/tarball": "12.0.0-next.1",
36
+ "@verdaccio/url": "12.0.0-next.1",
37
+ "@verdaccio/utils": "7.0.0-next.1",
38
38
  "debug": "4.3.4",
39
39
  "express": "4.18.2",
40
40
  "lodash": "4.17.21"
41
41
  },
42
42
  "devDependencies": {
43
- "@verdaccio/types": "11.0.0-6-next.25",
44
- "@verdaccio/test-helper": "2.0.0-6-next.8",
45
- "@verdaccio/api": "6.0.0-6-next.59",
43
+ "@verdaccio/types": "12.0.0-next.0",
44
+ "@verdaccio/test-helper": "3.0.0-next.0",
45
+ "@verdaccio/api": "7.0.0-next.1",
46
46
  "node-html-parser": "4.1.5",
47
47
  "supertest": "6.3.3",
48
48
  "nock": "13.2.9",
49
49
  "jsdom": "20.0.3",
50
- "verdaccio-auth-memory": "11.0.0-6-next.41",
51
- "verdaccio-memory": "11.0.0-6-next.43"
50
+ "verdaccio-auth-memory": "12.0.0-next.1",
51
+ "verdaccio-memory": "12.0.0-next.1"
52
52
  },
53
53
  "funding": {
54
54
  "type": "opencollective",