mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
38 lines
1.4 KiB
Markdown
38 lines
1.4 KiB
Markdown
|
# @verdaccio/eslint-config
|
||
|
|
||
|
## 2.0.0-6-next.0
|
||
|
### 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` instead `node-fetch`
|
||
|
- use `fastify` instead `express` 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. The `search` methods also changes and recieves a `query` object that contains all query params from the client.
|
||
|
|
||
|
```ts
|
||
|
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[]>;
|
||
|
}
|
||
|
```
|