Skip to content

Commit

Permalink
chore: release 9.0.0-pre.6
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and lukekarrys committed Oct 19, 2022
1 parent 9e74d3e commit 2929899
Show file tree
Hide file tree
Showing 29 changed files with 242 additions and 74 deletions.
26 changes: 13 additions & 13 deletions .release-please-manifest.json
@@ -1,15 +1,15 @@
{
".": "9.0.0-pre.5",
"workspaces/arborist": "6.0.0-pre.4",
"workspaces/libnpmaccess": "7.0.0-pre.1",
"workspaces/libnpmdiff": "5.0.0-pre.2",
"workspaces/libnpmexec": "5.0.0-pre.4",
"workspaces/libnpmfund": "4.0.0-pre.4",
"workspaces/libnpmhook": "9.0.0-pre.0",
"workspaces/libnpmorg": "5.0.0-pre.0",
"workspaces/libnpmpack": "5.0.0-pre.3",
"workspaces/libnpmpublish": "7.0.0-pre.3",
"workspaces/libnpmsearch": "6.0.0-pre.0",
"workspaces/libnpmteam": "5.0.0-pre.0",
"workspaces/libnpmversion": "4.0.0-pre.0"
".": "9.0.0-pre.6",
"workspaces/arborist": "6.0.0-pre.5",
"workspaces/libnpmaccess": "7.0.0-pre.2",
"workspaces/libnpmdiff": "5.0.0-pre.3",
"workspaces/libnpmexec": "5.0.0-pre.5",
"workspaces/libnpmfund": "4.0.0-pre.5",
"workspaces/libnpmhook": "9.0.0-pre.1",
"workspaces/libnpmorg": "5.0.0-pre.1",
"workspaces/libnpmpack": "5.0.0-pre.4",
"workspaces/libnpmpublish": "7.0.0-pre.4",
"workspaces/libnpmsearch": "6.0.0-pre.1",
"workspaces/libnpmteam": "5.0.0-pre.1",
"workspaces/libnpmversion": "4.0.0-pre.1"
}
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -862,3 +862,4 @@ giovanniPepi <gtpepi@proton.me>
Winter <winter@winter.cafe>
shalvah <diakon.ng@gmail.com>
Albert 理斯特 <shuaizhexu@gmail.com>
Gennadiy Gashev <63790536+gennadiygashev@users.noreply.github.com>
55 changes: 55 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,60 @@
# Changelog

## [9.0.0-pre.6](https://github.com/npm/cli/compare/v9.0.0-pre.5...v9.0.0-pre.6) (2022-10-19)

### ⚠️ BREAKING CHANGES

* `npm` now outputs some json errors on stdout. Previously `npm` would output all json formatted errors on stderr, making it difficult to parse as the stderr stream usually has logs already written to it. In the future, `npm` will differentiate between errors and crashes. Errors, such as `E404` and `ERESOLVE`, will be handled and will continue to be output on stdout. In the case of a crash, `npm` will log the error as usual but will not attempt to display it as json, even in `--json` mode. Moving a case from the category of an error to a crash will not be considered a breaking change. For more information see npm/rfcs#482.
* `npm config set` will no longer accept deprecated or invalid config options.
* `timing` and `loglevel` changes
- `timing` has been removed as a value for `--loglevel`
- `--timing` will show timing information regardless of
`--loglevel`, except when `--silent`
* deprecate boolean install flags in favor of `--install-strategy`
* deprecate --global-style, --global now sets --install-strategy=shallow
* deprecate --legacy-bundling, now sets --install-strategy=nested
* npm will no longer attempt to modify ownership of files it creates
* this package no longer attempts to change file ownership automatically
* this package no longer attempts to change file ownership automatically

### Features

* [`d3543e9`](https://github.com/npm/cli/commit/d3543e945e721783dcb83385935f282a4bb32cf3) output json formatted errors on stdout (#5716) (@lukekarrys)
* [`be642c6`](https://github.com/npm/cli/commit/be642c6b8e3df40fd43b0110b30d3ecd44086016) refuse to set deprecated/invalid config (#5719) (@wraithgar)
* [`332914b`](https://github.com/npm/cli/commit/332914b48b616099e586893b1df21480b7ddb733) separate configs for `--timing` and `--loglevel` (@lukekarrys)
* [`f653785`](https://github.com/npm/cli/commit/f6537855e1a34b84251993a49e1ee362082ada37) deprecated `key`, `cert` config options and updated registry scoped auth docs (@fritzy)
* [`de2d33f`](https://github.com/npm/cli/commit/de2d33f3ed42e187803bdd31db4f7a12f08f353c) add --install-strategy=hoisted|nested|shallow, deprecate --global-style, --legacy-bundling (#5709) (@fritzy)
* [`58065bc`](https://github.com/npm/cli/commit/58065bc679e6968742b5b15fa2fb82dd9e8ae988) [#5704](https://github.com/npm/cli/pull/5704) do not alter file ownership (@nlf)
* [`475e9b6`](https://github.com/npm/cli/commit/475e9b6c0c978a104dd2ee47bde22b0a031a95f9) [#5703](https://github.com/npm/cli/pull/5703) do not alter file ownership (@nlf)

### Bug Fixes

* [`6ffa5b7`](https://github.com/npm/cli/commit/6ffa5b7bbb8fd7cae1a0b955a1f762661ec5e9ed) `npm hook ls` duplicates hook name prefixes (#5295) (@gennadiygashev)
* [`1afe5ba`](https://github.com/npm/cli/commit/1afe5ba9647d1f0f55bf0a4bace543965d05daed) account for new npm-package-arg behavior (@wraithgar)
* [`353b5bb`](https://github.com/npm/cli/commit/353b5bb92c3f7899526536b597252b44aa8a712d) [#5710](https://github.com/npm/cli/pull/5710) remove chownr and mkdirp-infer-owner (@nlf)

### Documentation

* [`9e74d3e`](https://github.com/npm/cli/commit/9e74d3e847c4bc0abc630fbe81328e011d6f0187) update supported engines in readme (#5725) (@lukekarrys)

### Dependencies

* [`88137a3`](https://github.com/npm/cli/commit/88137a329c8ad418db265dd465768a7cf5ebccb1) `npmlog@7.0.1`
* [`2008ea6`](https://github.com/npm/cli/commit/2008ea6a807acbd97912799adfe97f276202cea6) `npm-package-arg@10.0.0`, `pacote@15.0.2`
* [`aa01072`](https://github.com/npm/cli/commit/aa010722996ef6de46e1bb937c6f8a94dc2844fa) [#5707](https://github.com/npm/cli/pull/5707) update the following dependencies
* [Workspace](https://github.com/npm/cli/compare/arborist-v6.0.0-pre.4...arborist-v6.0.0-pre.5): `@npmcli/arborist@6.0.0-pre.5`
* [Workspace](https://github.com/npm/cli/compare/libnpmaccess-v7.0.0-pre.1...libnpmaccess-v7.0.0-pre.2): `libnpmaccess@7.0.0-pre.2`
* [Workspace](https://github.com/npm/cli/compare/libnpmdiff-v5.0.0-pre.2...libnpmdiff-v5.0.0-pre.3): `libnpmdiff@5.0.0-pre.3`
* [Workspace](https://github.com/npm/cli/compare/libnpmexec-v5.0.0-pre.4...libnpmexec-v5.0.0-pre.5): `libnpmexec@5.0.0-pre.5`
* [Workspace](https://github.com/npm/cli/compare/libnpmfund-v4.0.0-pre.4...libnpmfund-v4.0.0-pre.5): `libnpmfund@4.0.0-pre.5`
* [Workspace](https://github.com/npm/cli/compare/libnpmhook-v9.0.0-pre.0...libnpmhook-v9.0.0-pre.1): `libnpmhook@9.0.0-pre.1`
* [Workspace](https://github.com/npm/cli/compare/libnpmorg-v5.0.0-pre.0...libnpmorg-v5.0.0-pre.1): `libnpmorg@5.0.0-pre.1`
* [Workspace](https://github.com/npm/cli/compare/libnpmpack-v5.0.0-pre.3...libnpmpack-v5.0.0-pre.4): `libnpmpack@5.0.0-pre.4`
* [Workspace](https://github.com/npm/cli/compare/libnpmpublish-v7.0.0-pre.3...libnpmpublish-v7.0.0-pre.4): `libnpmpublish@7.0.0-pre.4`
* [Workspace](https://github.com/npm/cli/compare/libnpmsearch-v6.0.0-pre.0...libnpmsearch-v6.0.0-pre.1): `libnpmsearch@6.0.0-pre.1`
* [Workspace](https://github.com/npm/cli/compare/libnpmteam-v5.0.0-pre.0...libnpmteam-v5.0.0-pre.1): `libnpmteam@5.0.0-pre.1`
* [Workspace](https://github.com/npm/cli/compare/libnpmversion-v4.0.0-pre.0...libnpmversion-v4.0.0-pre.1): `libnpmversion@4.0.0-pre.1`

## [9.0.0-pre.5](https://github.com/npm/cli/compare/v9.0.0-pre.4...v9.0.0-pre.5) (2022-10-13)

### ⚠️ BREAKING CHANGES
Expand Down
62 changes: 31 additions & 31 deletions package-lock.json
@@ -1,12 +1,12 @@
{
"name": "npm",
"version": "9.0.0-pre.5",
"version": "9.0.0-pre.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "npm",
"version": "9.0.0-pre.5",
"version": "9.0.0-pre.6",
"bundleDependencies": [
"@isaacs/string-locale-compare",
"@npmcli/arborist",
Expand Down Expand Up @@ -87,7 +87,7 @@
],
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
"@npmcli/arborist": "^6.0.0-pre.4",
"@npmcli/arborist": "^6.0.0-pre.5",
"@npmcli/ci-detect": "^3.0.0",
"@npmcli/config": "^6.0.1",
"@npmcli/map-workspaces": "^3.0.0",
Expand All @@ -109,17 +109,17 @@
"init-package-json": "^4.0.1",
"is-cidr": "^4.0.2",
"json-parse-even-better-errors": "^3.0.0",
"libnpmaccess": "^7.0.0-pre.1",
"libnpmdiff": "^5.0.0-pre.2",
"libnpmexec": "^5.0.0-pre.4",
"libnpmfund": "^4.0.0-pre.4",
"libnpmhook": "^9.0.0-pre.0",
"libnpmorg": "^5.0.0-pre.0",
"libnpmpack": "^5.0.0-pre.3",
"libnpmpublish": "^7.0.0-pre.3",
"libnpmsearch": "^6.0.0-pre.0",
"libnpmteam": "^5.0.0-pre.0",
"libnpmversion": "^4.0.0-pre.0",
"libnpmaccess": "^7.0.0-pre.2",
"libnpmdiff": "^5.0.0-pre.3",
"libnpmexec": "^5.0.0-pre.5",
"libnpmfund": "^4.0.0-pre.5",
"libnpmhook": "^9.0.0-pre.1",
"libnpmorg": "^5.0.0-pre.1",
"libnpmpack": "^5.0.0-pre.4",
"libnpmpublish": "^7.0.0-pre.4",
"libnpmsearch": "^6.0.0-pre.1",
"libnpmteam": "^5.0.0-pre.1",
"libnpmversion": "^4.0.0-pre.1",
"make-fetch-happen": "^11.0.1",
"minimatch": "^5.1.0",
"minipass": "^3.1.6",
Expand Down Expand Up @@ -14037,7 +14037,7 @@
},
"workspaces/arborist": {
"name": "@npmcli/arborist",
"version": "6.0.0-pre.4",
"version": "6.0.0-pre.5",
"license": "ISC",
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
Expand Down Expand Up @@ -14092,7 +14092,7 @@
}
},
"workspaces/libnpmaccess": {
"version": "7.0.0-pre.1",
"version": "7.0.0-pre.2",
"license": "ISC",
"dependencies": {
"npm-package-arg": "^10.0.0",
Expand All @@ -14109,10 +14109,10 @@
}
},
"workspaces/libnpmdiff": {
"version": "5.0.0-pre.2",
"version": "5.0.0-pre.3",
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^6.0.0-pre.4",
"@npmcli/arborist": "^6.0.0-pre.5",
"@npmcli/disparity-colors": "^3.0.0",
"@npmcli/installed-package-contents": "^2.0.0",
"binary-extensions": "^2.2.0",
Expand All @@ -14132,10 +14132,10 @@
}
},
"workspaces/libnpmexec": {
"version": "5.0.0-pre.4",
"version": "5.0.0-pre.5",
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^6.0.0-pre.4",
"@npmcli/arborist": "^6.0.0-pre.5",
"@npmcli/ci-detect": "^3.0.0",
"@npmcli/run-script": "^5.0.0",
"chalk": "^4.1.0",
Expand All @@ -14161,10 +14161,10 @@
}
},
"workspaces/libnpmfund": {
"version": "4.0.0-pre.4",
"version": "4.0.0-pre.5",
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^6.0.0-pre.4"
"@npmcli/arborist": "^6.0.0-pre.5"
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
Expand All @@ -14176,7 +14176,7 @@
}
},
"workspaces/libnpmhook": {
"version": "9.0.0-pre.0",
"version": "9.0.0-pre.1",
"license": "ISC",
"dependencies": {
"aproba": "^2.0.0",
Expand All @@ -14193,7 +14193,7 @@
}
},
"workspaces/libnpmorg": {
"version": "5.0.0-pre.0",
"version": "5.0.0-pre.1",
"license": "ISC",
"dependencies": {
"aproba": "^2.0.0",
Expand All @@ -14211,10 +14211,10 @@
}
},
"workspaces/libnpmpack": {
"version": "5.0.0-pre.3",
"version": "5.0.0-pre.4",
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^6.0.0-pre.4",
"@npmcli/arborist": "^6.0.0-pre.5",
"@npmcli/run-script": "^5.0.0",
"npm-package-arg": "^10.0.0",
"pacote": "^15.0.2"
Expand All @@ -14231,7 +14231,7 @@
}
},
"workspaces/libnpmpublish": {
"version": "7.0.0-pre.3",
"version": "7.0.0-pre.4",
"license": "ISC",
"dependencies": {
"normalize-package-data": "^5.0.0",
Expand All @@ -14243,7 +14243,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.6.2",
"libnpmpack": "^5.0.0-pre.3",
"libnpmpack": "^5.0.0-pre.4",
"lodash.clonedeep": "^4.5.0",
"nock": "^13.2.4",
"tap": "^16.0.1"
Expand All @@ -14253,7 +14253,7 @@
}
},
"workspaces/libnpmsearch": {
"version": "6.0.0-pre.0",
"version": "6.0.0-pre.1",
"license": "ISC",
"dependencies": {
"npm-registry-fetch": "^14.0.2"
Expand All @@ -14269,7 +14269,7 @@
}
},
"workspaces/libnpmteam": {
"version": "5.0.0-pre.0",
"version": "5.0.0-pre.1",
"license": "ISC",
"dependencies": {
"aproba": "^2.0.0",
Expand All @@ -14286,7 +14286,7 @@
}
},
"workspaces/libnpmversion": {
"version": "4.0.0-pre.0",
"version": "4.0.0-pre.1",
"license": "ISC",
"dependencies": {
"@npmcli/git": "^4.0.1",
Expand Down
26 changes: 13 additions & 13 deletions package.json
@@ -1,5 +1,5 @@
{
"version": "9.0.0-pre.5",
"version": "9.0.0-pre.6",
"name": "npm",
"description": "a package manager for JavaScript",
"workspaces": [
Expand Down Expand Up @@ -56,7 +56,7 @@
},
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
"@npmcli/arborist": "^6.0.0-pre.4",
"@npmcli/arborist": "^6.0.0-pre.5",
"@npmcli/ci-detect": "^3.0.0",
"@npmcli/config": "^6.0.1",
"@npmcli/map-workspaces": "^3.0.0",
Expand All @@ -78,17 +78,17 @@
"init-package-json": "^4.0.1",
"is-cidr": "^4.0.2",
"json-parse-even-better-errors": "^3.0.0",
"libnpmaccess": "^7.0.0-pre.1",
"libnpmdiff": "^5.0.0-pre.2",
"libnpmexec": "^5.0.0-pre.4",
"libnpmfund": "^4.0.0-pre.4",
"libnpmhook": "^9.0.0-pre.0",
"libnpmorg": "^5.0.0-pre.0",
"libnpmpack": "^5.0.0-pre.3",
"libnpmpublish": "^7.0.0-pre.3",
"libnpmsearch": "^6.0.0-pre.0",
"libnpmteam": "^5.0.0-pre.0",
"libnpmversion": "^4.0.0-pre.0",
"libnpmaccess": "^7.0.0-pre.2",
"libnpmdiff": "^5.0.0-pre.3",
"libnpmexec": "^5.0.0-pre.5",
"libnpmfund": "^4.0.0-pre.5",
"libnpmhook": "^9.0.0-pre.1",
"libnpmorg": "^5.0.0-pre.1",
"libnpmpack": "^5.0.0-pre.4",
"libnpmpublish": "^7.0.0-pre.4",
"libnpmsearch": "^6.0.0-pre.1",
"libnpmteam": "^5.0.0-pre.1",
"libnpmversion": "^4.0.0-pre.1",
"make-fetch-happen": "^11.0.1",
"minimatch": "^5.1.0",
"minipass": "^3.1.6",
Expand Down
24 changes: 24 additions & 0 deletions workspaces/arborist/CHANGELOG.md
@@ -1,5 +1,29 @@
# Changelog

## [6.0.0-pre.5](https://github.com/npm/cli/compare/arborist-v6.0.0-pre.4...arborist-v6.0.0-pre.5) (2022-10-19)

### ⚠️ BREAKING CHANGES

* deprecate boolean install flags in favor of `--install-strategy`
* deprecate --global-style, --global now sets --install-strategy=shallow
* deprecate --legacy-bundling, now sets --install-strategy=nested
* this package no longer attempts to change file ownership automatically

### Features

* [`de2d33f`](https://github.com/npm/cli/commit/de2d33f3ed42e187803bdd31db4f7a12f08f353c) add --install-strategy=hoisted|nested|shallow, deprecate --global-style, --legacy-bundling (#5709) (@fritzy)
* [`475e9b6`](https://github.com/npm/cli/commit/475e9b6c0c978a104dd2ee47bde22b0a031a95f9) [#5703](https://github.com/npm/cli/pull/5703) do not alter file ownership (@nlf)

### Bug Fixes

* [`1afe5ba`](https://github.com/npm/cli/commit/1afe5ba9647d1f0f55bf0a4bace543965d05daed) account for new npm-package-arg behavior (@wraithgar)

### Dependencies

* [`88137a3`](https://github.com/npm/cli/commit/88137a329c8ad418db265dd465768a7cf5ebccb1) `npmlog@7.0.1`
* [`2008ea6`](https://github.com/npm/cli/commit/2008ea6a807acbd97912799adfe97f276202cea6) `npm-package-arg@10.0.0`, `pacote@15.0.2`
* [`aa01072`](https://github.com/npm/cli/commit/aa010722996ef6de46e1bb937c6f8a94dc2844fa) [#5707](https://github.com/npm/cli/pull/5707) update the following dependencies

## [6.0.0-pre.4](https://github.com/npm/cli/compare/arborist-v6.0.0-pre.3...arborist-v6.0.0-pre.4) (2022-10-05)

### Features
Expand Down
2 changes: 1 addition & 1 deletion workspaces/arborist/package.json
@@ -1,6 +1,6 @@
{
"name": "@npmcli/arborist",
"version": "6.0.0-pre.4",
"version": "6.0.0-pre.5",
"description": "Manage node_modules trees",
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
Expand Down
7 changes: 7 additions & 0 deletions workspaces/libnpmaccess/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## [7.0.0-pre.2](https://github.com/npm/cli/compare/libnpmaccess-v7.0.0-pre.1...libnpmaccess-v7.0.0-pre.2) (2022-10-19)

### Dependencies

* [`2008ea6`](https://github.com/npm/cli/commit/2008ea6a807acbd97912799adfe97f276202cea6) `npm-package-arg@10.0.0`, `pacote@15.0.2`
* [`aa01072`](https://github.com/npm/cli/commit/aa010722996ef6de46e1bb937c6f8a94dc2844fa) [#5707](https://github.com/npm/cli/pull/5707) update the following dependencies

## [7.0.0-pre.1](https://github.com/npm/cli/compare/libnpmaccess-v7.0.0-pre.0...libnpmaccess-v7.0.0-pre.1) (2022-09-14)

### ⚠️ BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmaccess/package.json
@@ -1,6 +1,6 @@
{
"name": "libnpmaccess",
"version": "7.0.0-pre.1",
"version": "7.0.0-pre.2",
"description": "programmatic library for `npm access` commands",
"author": "GitHub Inc.",
"license": "ISC",
Expand Down
8 changes: 8 additions & 0 deletions workspaces/libnpmdiff/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog

## [5.0.0-pre.3](https://github.com/npm/cli/compare/libnpmdiff-v5.0.0-pre.2...libnpmdiff-v5.0.0-pre.3) (2022-10-19)

### Dependencies

* [`2008ea6`](https://github.com/npm/cli/commit/2008ea6a807acbd97912799adfe97f276202cea6) `npm-package-arg@10.0.0`, `pacote@15.0.2`
* [`aa01072`](https://github.com/npm/cli/commit/aa010722996ef6de46e1bb937c6f8a94dc2844fa) [#5707](https://github.com/npm/cli/pull/5707) update the following dependencies
* [Workspace](https://github.com/npm/cli/compare/arborist-v6.0.0-pre.4...arborist-v6.0.0-pre.5): `@npmcli/arborist@6.0.0-pre.5`

## [5.0.0-pre.2](https://github.com/npm/cli/compare/libnpmdiff-v5.0.0-pre.1...libnpmdiff-v5.0.0-pre.2) (2022-10-05)

### Dependencies
Expand Down

0 comments on commit 2929899

Please sign in to comment.