Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
32 KiB
@verdaccio/proxy
7.0.0-next-7.13
Patch Changes
- Updated dependencies [
a99a4bb
]- @verdaccio/config@7.0.0-next-7.13
- @verdaccio/core@7.0.0-next-7.13
- @verdaccio/utils@7.0.0-next-7.13
7.0.0-next-7.12
Patch Changes
- @verdaccio/core@7.0.0-next-7.12
- @verdaccio/config@7.0.0-next-7.12
- @verdaccio/utils@7.0.0-next-7.12
7.0.0-next-7.11
Patch Changes
- Updated dependencies [
c9962fe
]- @verdaccio/config@7.0.0-next-7.11
- @verdaccio/core@7.0.0-next-7.11
- @verdaccio/utils@7.0.0-next-7.11
7.0.0-next-7.10
Patch Changes
- @verdaccio/core@7.0.0-next-7.10
- @verdaccio/config@7.0.0-next-7.10
- @verdaccio/utils@7.0.0-next-7.10
7.0.0-next-7.9
Patch Changes
- @verdaccio/core@7.0.0-next-7.9
- @verdaccio/config@7.0.0-next-7.9
- @verdaccio/utils@7.0.0-next-7.9
7.0.0-next-7.8
Patch Changes
- @verdaccio/core@7.0.0-next-7.8
- @verdaccio/config@7.0.0-next-7.8
- @verdaccio/utils@7.0.0-next-7.8
7.0.0-next-7.7
Patch Changes
- @verdaccio/core@7.0.0-next-7.7
- @verdaccio/config@7.0.0-next-7.7
- @verdaccio/utils@7.0.0-next-7.7
7.0.0-next.6
Patch Changes
- Updated dependencies [
4d96324
]- @verdaccio/config@7.0.0-next.6
- @verdaccio/core@7.0.0-next.6
- @verdaccio/utils@7.0.0-next.6
7.0.0-next.5
Patch Changes
- Updated dependencies [
f047cc8
]- @verdaccio/core@7.0.0-next.5
- @verdaccio/config@7.0.0-next.5
- @verdaccio/utils@7.0.0-next.5
7.0.0-next.4
Patch Changes
- @verdaccio/core@7.0.0-next.4
- @verdaccio/config@7.0.0-next.4
- @verdaccio/utils@7.0.0-next.4
7.0.0-next.3
Major Changes
e7ebccb61
: update major dependencies, remove old nodejs support
Patch Changes
- Updated dependencies [
daceb6d87
] - Updated dependencies [
e7ebccb61
]- @verdaccio/config@7.0.0-next.3
- @verdaccio/core@7.0.0-next.3
- @verdaccio/utils@7.0.0-next.3
7.0.0-next.2
Patch Changes
- @verdaccio/core@7.0.0-next.2
- @verdaccio/config@7.0.0-next.2
- @verdaccio/utils@7.0.0-next.2
7.0.0-next.1
Patch Changes
- @verdaccio/core@7.0.0-next.1
- @verdaccio/config@7.0.0-next.1
- @verdaccio/utils@7.0.0-next.1
7.0.0-next.0
Major Changes
- feat!: bump to v7
Patch Changes
- Updated dependencies
- @verdaccio/config@7.0.0-next.0
- @verdaccio/core@7.0.0-next.0
- @verdaccio/utils@7.0.0-next.0
6.0.0
Major Changes
-
292c0a37f
: feat!: replace deprecated request dependency by gotThis 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.
Notes
- Remove deprecated
request
by othergot
, retry improved, custom Agent ( got does not include it built-in) - Remove
async
dependency from storage (used by core) it was linked with proxy somehow safe to remove now - Refactor with promises instead callback wherever is possible
Document the API- Improve testing, integration tests
- Bugfix
- Clean up old validations
- Improve performance
💥 Breaking changes
- Plugin API methods were callbacks based are returning promises, this will break current storage plugins, check documentation for upgrade.
- Write Tarball, Read Tarball methods parameters change, a new set of options like
AbortController
signals are being provided to theaddAbortSignal
can be internally used with Streams when a request is aborted. eg:addAbortSignal(signal, fs.createReadStream(pathName));
@verdaccio/streams
stream abort support is legacy is being deprecated removed- Remove AWS and Google Cloud packages for future refactoring #2574.
- Remove deprecated
-
459b6fa72
: 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
-
10aeb4f13
: feat!: experiments config renamed to flags- The
experiments
configuration is renamed toflags
. The functionality is exactly the same.
flags: token: false; search: false;
- The
self_path
property from the config file is being removed in favor ofconfig_file
full path. - Refactor
config
module, better types and utilities
- The
-
e367c3f1e
: - Replace signature handler for legacy tokens by removing deprecated crypto.createDecipher by createCipheriv- Introduce environment variables for legacy tokens
Code Improvements
- Add debug library for improve developer experience
Breaking change
- The new signature invalidates all previous tokens generated by Verdaccio 4 or previous versions.
- The secret key must have 32 characters long.
New environment variables
VERDACCIO_LEGACY_ALGORITHM
: Allows to define the specific algorithm for the token signature which by default isaes-256-ctr
VERDACCIO_LEGACY_ENCRYPTION_KEY
: By default, the token stores in the database, but using this variable allows to get it from memory
-
82cb0f2bf
: feat!: config.logs throw an error, logging config not longer accept array or logs property💥 Breaking change
This is valid
log: { type: stdout, format: pretty, level: http }
This is invalid
logs: { type: stdout, format: pretty, level: http }
or
logs: - [{ type: stdout, format: pretty, level: http }]
Minor Changes
-
631abe1ac
: feat: refactor logger -
b702ea363
: abort search request support for proxy -
b61f762d6
: feat: add server rate limit protection to all requestTo modify custom values, use the server settings property.
server: ## https://www.npmjs.com/package/express-rate-limit#configuration-options rateLimit: windowMs: 1000 max: 10000
The values are intended to be high, if you want to improve security of your server consider using different values.
-
154b2ecd3
: refactor: remove @verdaccio/commons-api in favor @verdaccio/core and remove duplications -
aa763baec
: feat: add typescript project references settingsReading 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.
It allows to navigate (IDE) trough the packages without need compile the packages.
Add two
tsconfig
, one using the previous existing configuration that is able to produce declaration files (tsconfig.build
) and a new onetsconfig
which is enables projects references. -
0a6412ca9
: feat: refactor proxy with got v12 -
5167bb528
: feat: ui search support for remote, local and private packagesThe command
npm search
search globally and return all matches, with this improvement the user interface is powered with the same capabilities.The UI also tag where is the origin the package with a tag, also provide the latest version and description of the package.
-
45c03819e
: refactor: render html middleware
Patch Changes
-
351aeeaa8
: fix(deps): @verdaccio/utils should be a prod dep of local-storage -
a610ef26b
: chore: add release step to private regisry on merge changeset pr -
65cb26cf3
: refactor: migrate request to node-fetch at hooks package -
e381e4845
: fix: improve legacy nodejs support -
34f0f1101
: Enable prerelease mode with changesets -
0a6412ca9
: refactor: got instead undici -
68ea21214
: ESLint Warnings FixedRelated to issue #1461
- max-len: most of the sensible max-len errors are fixed
- no-unused-vars: most of these types of errors are fixed by deleting not needed declarations
- @typescript-eslint/no-unused-vars: same as above
-
Updated dependencies [
292c0a37f
] -
Updated dependencies [
a1986e098
] -
Updated dependencies [
974cd8c19
] -
Updated dependencies [
a828271d6
] -
Updated dependencies [
ef88da3b4
] -
Updated dependencies [
43f32687c
] -
Updated dependencies [
679c19c1b
] -
Updated dependencies [
a3a209b5e
] -
Updated dependencies [
459b6fa72
] -
Updated dependencies [
9fc2e7961
] -
Updated dependencies [
24b9be020
] -
Updated dependencies [
794af76c5
] -
Updated dependencies [
351aeeaa8
] -
Updated dependencies [
10aeb4f13
] -
Updated dependencies [
9718e0330
] -
Updated dependencies [
1b217fd34
] -
Updated dependencies [
e367c3f1e
] -
Updated dependencies [
a1da11308
] -
Updated dependencies [
d167f92e1
] -
Updated dependencies [
d2c65da9c
] -
Updated dependencies [
00d1d2a17
] -
Updated dependencies [
1810ed0d8
] -
Updated dependencies [
a610ef26b
] -
Updated dependencies [
ddb6a2239
] -
Updated dependencies [
648575aa4
] -
Updated dependencies [
b61f762d6
] -
Updated dependencies [
d43894e8f
] -
Updated dependencies [
154b2ecd3
] -
Updated dependencies [
aa763baec
] -
Updated dependencies [
378e907d5
] -
Updated dependencies [
16e38df8a
] -
Updated dependencies [
34f0f1101
] -
Updated dependencies [
82cb0f2bf
] -
Updated dependencies [
dc571aabd
] -
Updated dependencies [
f859d2b1a
] -
Updated dependencies [
6c1eb021b
] -
Updated dependencies [
62c24b632
] -
Updated dependencies [
0a6412ca9
] -
Updated dependencies [
d08fe29d9
] -
Updated dependencies [
5167bb528
] -
Updated dependencies [
f86c31ed0
] -
Updated dependencies [
c9d1af0e5
] -
Updated dependencies [
4b29d715b
] -
Updated dependencies [
b13a3fefd
] -
Updated dependencies [
68ea21214
] -
Updated dependencies [
8f43bf17d
] -
Updated dependencies [
45c03819e
] -
Updated dependencies [
b849128de
]- @verdaccio/config@6.0.0
- @verdaccio/core@6.0.0
- @verdaccio/utils@6.0.0
6.0.0-6-next.54
Patch Changes
e381e4845
: fix: improve legacy nodejs support- @verdaccio/core@6.0.0-6-next.76
- @verdaccio/config@6.0.0-6-next.76
- @verdaccio/utils@6.0.0-6-next.44
6.0.0-6-next.53
Minor Changes
0a6412ca9
: feat: refactor proxy with got v12
Patch Changes
0a6412ca9
: refactor: got instead undici- Updated dependencies [
0a6412ca9
]- @verdaccio/core@6.0.0-6-next.75
- @verdaccio/config@6.0.0-6-next.75
- @verdaccio/utils@6.0.0-6-next.43
6.0.0-6-next.52
Patch Changes
- @verdaccio/core@6.0.0-6-next.74
- @verdaccio/config@6.0.0-6-next.74
- @verdaccio/local-storage@11.0.0-6-next.44
- @verdaccio/utils@6.0.0-6-next.42
- @verdaccio/logger@6.0.0-6-next.42
6.0.0-6-next.51
Patch Changes
- Updated dependencies [
f859d2b1a
]- @verdaccio/core@6.0.0-6-next.73
- @verdaccio/config@6.0.0-6-next.73
- @verdaccio/local-storage@11.0.0-6-next.43
- @verdaccio/utils@6.0.0-6-next.41
- @verdaccio/logger@6.0.0-6-next.41
6.0.0-6-next.50
Patch Changes
- @verdaccio/core@6.0.0-6-next.72
- @verdaccio/config@6.0.0-6-next.72
- @verdaccio/local-storage@11.0.0-6-next.42
- @verdaccio/utils@6.0.0-6-next.40
- @verdaccio/logger@6.0.0-6-next.40
6.0.0-6-next.49
Patch Changes
- Updated dependencies [
679c19c1b
]- @verdaccio/config@6.0.0-6-next.71
- @verdaccio/local-storage@11.0.0-6-next.41
- @verdaccio/logger@6.0.0-6-next.39
- @verdaccio/core@6.0.0-6-next.71
- @verdaccio/utils@6.0.0-6-next.39
6.0.0-6-next.48
Patch Changes
- @verdaccio/logger@6.0.0-6-next.38
- @verdaccio/local-storage@11.0.0-6-next.40
- @verdaccio/core@6.0.0-6-next.70
- @verdaccio/config@6.0.0-6-next.70
- @verdaccio/utils@6.0.0-6-next.38
6.0.0-6-next.47
Patch Changes
- Updated dependencies [
c9d1af0e
]- @verdaccio/core@6.0.0-6-next.69
- @verdaccio/config@6.0.0-6-next.69
- @verdaccio/local-storage@11.0.0-6-next.39
- @verdaccio/utils@6.0.0-6-next.37
- @verdaccio/logger@6.0.0-6-next.37
6.0.0-6-next.46
Patch Changes
- @verdaccio/core@6.0.0-6-next.68
- @verdaccio/config@6.0.0-6-next.68
- @verdaccio/local-storage@11.0.0-6-next.38
- @verdaccio/utils@6.0.0-6-next.36
- @verdaccio/logger@6.0.0-6-next.36
6.0.0-6-next.45
Patch Changes
- Updated dependencies [
16e38df8
]- @verdaccio/config@6.0.0-6-next.67
- @verdaccio/core@6.0.0-6-next.67
- @verdaccio/local-storage@11.0.0-6-next.37
- @verdaccio/utils@6.0.0-6-next.35
- @verdaccio/logger@6.0.0-6-next.35
6.0.0-6-next.44
Patch Changes
- @verdaccio/core@6.0.0-6-next.66
- @verdaccio/logger@6.0.0-6-next.34
- @verdaccio/local-storage@11.0.0-6-next.36
- @verdaccio/config@6.0.0-6-next.66
- @verdaccio/utils@6.0.0-6-next.34
6.0.0-6-next.43
Patch Changes
- Updated dependencies [
a1da1130
]- @verdaccio/core@6.0.0-6-next.65
- @verdaccio/config@6.0.0-6-next.65
- @verdaccio/local-storage@11.0.0-6-next.35
- @verdaccio/utils@6.0.0-6-next.33
- @verdaccio/logger@6.0.0-6-next.33
6.0.0-6-next.42
Patch Changes
- Updated dependencies [
974cd8c1
]- @verdaccio/core@6.0.0-6-next.64
- @verdaccio/config@6.0.0-6-next.64
- @verdaccio/local-storage@11.0.0-6-next.34
- @verdaccio/utils@6.0.0-6-next.32
- @verdaccio/logger@6.0.0-6-next.32
6.0.0-6-next.41
Patch Changes
- Updated dependencies [
ddb6a223
] - Updated dependencies [
dc571aab
]- @verdaccio/config@6.0.0-6-next.63
- @verdaccio/core@6.0.0-6-next.63
- @verdaccio/local-storage@11.0.0-6-next.33
- @verdaccio/utils@6.0.0-6-next.31
- @verdaccio/logger@6.0.0-6-next.31
6.0.0-6-next.40
Patch Changes
- Updated dependencies [
378e907d
]- @verdaccio/core@6.0.0-6-next.62
- @verdaccio/logger@6.0.0-6-next.30
- @verdaccio/local-storage@11.0.0-6-next.32
- @verdaccio/config@6.0.0-6-next.62
- @verdaccio/utils@6.0.0-6-next.30
6.0.0-6-next.39
Patch Changes
- Updated dependencies [
d167f92e
]- @verdaccio/config@6.0.0-6-next.61
- @verdaccio/local-storage@11.0.0-6-next.31
- @verdaccio/core@6.0.0-6-next.61
- @verdaccio/utils@6.0.0-6-next.29
- @verdaccio/logger@6.0.0-6-next.29
6.0.0-6-next.38
Minor Changes
45c03819
: refactor: render html middleware
Patch Changes
- Updated dependencies [
45c03819
]- @verdaccio/config@6.0.0-6-next.60
- @verdaccio/local-storage@11.0.0-6-next.30
- @verdaccio/core@6.0.0-6-next.60
- @verdaccio/logger@6.0.0-6-next.28
- @verdaccio/utils@6.0.0-6-next.28
6.0.0-6-next.37
Patch Changes
- Updated dependencies [
65f88b82
]- @verdaccio/logger@6.0.0-6-next.27
- @verdaccio/local-storage@11.0.0-6-next.29
- @verdaccio/core@6.0.0-6-next.59
- @verdaccio/config@6.0.0-6-next.59
- @verdaccio/utils@6.0.0-6-next.27
6.0.0-6-next.36
Patch Changes
- @verdaccio/core@6.0.0-6-next.58
- @verdaccio/config@6.0.0-6-next.58
- @verdaccio/local-storage@11.0.0-6-next.28
- @verdaccio/utils@6.0.0-6-next.26
- @verdaccio/logger@6.0.0-6-next.26
6.0.0-6-next.35
Patch Changes
- @verdaccio/local-storage@11.0.0-6-next.27
- @verdaccio/core@6.0.0-6-next.57
- @verdaccio/config@6.0.0-6-next.57
- @verdaccio/logger@6.0.0-6-next.25
- @verdaccio/utils@6.0.0-6-next.25
6.0.0-6-next.34
Patch Changes
- Updated dependencies [
a1986e09
]- @verdaccio/utils@6.0.0-6-next.24
- @verdaccio/config@6.0.0-6-next.56
- @verdaccio/local-storage@11.0.0-6-next.26
- @verdaccio/core@6.0.0-6-next.56
- @verdaccio/logger@6.0.0-6-next.24
6.0.0-6-next.33
Patch Changes
- Updated dependencies [
9718e033
]- @verdaccio/config@6.0.0-6-next.55
- @verdaccio/core@6.0.0-6-next.55
- @verdaccio/utils@6.0.0-6-next.23
- @verdaccio/local-storage@11.0.0-6-next.25
- @verdaccio/logger@6.0.0-6-next.23
6.0.0-6-next.32
Patch Changes
- Updated dependencies [
ef88da3b
]- @verdaccio/config@6.0.0-6-next.54
- @verdaccio/core@6.0.0-6-next.54
- @verdaccio/logger@6.0.0-6-next.22
- @verdaccio/local-storage@11.0.0-6-next.24
- @verdaccio/utils@6.0.0-6-next.22
6.0.0-6-next.31
Patch Changes
- @verdaccio/core@6.0.0-6-next.53
- @verdaccio/logger@6.0.0-6-next.21
- @verdaccio/local-storage@11.0.0-6-next.23
- @verdaccio/config@6.0.0-6-next.53
- @verdaccio/utils@6.0.0-6-next.21
6.0.0-6-next.30
Patch Changes
- @verdaccio/core@6.0.0-6-next.52
- @verdaccio/config@6.0.0-6-next.52
- @verdaccio/logger@6.0.0-6-next.20
- @verdaccio/local-storage@11.0.0-6-next.22
- @verdaccio/utils@6.0.0-6-next.20
6.0.0-6-next.29
Patch Changes
- Updated dependencies [
4b29d715
]- @verdaccio/config@6.0.0-6-next.51
- @verdaccio/core@6.0.0-6-next.51
- @verdaccio/local-storage@11.0.0-6-next.21
- @verdaccio/logger@6.0.0-6-next.19
- @verdaccio/utils@6.0.0-6-next.19
6.0.0-6-next.28
Patch Changes
- @verdaccio/core@6.0.0-6-next.50
- @verdaccio/config@6.0.0-6-next.50
- @verdaccio/logger@6.0.0-6-next.18
- @verdaccio/local-storage@11.0.0-6-next.20
- @verdaccio/utils@6.0.0-6-next.18
6.0.0-6-next.27
Patch Changes
- @verdaccio/local-storage@11.0.0-6-next.19
- @verdaccio/core@6.0.0-6-next.49
- @verdaccio/config@6.0.0-6-next.49
- @verdaccio/logger@6.0.0-6-next.17
- @verdaccio/utils@6.0.0-6-next.17
6.0.0-6-next.26
Patch Changes
- Updated dependencies [
43f32687
] - Updated dependencies [
9fc2e796
] - Updated dependencies [
62c24b63
]- @verdaccio/core@6.0.0-6-next.48
- @verdaccio/config@6.0.0-6-next.48
- @verdaccio/local-storage@11.0.0-6-next.18
- @verdaccio/utils@6.0.0-6-next.16
- @verdaccio/logger@6.0.0-6-next.16
6.0.0-6-next.25
Patch Changes
- @verdaccio/core@6.0.0-6-next.47
- @verdaccio/config@6.0.0-6-next.47
- @verdaccio/logger@6.0.0-6-next.15
- @verdaccio/local-storage@11.0.0-6-next.17
- @verdaccio/utils@6.0.0-6-next.15
6.0.0-6-next.24
Patch Changes
- Updated dependencies [
b849128d
]- @verdaccio/core@6.0.0-6-next.8
- @verdaccio/config@6.0.0-6-next.17
- @verdaccio/logger@6.0.0-6-next.14
- @verdaccio/local-storage@11.0.0-6-next.16
- @verdaccio/utils@6.0.0-6-next.14
6.0.0-6-next.23
Patch Changes
351aeeaa
: fix(deps): @verdaccio/utils should be a prod dep of local-storage- Updated dependencies [
351aeeaa
]- @verdaccio/core@6.0.0-6-next.7
- @verdaccio/logger@6.0.0-6-next.13
- @verdaccio/local-storage@11.0.0-6-next.15
- @verdaccio/config@6.0.0-6-next.16
- @verdaccio/utils@6.0.0-6-next.13
6.0.0-6-next.22
Patch Changes
- Updated dependencies [
37274e4c
]- @verdaccio/local-storage@11.0.0-6-next.14
- @verdaccio/core@6.0.0-6-next.6
- @verdaccio/logger@6.0.0-6-next.12
6.0.0-6-next.21
Major Changes
-
292c0a37
: feat!: replace deprecated request dependency by gotThis 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.
Notes
- Remove deprecated
request
by othergot
, retry improved, custom Agent ( got does not include it built-in) - Remove
async
dependency from storage (used by core) it was linked with proxy somehow safe to remove now - Refactor with promises instead callback wherever is possible
Document the API- Improve testing, integration tests
- Bugfix
- Clean up old validations
- Improve performance
💥 Breaking changes
- Plugin API methods were callbacks based are returning promises, this will break current storage plugins, check documentation for upgrade.
- Write Tarball, Read Tarball methods parameters change, a new set of options like
AbortController
signals are being provided to theaddAbortSignal
can be internally used with Streams when a request is aborted. eg:addAbortSignal(signal, fs.createReadStream(pathName));
@verdaccio/streams
stream abort support is legacy is being deprecated removed- Remove AWS and Google Cloud packages for future refactoring #2574.
- Remove deprecated
Patch Changes
- Updated dependencies [
292c0a37
] - Updated dependencies [
a3a209b5
] - Updated dependencies [
00d1d2a1
]- @verdaccio/config@6.0.0-6-next.15
- @verdaccio/core@6.0.0-6-next.6
- @verdaccio/logger@6.0.0-6-next.12
- @verdaccio/local-storage@11.0.0-6-next.13
- @verdaccio/utils@6.0.0-6-next.12
6.0.0-6-next.20
Patch Changes
- Updated dependencies [
d43894e8
] - Updated dependencies [
d08fe29d
]- @verdaccio/config@6.0.0-6-next.14
- @verdaccio/local-storage@11.0.0-6-next.12
- @verdaccio/core@6.0.0-6-next.5
- @verdaccio/streams@11.0.0-6-next.5
- @verdaccio/logger@6.0.0-6-next.11
6.0.0-6-next.19
Major Changes
-
82cb0f2b
: feat!: config.logs throw an error, logging config not longer accept array or logs property💥 Breaking change
This is valid
log: { type: stdout, format: pretty, level: http }
This is invalid
logs: { type: stdout, format: pretty, level: http }
or
logs: - [{ type: stdout, format: pretty, level: http }]
Minor Changes
-
5167bb52
: feat: ui search support for remote, local and private packagesThe command
npm search
search globally and return all matches, with this improvement the user interface is powered with the same capabilities.The UI also tag where is the origin the package with a tag, also provide the latest version and description of the package.
Patch Changes
- Updated dependencies [
82cb0f2b
] - Updated dependencies [
5167bb52
]- @verdaccio/config@6.0.0-6-next.13
- @verdaccio/core@6.0.0-6-next.5
- @verdaccio/logger@6.0.0-6-next.11
- @verdaccio/local-storage@11.0.0-6-next.12
- @verdaccio/utils@6.0.0-6-next.11
- @verdaccio/streams@11.0.0-6-next.5
6.0.0-6-next.18
Patch Changes
- Updated dependencies [
b78f3525
]- @verdaccio/logger@6.0.0-6-next.10
6.0.0-6-next.17
Patch Changes
- Updated dependencies [
730b5d8c
]- @verdaccio/logger@6.0.0-6-next.9
6.0.0-6-next.16
Patch Changes
- Updated dependencies [
a828271d
] - Updated dependencies [
24b9be02
] - Updated dependencies [
e75c0a3b
] - Updated dependencies [
b13a3fef
]- @verdaccio/local-storage@11.0.0-6-next.11
- @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/config@6.0.0-6-next.12
- @verdaccio/streams@11.0.0-6-next.5
6.0.0-6-next.15
Patch Changes
- Updated dependencies [
f86c31ed
]- @verdaccio/utils@6.0.0-6-next.9
- @verdaccio/config@6.0.0-6-next.11
- @verdaccio/local-storage@11.0.0-6-next.10
6.0.0-6-next.14
Patch Changes
- Updated dependencies [
6c1eb021
]- @verdaccio/core@6.0.0-6-next.3
- @verdaccio/logger@6.0.0-6-next.7
- @verdaccio/config@6.0.0-6-next.10
- @verdaccio/local-storage@11.0.0-6-next.10
- @verdaccio/utils@6.0.0-6-next.8
6.0.0-6-next.13
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 [
154b2ecd
]- @verdaccio/config@6.0.0-6-next.9
- @verdaccio/core@6.0.0-6-next.2
- @verdaccio/streams@11.0.0-6-next.5
- @verdaccio/logger@6.0.0-6-next.6
- @verdaccio/utils@6.0.0-6-next.7
- @verdaccio/local-storage@11.0.0-6-next.9
6.0.0-6-next.12
Patch Changes
- Updated dependencies [
2c594910
]- @verdaccio/logger@6.0.0-6-next.5
6.0.0-6-next.11
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/config@6.0.0-6-next.8
- @verdaccio/commons-api@11.0.0-6-next.4
- @verdaccio/core@6.0.0-6-next.1
- @verdaccio/local-storage@11.0.0-6-next.8
- @verdaccio/streams@11.0.0-6-next.4
- @verdaccio/utils@6.0.0-6-next.6
- @verdaccio/logger@6.0.0-6-next.4
6.0.0-6-next.10
Patch Changes
- Updated dependencies [
df0da3d6
]- @verdaccio/local-storage@11.0.0-6-next.7
6.0.0-6-next.9
Patch Changes
- Updated dependencies [
d2c65da9
]- @verdaccio/utils@6.0.0-6-next.5
- @verdaccio/config@6.0.0-6-next.7
6.0.0-6-next.8
Patch Changes
- Updated dependencies [
1b217fd3
]- @verdaccio/config@6.0.0-6-next.6
- @verdaccio/local-storage@11.0.0-6-next.6
6.0.0-6-next.7
Patch Changes
- Updated dependencies [
1810ed0d
] - Updated dependencies [
648575aa
]- @verdaccio/config@6.0.0-6-next.5
- @verdaccio/utils@6.0.0-6-next.4
6.0.0-6-next.6
Patch Changes
- Updated dependencies [
5c5057fc
]- @verdaccio/config@6.0.0-6-next.4
- @verdaccio/logger@6.0.0-6-next.4
- @verdaccio/local-storage@11.0.0-6-next.5
- @verdaccio/streams@11.0.0-alpha.3
6.0.0-6-next.5
Patch Changes
- Updated dependencies [
cb2281a5
]- @verdaccio/local-storage@11.0.0-6-next.5
5.0.0-alpha.4
Patch Changes
fecbb9be
: chore: add release step to private regisry on merge changeset pr- Updated dependencies [
fecbb9be
]- @verdaccio/local-storage@10.0.0-alpha.4
- @verdaccio/config@5.0.0-alpha.3
- @verdaccio/commons-api@10.0.0-alpha.3
- @verdaccio/streams@10.0.0-alpha.3
- @verdaccio/logger@5.0.0-alpha.3
- @verdaccio/utils@5.0.0-alpha.3
5.0.0-alpha.3
Minor Changes
-
54c58d1e
: feat: add server rate limit protection to all requestTo modify custom values, use the server settings property.
server: ## https://www.npmjs.com/package/express-rate-limit#configuration-options rateLimit: windowMs: 1000 max: 10000
The values are intended to be high, if you want to improve security of your server consider using different values.
Patch Changes
- Updated dependencies [
54c58d1e
]- @verdaccio/config@5.0.0-alpha.2
- @verdaccio/commons-api@10.0.0-alpha.2
- @verdaccio/local-storage@10.0.0-alpha.3
- @verdaccio/streams@10.0.0-alpha.2
- @verdaccio/logger@5.0.0-alpha.2
- @verdaccio/utils@5.0.0-alpha.2
5.0.0-alpha.2
Patch Changes
- Updated dependencies [
2a327c4b
]- @verdaccio/local-storage@10.0.0-alpha.2
5.0.0-alpha.1
Major Changes
-
d87fa026
: feat!: experiments config renamed to flags- The
experiments
configuration is renamed toflags
. The functionality is exactly the same.
flags: token: false; search: false;
- The
self_path
property from the config file is being removed in favor ofconfig_file
full path. - Refactor
config
module, better types and utilities
- The
-
da1ee9c8
: - Replace signature handler for legacy tokens by removing deprecated crypto.createDecipher by createCipheriv- Introduce environment variables for legacy tokens
Code Improvements
- Add debug library for improve developer experience
Breaking change
- The new signature invalidates all previous tokens generated by Verdaccio 4 or previous versions.
- The secret key must have 32 characters long.
New environment variables
VERDACCIO_LEGACY_ALGORITHM
: Allows to define the specific algorithm for the token signature which by default isaes-256-ctr
VERDACCIO_LEGACY_ENCRYPTION_KEY
: By default, the token stores in the database, but using this variable allows to get it from memory
Minor Changes
-
26b494cb
: feat: add typescript project references settingsReading 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.
It allows to navigate (IDE) trough the packages without need compile the packages.
Add two
tsconfig
, one using the previous existing configuration that is able to produce declaration files (tsconfig.build
) and a new onetsconfig
which is enables projects references.
Patch Changes
-
ae52ba35
: refactor: migrate request to node-fetch at hooks package -
b57b4338
: Enable prerelease mode with changesets -
31af0164
: ESLint Warnings FixedRelated to issue #1461
- max-len: most of the sensible max-len errors are fixed
- no-unused-vars: most of these types of errors are fixed by deleting not needed declarations
- @typescript-eslint/no-unused-vars: same as above
-
Updated dependencies [
d87fa026
] -
Updated dependencies [
da1ee9c8
] -
Updated dependencies [
26b494cb
] -
Updated dependencies [
b57b4338
] -
Updated dependencies [
add778d5
] -
Updated dependencies [
31af0164
]- @verdaccio/config@5.0.0-alpha.1
- @verdaccio/commons-api@10.0.0-alpha.1
- @verdaccio/local-storage@10.0.0-alpha.1
- @verdaccio/streams@10.0.0-alpha.1
- @verdaccio/logger@5.0.0-alpha.1
- @verdaccio/utils@5.0.0-alpha.1
5.0.0-alpha.1
Major Changes
-
d87fa0268
: feat!: experiments config renamed to flags- The
experiments
configuration is renamed toflags
. The functionality is exactly the same.
flags: token: false; search: false;
- The
self_path
property from the config file is being removed in favor ofconfig_file
full path. - Refactor
config
module, better types and utilities
- The
-
da1ee9c82
: - Replace signature handler for legacy tokens by removing deprecated crypto.createDecipher by createCipheriv- Introduce environment variables for legacy tokens
Code Improvements
- Add debug library for improve developer experience
Breaking change
- The new signature invalidates all previous tokens generated by Verdaccio 4 or previous versions.
- The secret key must have 32 characters long.
New environment variables
VERDACCIO_LEGACY_ALGORITHM
: Allows to define the specific algorithm for the token signature which by default isaes-256-ctr
VERDACCIO_LEGACY_ENCRYPTION_KEY
: By default, the token stores in the database, but using this variable allows to get it from memory
Minor Changes
-
26b494cbd
: feat: add typescript project references settingsReading 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.
It allows to navigate (IDE) trough the packages without need compile the packages.
Add two
tsconfig
, one using the previous existing configuration that is able to produce declaration files (tsconfig.build
) and a new onetsconfig
which is enables projects references.
Patch Changes
-
ae52ba352
: refactor: migrate request to node-fetch at hooks package -
b57b43388
: Enable prerelease mode with changesets -
31af01641
: ESLint Warnings FixedRelated to issue #1461
- max-len: most of the sensible max-len errors are fixed
- no-unused-vars: most of these types of errors are fixed by deleting not needed declarations
- @typescript-eslint/no-unused-vars: same as above
-
Updated dependencies [
d87fa0268
] -
Updated dependencies [
da1ee9c82
] -
Updated dependencies [
26b494cbd
] -
Updated dependencies [
b57b43388
] -
Updated dependencies [
add778d55
] -
Updated dependencies [
31af01641
]- @verdaccio/config@5.0.0-alpha.1
- @verdaccio/commons-api@10.0.0-alpha.0
- @verdaccio/local-storage@10.0.0-alpha.0
- @verdaccio/streams@10.0.0-alpha.0
- @verdaccio/logger@5.0.0-alpha.1
- @verdaccio/utils@5.0.0-alpha.1