Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
5.2 KiB
@verdaccio/fastify-migration
6.0.0-6-next.19
Patch Changes
- Updated dependencies [
b78f3525
]- @verdaccio/logger@6.0.0-6-next.10
- @verdaccio/auth@6.0.0-6-next.18
- @verdaccio/store@6.0.0-6-next.19
6.0.0-6-next.18
Patch Changes
- Updated dependencies [
730b5d8c
]- @verdaccio/logger@6.0.0-6-next.9
- @verdaccio/auth@6.0.0-6-next.17
- @verdaccio/store@6.0.0-6-next.18
6.0.0-6-next.17
Major Changes
-
a828271d
: refactor: download manifest endpoint and integrate fastifyMuch simpler API for fetching a package
const manifest = await storage.getPackageNext({ name, uplinksLook: true, req, version: queryVersion, requestOptions, });
not perfect, the
req
still is being passed to the proxy (this has to be refactored at proxy package) and then removed from here, in proxy we pass the request instance to therequest
library.Details
async/await
sugar for getPackage()- Improve and reuse code between current implementation and new fastify endpoint (add scaffolding for request manifest)
- Improve performance
- Add new tests
Breaking changes
All storage plugins will stop to work since the storage uses
getPackageNext
method which is Promise based, I won't replace this now because will force me to update all plugins, I'll follow up in another PR. Currently will throw http 500
Patch Changes
- Updated dependencies [
a828271d
] - Updated dependencies [
24b9be02
] - Updated dependencies [
e75c0a3b
] - Updated dependencies [
b13a3fef
]- @verdaccio/tarball@11.0.0-6-next.11
- @verdaccio/store@6.0.0-6-next.17
- @verdaccio/utils@6.0.0-6-next.10
- @verdaccio/core@6.0.0-6-next.4
- @verdaccio/logger@6.0.0-6-next.8
- @verdaccio/auth@6.0.0-6-next.16
- @verdaccio/config@6.0.0-6-next.12
- @verdaccio/readme@11.0.0-6-next.4
6.0.0-6-next.16
Minor Changes
-
f86c31ed
: feat: migrate web sidebar endpoint to fastifyreuse utils methods between packages
-
20c9e43e
: dist tags Implementation on Fastify
Patch Changes
- Updated dependencies [
f86c31ed
] - Updated dependencies [
20c9e43e
]- @verdaccio/store@6.0.0-6-next.16
- @verdaccio/utils@6.0.0-6-next.9
- @verdaccio/auth@6.0.0-6-next.15
- @verdaccio/config@6.0.0-6-next.11
- @verdaccio/tarball@11.0.0-6-next.10
6.0.0-6-next.15
Patch Changes
- Updated dependencies [
6c1eb021
]- @verdaccio/core@6.0.0-6-next.3
- @verdaccio/logger@6.0.0-6-next.7
- @verdaccio/auth@6.0.0-6-next.14
- @verdaccio/config@6.0.0-6-next.10
- @verdaccio/tarball@11.0.0-6-next.9
- @verdaccio/store@6.0.0-6-next.15
- @verdaccio/utils@6.0.0-6-next.8
6.0.0-6-next.14
Major Changes
-
794af76c
: Remove Node 12 support- We need move to the new
undici
and does not support Node.js 12
- We need move to the new
Minor Changes
b702ea36
: abort search request support for proxy154b2ecd
: refactor: remove @verdaccio/commons-api in favor @verdaccio/core and remove duplications
Patch Changes
- Updated dependencies [
794af76c
] - Updated dependencies [
b702ea36
] - Updated dependencies [
154b2ecd
]- @verdaccio/auth@6.0.0-6-next.13
- @verdaccio/config@6.0.0-6-next.9
- @verdaccio/logger@6.0.0-6-next.6
- @verdaccio/store@6.0.0-6-next.14
6.0.0-6-next.13
Patch Changes
- Updated dependencies [
2c594910
]- @verdaccio/logger@6.0.0-6-next.5
- @verdaccio/auth@6.0.0-6-next.12
- @verdaccio/store@6.0.0-6-next.13
6.0.0-6-next.12
Major Changes
-
459b6fa7
: refactor: search v1 endpoint and local-database- refactor search
api v1
endpoint, improve performance - remove usage of
async
dependency https://github.com/verdaccio/verdaccio/issues/1225 - refactor method storage class
- create new module
core
to reduce the ammount of modules with utilities - use
undici
insteadnode-fetch
- use
fastify
insteadexpress
for functional test
Breaking changes
- plugin storage API changes
- remove old search endpoint (return 404)
- filter local private packages at plugin level
The storage api changes for methods
get
,add
,remove
as promise base. Thesearch
methods also changes and recieves aquery
object that contains all query params from the client.export interface IPluginStorage<T> extends IPlugin { add(name: string): Promise<void>; remove(name: string): Promise<void>; get(): Promise<any>; init(): Promise<void>; getSecret(): Promise<string>; setSecret(secret: string): Promise<any>; getPackageStorage(packageInfo: string): IPackageStorage; search(query: searchUtils.SearchQuery): Promise<searchUtils.SearchItem[]>; saveToken(token: Token): Promise<any>; deleteToken(user: string, tokenKey: string): Promise<any>; readTokens(filter: TokenFilter): Promise<Token[]>; }
- refactor search
Patch Changes
- Updated dependencies [
459b6fa7
]- @verdaccio/auth@6.0.0-6-next.11
- @verdaccio/config@6.0.0-6-next.8
- @verdaccio/store@6.0.0-6-next.12
- @verdaccio/logger@6.0.0-6-next.4
6.0.0-6-next.11
Patch Changes
df0da3d6
: Added core-js missing from dependencies though referenced in .js sources- @verdaccio/auth@6.0.0-6-next.10
- @verdaccio/store@6.0.0-6-next.11
6.0.0-6-next.10
Minor Changes
55ee3fdd
: [Fastify] Add ping endpoint