Skip to content

Commit

Permalink
chore: update versions (6-next) (#3362)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
juanpicado and github-actions[bot] committed Sep 28, 2022
1 parent 0277180 commit 269105f
Show file tree
Hide file tree
Showing 64 changed files with 2,334 additions and 356 deletions.
10 changes: 9 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions e2e/cli/cli-commons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions e2e/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
78 changes: 78 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
22 changes: 11 additions & 11 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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"
Expand Down
76 changes: 76 additions & 0 deletions packages/auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
16 changes: 8 additions & 8 deletions packages/auth/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 269105f

Please sign in to comment.