mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-03-18 02:22:46 -05:00
chore: update versions (6-next) (#3362)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
0277180576
commit
269105ff4b
64 changed files with 2334 additions and 356 deletions
|
@ -51,7 +51,10 @@
|
|||
"@verdaccio/e2e-cli-yarn2": "1.0.1-6-next.1",
|
||||
"@verdaccio/e2e-cli-yarn3": "1.0.1-6-next.1",
|
||||
"@verdaccio/e2e-cli-yarn4": "1.0.1-6-next.1",
|
||||
"@verdaccio/local-publish": "0.0.1"
|
||||
"@verdaccio/local-publish": "0.0.1",
|
||||
"@verdaccio/e2e-cli-npm9": "1.0.1-6-next.5",
|
||||
"@verdaccio/e2e-ui": "2.0.0-6-next.3",
|
||||
"customprefix-auth": "0.0.1"
|
||||
},
|
||||
"changesets": [
|
||||
"afraid-mice-obey",
|
||||
|
@ -62,9 +65,11 @@
|
|||
"brown-pandas-wink",
|
||||
"calm-pants-impress",
|
||||
"chilled-ways-fetch",
|
||||
"chilly-glasses-occur",
|
||||
"clever-pugs-warn",
|
||||
"dry-planes-tap",
|
||||
"dull-monkeys-search",
|
||||
"early-jokes-nail",
|
||||
"eleven-brooms-hunt",
|
||||
"eleven-spoons-matter",
|
||||
"fair-lemons-beam",
|
||||
|
@ -91,6 +96,7 @@
|
|||
"loud-shoes-jog",
|
||||
"lovely-drinks-argue",
|
||||
"many-vans-care",
|
||||
"modern-maps-lie",
|
||||
"modern-spies-tell",
|
||||
"moody-clocks-roll",
|
||||
"neat-toes-report",
|
||||
|
@ -112,11 +118,13 @@
|
|||
"shaggy-carrots-unite",
|
||||
"shaggy-parrots-smash",
|
||||
"shiny-chefs-heal",
|
||||
"shy-ducks-cover",
|
||||
"slow-carrots-relate",
|
||||
"smart-apricots-kneel",
|
||||
"smart-beds-cross",
|
||||
"smooth-owls-pump",
|
||||
"sour-buses-shout",
|
||||
"sour-maps-live",
|
||||
"spicy-frogs-press",
|
||||
"spicy-snakes-sip",
|
||||
"strange-ladybugs-nail",
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
"main": "./build/index.js",
|
||||
"types": "./build/index.d.ts",
|
||||
"devDependencies": {
|
||||
"verdaccio": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"verdaccio": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"yaml": "2.1.1",
|
||||
"debug": "4.3.4",
|
||||
"fs-extra": "10.1.0",
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
"name": "@verdaccio/e2e-ui",
|
||||
"version": "2.0.0-6-next.3",
|
||||
"devDependencies": {
|
||||
"verdaccio": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/test-helper": "workspace:1.1.0-6-next.4",
|
||||
"verdaccio": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/test-helper": "workspace:2.0.0-6-next.5",
|
||||
"debug": "4.3.4",
|
||||
"colorette": "2.0.19",
|
||||
"lodash": "^4.17.21",
|
||||
|
|
|
@ -1,5 +1,83 @@
|
|||
# @verdaccio/api
|
||||
|
||||
## 6.0.0-6-next.31
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 43f32687: fix: abbreviated headers handle quality values
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [9fc2e796]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/store@6.0.0-6-next.28
|
||||
- @verdaccio/auth@6.0.0-6-next.27
|
||||
- @verdaccio/config@6.0.0-6-next.48
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
- @verdaccio/middleware@6.0.0-6-next.27
|
||||
|
||||
## 6.0.0-6-next.30
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/api",
|
||||
"version": "6.0.0-6-next.30",
|
||||
"version": "6.0.0-6-next.31",
|
||||
"description": "loaders logic",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -39,13 +39,13 @@
|
|||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/middleware": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/middleware": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.28",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"abortcontroller-polyfill": "1.7.3",
|
||||
"cookies": "0.8.0",
|
||||
"debug": "4.3.4",
|
||||
|
@ -57,9 +57,9 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.60",
|
||||
"@verdaccio/server": "workspace:6.0.0-6-next.36",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/test-helper": "workspace:1.1.0-6-next.4",
|
||||
"@verdaccio/server": "workspace:6.0.0-6-next.37",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/test-helper": "workspace:2.0.0-6-next.5",
|
||||
"supertest": "6.2.4",
|
||||
"nock": "13.2.9",
|
||||
"mockdate": "3.0.5"
|
||||
|
|
|
@ -1,5 +1,81 @@
|
|||
# @verdaccio/auth
|
||||
|
||||
## 6.0.0-6-next.27
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
### 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/loaders@6.0.0-6-next.17
|
||||
- verdaccio-htpasswd@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.26
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/auth",
|
||||
"version": "6.0.0-6-next.26",
|
||||
"version": "6.0.0-6-next.27",
|
||||
"description": "logger",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -39,19 +39,19 @@
|
|||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/loaders": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/loaders": "workspace:6.0.0-6-next.17",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"debug": "4.3.4",
|
||||
"express": "4.18.1",
|
||||
"jsonwebtoken": "8.5.1",
|
||||
"lodash": "4.17.21",
|
||||
"verdaccio-htpasswd": "workspace:11.0.0-6-next.17"
|
||||
"verdaccio-htpasswd": "workspace:11.0.0-6-next.18"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16"
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17"
|
||||
},
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
# @verdaccio/cli
|
||||
|
||||
## 6.0.0-6-next.48
|
||||
|
||||
### 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/node-api@6.0.0-6-next.48
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
|
||||
## 6.0.0-6-next.47
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/cli",
|
||||
"version": "6.0.0-6-next.47",
|
||||
"version": "6.0.0-6-next.48",
|
||||
"author": {
|
||||
"name": "Juan Picado",
|
||||
"email": "juanpicado19@gmail.com"
|
||||
|
@ -44,10 +44,10 @@
|
|||
"start": "ts-node src/index.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/node-api": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/node-api": "workspace:6.0.0-6-next.48",
|
||||
"clipanion": "3.1.0",
|
||||
"envinfo": "7.8.1",
|
||||
"kleur": "3.0.3",
|
||||
|
|
|
@ -1,5 +1,76 @@
|
|||
# @verdaccio/config
|
||||
|
||||
## 6.0.0-6-next.48
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
|
||||
## 6.0.0-6-next.47
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/config",
|
||||
"version": "6.0.0-6-next.47",
|
||||
"version": "6.0.0-6-next.48",
|
||||
"description": "logger",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -39,8 +39,8 @@
|
|||
"build": "pnpm run build:js && pnpm run build:types"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"debug": "4.3.4",
|
||||
"yaml": "2.1.1",
|
||||
"lodash": "4.17.21",
|
||||
|
|
|
@ -1,5 +1,15 @@
|
|||
# @verdaccio/core
|
||||
|
||||
## 6.0.0-6-next.48
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 43f32687: fix: abbreviated headers handle quality values
|
||||
|
||||
## 6.0.0-6-next.47
|
||||
|
||||
## 6.0.0-6-next.8
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/core",
|
||||
"version": "6.0.0-6-next.47",
|
||||
"version": "6.0.0-6-next.48",
|
||||
"description": "core utilities",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -43,7 +43,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"lodash": "4.17.21",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16"
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf ./build",
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"lockfile": "1.0.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16"
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf ./build",
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
"marked": "3.0.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16"
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf ./build",
|
||||
|
|
|
@ -1,5 +1,15 @@
|
|||
# Change Log
|
||||
|
||||
## 11.0.0-6-next.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/url@11.0.0-6-next.14
|
||||
|
||||
## 11.0.0-6-next.16
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/tarball",
|
||||
"version": "11.0.0-6-next.16",
|
||||
"version": "11.0.0-6-next.17",
|
||||
"description": "tarball utilities resolver",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -35,13 +35,13 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"debug": "4.3.4",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/url": "workspace:11.0.0-6-next.13",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/url": "workspace:11.0.0-6-next.14",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"lodash": "4.17.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"node-mocks-http": "1.11.0"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,69 @@
|
|||
# Change Log
|
||||
|
||||
## 11.0.0-6-next.17
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
## 11.0.0-6-next.16
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/types",
|
||||
"version": "11.0.0-6-next.16",
|
||||
"version": "11.0.0-6-next.17",
|
||||
"description": "verdaccio types definitions",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
# Change Log
|
||||
|
||||
## 11.0.0-6-next.14
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
|
||||
## 11.0.0-6-next.13
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/url",
|
||||
"version": "11.0.0-6-next.13",
|
||||
"version": "11.0.0-6-next.14",
|
||||
"description": "url utilities resolver",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -34,13 +34,13 @@
|
|||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"debug": "4.3.4",
|
||||
"lodash": "4.17.21",
|
||||
"validator": "13.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"node-mocks-http": "1.11.0"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,14 @@
|
|||
# @verdaccio/hooks
|
||||
|
||||
## 6.0.0-6-next.18
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
|
||||
## 6.0.0-6-next.17
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/hooks",
|
||||
"version": "6.0.0-6-next.17",
|
||||
"version": "6.0.0-6-next.18",
|
||||
"description": "loaders logic",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -30,8 +30,8 @@
|
|||
"npm": ">=6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"core-js": "3.25.2",
|
||||
"debug": "4.3.4",
|
||||
"handlebars": "4.7.7",
|
||||
|
@ -39,9 +39,9 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.60",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16"
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf ./build",
|
||||
|
|
|
@ -1,5 +1,69 @@
|
|||
# @verdaccio/loaders
|
||||
|
||||
## 6.0.0-6-next.17
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/loaders",
|
||||
"version": "6.0.0-6-next.16",
|
||||
"version": "6.0.0-6-next.17",
|
||||
"description": "loaders logic",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -13,17 +13,17 @@
|
|||
"url": "https://github.com/verdaccio/verdaccio"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"debug": "4.3.4",
|
||||
"lodash": "4.17.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio-scope/verdaccio-auth-foo": "0.0.2",
|
||||
"verdaccio-auth-memory": "workspace:*",
|
||||
"customprefix-auth": "0.0.1"
|
||||
"customprefix-auth": "1.0.0-6-next.0"
|
||||
},
|
||||
"homepage": "https://verdaccio.org",
|
||||
"keywords": [
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
# @verdaccio/logger
|
||||
|
||||
## 6.0.0-6-next.16
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
|
||||
## 6.0.0-6-next.15
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/logger",
|
||||
"version": "6.0.0-6-next.15",
|
||||
"version": "6.0.0-6-next.16",
|
||||
"description": "logger",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -39,14 +39,14 @@
|
|||
"build": "babel src/ --out-dir build/ --copy-files --extensions \".ts,.tsx\" --source-maps"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger-prettify": "workspace:6.0.0-6-next.7",
|
||||
"debug": "4.3.4",
|
||||
"colorette": "2.0.19",
|
||||
"pino": "8.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16"
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17"
|
||||
},
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
# @verdaccio/middleware
|
||||
|
||||
## 6.0.0-6-next.27
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [9fc2e796]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/auth@6.0.0-6-next.27
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
|
||||
## 6.0.0-6-next.26
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/middleware",
|
||||
"version": "6.0.0-6-next.26",
|
||||
"version": "6.0.0-6-next.27",
|
||||
"description": "loaders logic",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -40,10 +40,10 @@
|
|||
"dependencies": {
|
||||
"debug": "4.3.4",
|
||||
"body-parser": "1.20.0",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"lodash": "4.17.21"
|
||||
},
|
||||
"funding": {
|
||||
|
|
|
@ -1,5 +1,76 @@
|
|||
# @verdaccio/node-api
|
||||
|
||||
## 6.0.0-6-next.48
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [9fc2e796]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/server-fastify@6.0.0-6-next.29
|
||||
- @verdaccio/config@6.0.0-6-next.48
|
||||
- @verdaccio/server@6.0.0-6-next.37
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
|
||||
## 6.0.0-6-next.47
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/node-api",
|
||||
"version": "6.0.0-6-next.47",
|
||||
"version": "6.0.0-6-next.48",
|
||||
"description": "node API",
|
||||
"main": "build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -39,18 +39,18 @@
|
|||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/server": "workspace:6.0.0-6-next.36",
|
||||
"@verdaccio/server-fastify": "workspace:6.0.0-6-next.28",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/server": "workspace:6.0.0-6-next.37",
|
||||
"@verdaccio/server-fastify": "workspace:6.0.0-6-next.29",
|
||||
"core-js": "3.25.2",
|
||||
"debug": "4.3.4",
|
||||
"lodash": "4.17.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.60",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"jest-mock-process": "1.5.1",
|
||||
"selfsigned": "1.10.14",
|
||||
"supertest": "6.2.4"
|
||||
|
|
|
@ -1,5 +1,65 @@
|
|||
# Change Log
|
||||
|
||||
## 11.0.0-6-next.11
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## 11.0.0-6-next.10
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "verdaccio-audit",
|
||||
"version": "11.0.0-6-next.10",
|
||||
"version": "11.0.0-6-next.11",
|
||||
"description": "Verdaccio Middleware plugin to bypass npmjs audit",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -37,9 +37,9 @@
|
|||
"node-fetch": "cjs"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"nock": "13.2.9",
|
||||
"supertest": "6.2.4"
|
||||
},
|
||||
|
|
|
@ -1,5 +1,71 @@
|
|||
# Change Log
|
||||
|
||||
## 11.0.0-6-next.13
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
|
||||
## 11.0.0-6-next.12
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "verdaccio-auth-memory",
|
||||
"version": "11.0.0-6-next.12",
|
||||
"version": "11.0.0-6-next.13",
|
||||
"description": "Auth plugin for Verdaccio that keeps users in memory",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -32,10 +32,10 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"debug": "4.3.4",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47"
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16"
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf ./build",
|
||||
|
|
|
@ -1,5 +1,72 @@
|
|||
# Change Log
|
||||
|
||||
## 11.0.0-6-next.18
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/file-locking@11.0.0-6-next.6
|
||||
|
||||
## 11.0.0-6-next.17
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "verdaccio-htpasswd",
|
||||
"version": "11.0.0-6-next.17",
|
||||
"version": "11.0.0-6-next.18",
|
||||
"description": "htpasswd auth plugin for Verdaccio",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -34,7 +34,7 @@
|
|||
"npm": ">=6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/file-locking": "workspace:11.0.0-6-next.6",
|
||||
"apache-md5": "1.1.8",
|
||||
"bcryptjs": "2.4.3",
|
||||
|
@ -45,9 +45,9 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/bcryptjs": "2.4.2",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"mockdate": "3.0.5"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,73 @@
|
|||
# Change Log
|
||||
|
||||
## 11.0.0-6-next.18
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/file-locking@11.0.0-6-next.6
|
||||
|
||||
## 11.0.0-6-next.17
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/local-storage",
|
||||
"version": "11.0.0-6-next.17",
|
||||
"version": "11.0.0-6-next.18",
|
||||
"description": "Local storage implementation",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -37,9 +37,9 @@
|
|||
"npm": ">=7"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/file-locking": "workspace:11.0.0-6-next.6",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"core-js": "3.25.2",
|
||||
"debug": "4.3.4",
|
||||
"globby": "11.1.0",
|
||||
|
@ -51,10 +51,10 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/minimatch": "3.0.5",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/test-helper": "workspace:1.1.0-6-next.4",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/test-helper": "workspace:2.0.0-6-next.5",
|
||||
"minimatch": "3.1.2"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,71 @@
|
|||
# Change Log
|
||||
|
||||
## 11.0.0-6-next.15
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
|
||||
## 11.0.0-6-next.14
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "verdaccio-memory",
|
||||
"version": "11.0.0-6-next.14",
|
||||
"version": "11.0.0-6-next.15",
|
||||
"description": "Storage implementation in memory",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -31,15 +31,15 @@
|
|||
"npm": ">=6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"memory-fs": "0.5.0",
|
||||
"debug": "4.3.4",
|
||||
"memfs": "3.4.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15"
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf ./build",
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
# @verdaccio/ui-theme
|
||||
|
||||
## 6.0.0-6-next.48
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 02771805: Hide search icon on medium or larger devices
|
||||
- d4019f63: Add links to "Current Tags" and sort them in descending order
|
||||
|
||||
## 6.0.0-6-next.28
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/ui-theme",
|
||||
"version": "6.0.0-6-next.28",
|
||||
"version": "6.0.0-6-next.48",
|
||||
"description": "Verdaccio User Interface",
|
||||
"author": {
|
||||
"name": "Verdaccio Contributors",
|
||||
|
@ -33,7 +33,7 @@
|
|||
"@testing-library/dom": "8.18.1",
|
||||
"@testing-library/jest-dom": "5.16.5",
|
||||
"@testing-library/react": "12.1.5",
|
||||
"@verdaccio/node-api": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/node-api": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/types": "workspace:*",
|
||||
"babel-loader": "8.2.5",
|
||||
"babel-plugin-dynamic-import-node": "2.3.3",
|
||||
|
|
|
@ -1,5 +1,18 @@
|
|||
# @verdaccio/proxy
|
||||
|
||||
## 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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/proxy",
|
||||
"version": "6.0.0-6-next.25",
|
||||
"version": "6.0.0-6-next.26",
|
||||
"description": "verdaccio proxy fetcher",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -39,11 +39,11 @@
|
|||
"build": "pnpm run build:js && pnpm run build:types"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/local-storage": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/local-storage": "workspace:11.0.0-6-next.18",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"JSONStream": "1.3.5",
|
||||
"debug": "4.3.4",
|
||||
"lodash": "4.17.21",
|
||||
|
@ -53,7 +53,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.60",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"get-stream": "^6.0.1",
|
||||
"nock": "13.2.9",
|
||||
"node-mocks-http": "1.11.0",
|
||||
|
|
|
@ -1,5 +1,82 @@
|
|||
# @verdaccio/server
|
||||
|
||||
## 6.0.0-6-next.37
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [9fc2e796]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/api@6.0.0-6-next.31
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/store@6.0.0-6-next.28
|
||||
- @verdaccio/auth@6.0.0-6-next.27
|
||||
- @verdaccio/config@6.0.0-6-next.48
|
||||
- @verdaccio/loaders@6.0.0-6-next.17
|
||||
- verdaccio-audit@11.0.0-6-next.11
|
||||
- @verdaccio/web@6.0.0-6-next.35
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
- @verdaccio/middleware@6.0.0-6-next.27
|
||||
|
||||
## 6.0.0-6-next.36
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/server",
|
||||
"version": "6.0.0-6-next.36",
|
||||
"version": "6.0.0-6-next.37",
|
||||
"description": "server logic",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -30,17 +30,17 @@
|
|||
"npm": ">=6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/api": "workspace:6.0.0-6-next.30",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/loaders": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/middleware": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/web": "workspace:6.0.0-6-next.34",
|
||||
"verdaccio-audit": "workspace:11.0.0-6-next.10",
|
||||
"@verdaccio/api": "workspace:6.0.0-6-next.31",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/loaders": "workspace:6.0.0-6-next.17",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/middleware": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.28",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/web": "workspace:6.0.0-6-next.35",
|
||||
"verdaccio-audit": "workspace:11.0.0-6-next.11",
|
||||
"compression": "1.7.4",
|
||||
"cors": "2.8.5",
|
||||
"debug": "4.3.4",
|
||||
|
@ -50,8 +50,8 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.60",
|
||||
"@verdaccio/proxy": "workspace:6.0.0-6-next.25",
|
||||
"@verdaccio/test-helper": "workspace:1.1.0-6-next.4",
|
||||
"@verdaccio/proxy": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/test-helper": "workspace:2.0.0-6-next.5",
|
||||
"http-errors": "1.8.1"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,84 @@
|
|||
# @verdaccio/server-fastify
|
||||
|
||||
## 6.0.0-6-next.29
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 43f32687: fix: abbreviated headers handle quality values
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [9fc2e796]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/store@6.0.0-6-next.28
|
||||
- @verdaccio/auth@6.0.0-6-next.27
|
||||
- @verdaccio/config@6.0.0-6-next.48
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/tarball@11.0.0-6-next.17
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
- @verdaccio/readme@11.0.0-6-next.6
|
||||
|
||||
## 6.0.0-6-next.28
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/server-fastify",
|
||||
"version": "6.0.0-6-next.28",
|
||||
"version": "6.0.0-6-next.29",
|
||||
"description": "fastify server api implementation",
|
||||
"keywords": [
|
||||
"private",
|
||||
|
@ -34,13 +34,13 @@
|
|||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/tarball": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.28",
|
||||
"@verdaccio/tarball": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/readme": "workspace:11.0.0-6-next.6",
|
||||
"core-js": "3.25.2",
|
||||
"debug": "4.3.4",
|
||||
|
@ -50,7 +50,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.60",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"ts-node": "10.9.1"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
"homepage": "https://verdaccio.org",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@verdaccio/cli": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/ui-theme": "workspace:6.0.0-6-next.28",
|
||||
"@verdaccio/cli": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/ui-theme": "workspace:6.0.0-6-next.48",
|
||||
"fs-extra": "10.1.0",
|
||||
"webpack": "5.74.0",
|
||||
"webpack-bundle-analyzer": "4.6.1",
|
||||
|
|
|
@ -1,5 +1,86 @@
|
|||
# @verdaccio/store
|
||||
|
||||
## 6.0.0-6-next.28
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 43f32687: fix: abbreviated headers handle quality values
|
||||
- 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/loaders@6.0.0-6-next.17
|
||||
- @verdaccio/local-storage@11.0.0-6-next.18
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/tarball@11.0.0-6-next.17
|
||||
- @verdaccio/url@11.0.0-6-next.14
|
||||
- @verdaccio/hooks@6.0.0-6-next.18
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
- @verdaccio/proxy@6.0.0-6-next.26
|
||||
|
||||
## 6.0.0-6-next.27
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/store",
|
||||
"version": "6.0.0-6-next.27",
|
||||
"version": "6.0.0-6-next.28",
|
||||
"description": "loaders logic",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -39,16 +39,16 @@
|
|||
"build": "pnpm run build:js && pnpm run build:types"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/hooks": "workspace:6.0.0-6-next.17",
|
||||
"@verdaccio/loaders": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/local-storage": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/proxy": "workspace:6.0.0-6-next.25",
|
||||
"@verdaccio/url": "workspace:11.0.0-6-next.13",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/tarball": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/hooks": "workspace:6.0.0-6-next.18",
|
||||
"@verdaccio/loaders": "workspace:6.0.0-6-next.17",
|
||||
"@verdaccio/local-storage": "workspace:11.0.0-6-next.18",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/proxy": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/url": "workspace:11.0.0-6-next.14",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/tarball": "workspace:11.0.0-6-next.17",
|
||||
"JSONStream": "1.3.5",
|
||||
"debug": "4.3.4",
|
||||
"lodash": "4.17.21",
|
||||
|
@ -57,8 +57,8 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.60",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/test-helper": "workspace:1.1.0-6-next.4",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/test-helper": "workspace:2.0.0-6-next.5",
|
||||
"undici": "4.16.0",
|
||||
"nock": "13.2.9",
|
||||
"node-mocks-http": "1.11.0",
|
||||
|
|
|
@ -1,5 +1,65 @@
|
|||
# Change Log
|
||||
|
||||
## 2.0.0-6-next.5
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## 1.1.0-6-next.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/test-helper",
|
||||
"version": "1.1.0-6-next.4",
|
||||
"version": "2.0.0-6-next.5",
|
||||
"private": true,
|
||||
"description": "test helpers",
|
||||
"author": "Juan Picado <juanpicado19@gmail.com>",
|
||||
|
@ -9,12 +9,12 @@
|
|||
"main": "build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/middleware": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/middleware": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"body-parser": "1.20.0",
|
||||
"express": "4.18.1",
|
||||
"supertest": "6.2.4",
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
"main": "build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
"devDependencies": {
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"verdaccio": "6.0.0-6-next.47",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"verdaccio": "6.0.0-6-next.48",
|
||||
"ts-node": "10.9.1"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
61
packages/tools/verdaccio-prefix-fake-plugin/CHANGELOG.md
Normal file
61
packages/tools/verdaccio-prefix-fake-plugin/CHANGELOG.md
Normal file
|
@ -0,0 +1,61 @@
|
|||
# customprefix-auth
|
||||
|
||||
## 1.0.0-6-next.0
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "customprefix-auth",
|
||||
"version": "0.0.1",
|
||||
"version": "1.0.0-6-next.0",
|
||||
"private": true,
|
||||
"description": "fake plugin for test",
|
||||
"author": "Juan Picado <juanpicado19@gmail.com>",
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
# @verdaccio/utils
|
||||
|
||||
## 6.0.0-6-next.16
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
|
||||
## 6.0.0-6-next.15
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/utils",
|
||||
"version": "6.0.0-6-next.15",
|
||||
"version": "6.0.0-6-next.16",
|
||||
"description": "verdaccio utilities",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -30,7 +30,7 @@
|
|||
"npm": ">=6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"minimatch": "3.1.2",
|
||||
"semver": "7.3.7",
|
||||
"lodash": "4.17.21"
|
||||
|
|
|
@ -1,5 +1,80 @@
|
|||
# verdaccio
|
||||
|
||||
## 6.0.0-6-next.48
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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
|
||||
|
||||
- Updated dependencies [9fc2e796]
|
||||
- Updated dependencies [02771805]
|
||||
- Updated dependencies [62c24b63]
|
||||
- Updated dependencies [d4019f63]
|
||||
- @verdaccio/node-api@6.0.0-6-next.48
|
||||
- verdaccio-audit@11.0.0-6-next.11
|
||||
- verdaccio-htpasswd@11.0.0-6-next.18
|
||||
- @verdaccio/ui-theme@6.0.0-6-next.48
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/cli@6.0.0-6-next.48
|
||||
- @verdaccio/hooks@6.0.0-6-next.18
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
|
||||
## 6.0.0-6-next.47
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "verdaccio",
|
||||
"version": "6.0.0-6-next.47",
|
||||
"version": "6.0.0-6-next.48",
|
||||
"description": "A lightweight private npm proxy registry",
|
||||
"main": "build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -37,21 +37,21 @@
|
|||
},
|
||||
"homepage": "https://verdaccio.org",
|
||||
"dependencies": {
|
||||
"@verdaccio/cli": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/hooks": "workspace:6.0.0-6-next.17",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/node-api": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/ui-theme": "workspace:6.0.0-6-next.28",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"verdaccio-audit": "workspace:11.0.0-6-next.10",
|
||||
"verdaccio-htpasswd": "workspace:11.0.0-6-next.17"
|
||||
"@verdaccio/cli": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/hooks": "workspace:6.0.0-6-next.18",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/node-api": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/ui-theme": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"verdaccio-audit": "workspace:11.0.0-6-next.11",
|
||||
"verdaccio-htpasswd": "workspace:11.0.0-6-next.18"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/test-helper": "workspace:1.1.0-6-next.4",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.28",
|
||||
"@verdaccio/test-helper": "workspace:2.0.0-6-next.5",
|
||||
"fastify": "4.6.0",
|
||||
"yaml": "2.1.1",
|
||||
"got": "11.8.5",
|
||||
|
|
|
@ -1,5 +1,86 @@
|
|||
# @verdaccio/web
|
||||
|
||||
## 6.0.0-6-next.35
|
||||
|
||||
### Major Changes
|
||||
|
||||
- 9fc2e796: feat(plugins): improve plugin loader
|
||||
|
||||
### Changes
|
||||
|
||||
- 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` instead `Verdaccio-audit`.
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
### sinopia plugins
|
||||
|
||||
- `sinopia` fallback support is removed, but can be restored using `pluginPrefix`
|
||||
|
||||
### 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}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 62c24b63: feat: add passwordValidationRegex property
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [43f32687]
|
||||
- Updated dependencies [9fc2e796]
|
||||
- Updated dependencies [62c24b63]
|
||||
- @verdaccio/core@6.0.0-6-next.48
|
||||
- @verdaccio/store@6.0.0-6-next.28
|
||||
- @verdaccio/auth@6.0.0-6-next.27
|
||||
- @verdaccio/config@6.0.0-6-next.48
|
||||
- @verdaccio/loaders@6.0.0-6-next.17
|
||||
- @verdaccio/utils@6.0.0-6-next.16
|
||||
- @verdaccio/tarball@11.0.0-6-next.17
|
||||
- @verdaccio/url@11.0.0-6-next.14
|
||||
- @verdaccio/logger@6.0.0-6-next.16
|
||||
- @verdaccio/middleware@6.0.0-6-next.27
|
||||
- @verdaccio/readme@11.0.0-6-next.6
|
||||
|
||||
## 6.0.0-6-next.34
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@verdaccio/web",
|
||||
"version": "6.0.0-6-next.34",
|
||||
"version": "6.0.0-6-next.35",
|
||||
"description": "web ui middleware",
|
||||
"main": "./build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
|
@ -25,17 +25,17 @@
|
|||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.47",
|
||||
"@verdaccio/loaders": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/middleware": "workspace:6.0.0-6-next.26",
|
||||
"@verdaccio/auth": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/core": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.48",
|
||||
"@verdaccio/loaders": "workspace:6.0.0-6-next.17",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.16",
|
||||
"@verdaccio/middleware": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/readme": "workspace:11.0.0-6-next.6",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.27",
|
||||
"@verdaccio/tarball": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/url": "workspace:11.0.0-6-next.13",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.15",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.28",
|
||||
"@verdaccio/tarball": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/url": "workspace:11.0.0-6-next.14",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.16",
|
||||
"body-parser": "1.20.0",
|
||||
"debug": "4.3.4",
|
||||
"express": "4.18.1",
|
||||
|
@ -44,16 +44,16 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.60",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.16",
|
||||
"@verdaccio/test-helper": "workspace:1.1.0-6-next.4",
|
||||
"@verdaccio/api": "workspace:6.0.0-6-next.30",
|
||||
"@verdaccio/types": "workspace:11.0.0-6-next.17",
|
||||
"@verdaccio/test-helper": "workspace:2.0.0-6-next.5",
|
||||
"@verdaccio/api": "workspace:6.0.0-6-next.31",
|
||||
"node-html-parser": "4.1.5",
|
||||
"supertest": "6.2.4",
|
||||
"nock": "13.2.9",
|
||||
"jsdom": "20.0.0",
|
||||
"undici": "4.16.0",
|
||||
"verdaccio-auth-memory": "workspace:11.0.0-6-next.12",
|
||||
"verdaccio-memory": "workspace:11.0.0-6-next.14"
|
||||
"verdaccio-auth-memory": "workspace:11.0.0-6-next.13",
|
||||
"verdaccio-memory": "workspace:11.0.0-6-next.15"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf ./build",
|
||||
|
|
934
pnpm-lock.yaml
generated
934
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue