Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
19 KiB
@verdaccio/loaders
7.0.0-next-7.7
Patch Changes
- @verdaccio/logger@7.0.0-next-7.7
7.0.0-next.6
Patch Changes
- @verdaccio/logger@7.0.0-next.6
7.0.0-next.5
Patch Changes
- @verdaccio/logger@7.0.0-next.5
7.0.0-next.4
Patch Changes
- @verdaccio/logger@7.0.0-next.4
7.0.0-next.3
Major Changes
e7ebccb61
: update major dependencies, remove old nodejs support
Patch Changes
- Updated dependencies [
e7ebccb61
]- @verdaccio/logger@7.0.0-next.3
7.0.0-next.2
Patch Changes
- @verdaccio/logger@7.0.0-next.2
7.0.0-next.1
Patch Changes
- @verdaccio/logger@7.0.0-next.1
7.0.0-next.0
Major Changes
- feat!: bump to v7
Patch Changes
- Updated dependencies
- @verdaccio/logger@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
-
9fc2e7961
: feat(plugins): improve plugin loaderChanges
- Add scope plugin support to 6.x https://github.com/verdaccio/verdaccio/pull/3227
- Avoid config collisions https://github.com/verdaccio/verdaccio/issues/928
- https://github.com/verdaccio/verdaccio/issues/1394
config.plugins
plugin path validations- Updated algorithm for plugin loader.
- improved documentation (included dev)
Features
- Add scope plugin support to 6.x https://github.com/verdaccio/verdaccio/pull/3227
- Custom prefix:
// config.yaml server: pluginPrefix: mycompany middleware: audit: foo: 1
This configuration will look up for
mycompany-audit
insteadVerdaccio-audit
.Breaking Changes
sinopia plugins
sinopia
fallback support is removed, but can be restored usingpluginPrefix
plugin filter
- method rename
filter_metadata
->filterMetadata
Plugin constructor does not merge configs anymore https://github.com/verdaccio/verdaccio/issues/928
The plugin receives as first argument
config
, which represents the config of the plugin. Example:// config.yaml auth: plugin: foo: 1 bar: 2 export class Plugin<T> { public constructor(config: T, options: PluginOptions) { console.log(config); // {foo:1, bar: 2} } }
-
794af76c5
: Remove Node 12 support- We need move to the new
undici
and does not support Node.js 12
- We need move to the new
-
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
Minor Changes
-
ef88da3b4
: feat: improve support for fs promises older nodejs -
631abe1ac
: feat: refactor logger -
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.
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 -
31d661c7b
: always create plugin instance with new -
34f0f1101
: Enable prerelease mode with changesets -
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 [
ef88da3b4
] -
Updated dependencies [
a3a209b5e
] -
Updated dependencies [
794af76c5
] -
Updated dependencies [
e75c0a3b9
] -
Updated dependencies [
351aeeaa8
] -
Updated dependencies [
10aeb4f13
] -
Updated dependencies [
631abe1ac
] -
Updated dependencies [
e367c3f1e
] -
Updated dependencies [
a610ef26b
] -
Updated dependencies [
b61f762d6
] -
Updated dependencies [
154b2ecd3
] -
Updated dependencies [
aa763baec
] -
Updated dependencies [
34f0f1101
] -
Updated dependencies [
82cb0f2bf
] -
Updated dependencies [
b78f35257
] -
Updated dependencies [
2c594910d
] -
Updated dependencies [
6c1eb021b
] -
Updated dependencies [
65f88b826
] -
Updated dependencies [
b3e8438f6
] -
Updated dependencies [
730b5d8cc
] -
Updated dependencies [
68ea21214
] -
Updated dependencies [
8f43bf17d
]- @verdaccio/logger@6.0.0
6.0.0-6-next.45
Patch Changes
- @verdaccio/logger@6.0.0-6-next.44
6.0.0-6-next.44
Patch Changes
- @verdaccio/logger@6.0.0-6-next.43
6.0.0-6-next.43
Patch Changes
- @verdaccio/logger@6.0.0-6-next.42
6.0.0-6-next.42
Patch Changes
- @verdaccio/logger@6.0.0-6-next.41
6.0.0-6-next.41
Patch Changes
- @verdaccio/logger@6.0.0-6-next.40
6.0.0-6-next.40
Patch Changes
- @verdaccio/logger@6.0.0-6-next.39
6.0.0-6-next.39
Patch Changes
- @verdaccio/logger@6.0.0-6-next.38
6.0.0-6-next.38
Patch Changes
- @verdaccio/logger@6.0.0-6-next.37
6.0.0-6-next.37
Patch Changes
- @verdaccio/logger@6.0.0-6-next.36
6.0.0-6-next.36
Patch Changes
- @verdaccio/logger@6.0.0-6-next.35
6.0.0-6-next.35
Patch Changes
- @verdaccio/logger@6.0.0-6-next.34
6.0.0-6-next.34
Patch Changes
- @verdaccio/logger@6.0.0-6-next.33
6.0.0-6-next.33
Patch Changes
- @verdaccio/logger@6.0.0-6-next.32
6.0.0-6-next.32
Patch Changes
- @verdaccio/logger@6.0.0-6-next.31
6.0.0-6-next.31
Patch Changes
- @verdaccio/logger@6.0.0-6-next.30
6.0.0-6-next.30
Patch Changes
- @verdaccio/logger@6.0.0-6-next.29
6.0.0-6-next.29
Patch Changes
- @verdaccio/logger@6.0.0-6-next.28
6.0.0-6-next.28
Patch Changes
- Updated dependencies [
65f88b82
]- @verdaccio/logger@6.0.0-6-next.27
6.0.0-6-next.27
Patch Changes
- @verdaccio/logger@6.0.0-6-next.26
6.0.0-6-next.26
Patch Changes
- @verdaccio/logger@6.0.0-6-next.25
6.0.0-6-next.25
Patch Changes
- @verdaccio/logger@6.0.0-6-next.24
6.0.0-6-next.24
Patch Changes
- @verdaccio/logger@6.0.0-6-next.23
6.0.0-6-next.23
Minor Changes
ef88da3b
: feat: improve support for fs promises older nodejs
Patch Changes
- Updated dependencies [
ef88da3b
]- @verdaccio/logger@6.0.0-6-next.22
6.0.0-6-next.22
Patch Changes
- @verdaccio/logger@6.0.0-6-next.21
6.0.0-6-next.21
Patch Changes
- @verdaccio/logger@6.0.0-6-next.20
6.0.0-6-next.20
Patch Changes
- @verdaccio/logger@6.0.0-6-next.19
6.0.0-6-next.19
Patch Changes
- @verdaccio/logger@6.0.0-6-next.18
6.0.0-6-next.18
Patch Changes
- @verdaccio/logger@6.0.0-6-next.17
6.0.0-6-next.17
Major Changes
-
9fc2e796
: feat(plugins): improve plugin loaderChanges
- Add scope plugin support to 6.x https://github.com/verdaccio/verdaccio/pull/3227
- Avoid config collisions https://github.com/verdaccio/verdaccio/issues/928
- https://github.com/verdaccio/verdaccio/issues/1394
config.plugins
plugin path validations- Updated algorithm for plugin loader.
- improved documentation (included dev)
Features
- Add scope plugin support to 6.x https://github.com/verdaccio/verdaccio/pull/3227
- Custom prefix:
// config.yaml server: pluginPrefix: mycompany middleware: audit: foo: 1
This configuration will look up for
mycompany-audit
insteadVerdaccio-audit
.Breaking Changes
sinopia plugins
sinopia
fallback support is removed, but can be restored usingpluginPrefix
plugin filter
- method rename
filter_metadata
->filterMetadata
Plugin constructor does not merge configs anymore https://github.com/verdaccio/verdaccio/issues/928
The plugin receives as first argument
config
, which represents the config of the plugin. Example:// config.yaml auth: plugin: foo: 1 bar: 2 export class Plugin<T> { public constructor(config: T, options: PluginOptions) { console.log(config); // {foo:1, bar: 2} } }
Patch Changes
- @verdaccio/logger@6.0.0-6-next.16
6.0.0-6-next.16
Patch Changes
- @verdaccio/logger@6.0.0-6-next.15
6.0.0-6-next.15
Patch Changes
- @verdaccio/logger@6.0.0-6-next.14
6.0.0-6-next.14
Patch Changes
351aeeaa
: fix(deps): @verdaccio/utils should be a prod dep of local-storage- Updated dependencies [
351aeeaa
]- @verdaccio/logger@6.0.0-6-next.13
6.0.0-6-next.13
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
6.0.0-6-next.12
Patch Changes
- Updated dependencies [
82cb0f2b
]- @verdaccio/logger@6.0.0-6-next.11
6.0.0-6-next.11
Patch Changes
31d661c7
: always create plugin instance with new
6.0.0-6-next.10
Patch Changes
- Updated dependencies [
b78f3525
]- @verdaccio/logger@6.0.0-6-next.10
6.0.0-6-next.9
Patch Changes
- Updated dependencies [
730b5d8c
]- @verdaccio/logger@6.0.0-6-next.9
6.0.0-6-next.8
Patch Changes
- Updated dependencies [
e75c0a3b
]- @verdaccio/logger@6.0.0-6-next.8
6.0.0-6-next.7
Patch Changes
- Updated dependencies [
6c1eb021
]- @verdaccio/logger@6.0.0-6-next.7
6.0.0-6-next.6
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
154b2ecd
: refactor: remove @verdaccio/commons-api in favor @verdaccio/core and remove duplications
Patch Changes
6.0.0-6-next.5
Patch Changes
- Updated dependencies [
2c594910
]- @verdaccio/logger@6.0.0-6-next.5
6.0.0-6-next.4
Patch Changes
- Updated dependencies [
5c5057fc
]- @verdaccio/logger@6.0.0-6-next.4
5.0.0-alpha.3
Patch Changes
fecbb9be
: chore: add release step to private regisry on merge changeset pr- Updated dependencies [
fecbb9be
]- @verdaccio/logger@5.0.0-alpha.3
5.0.0-alpha.2
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/logger@5.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
-
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/logger@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
-
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/logger@5.0.0-alpha.1