Skip to content

Commit 9710405

Browse files
chore: release 10.8.2
1 parent 2273183 commit 9710405

File tree

8 files changed

+48
-12
lines changed

8 files changed

+48
-12
lines changed

.release-please-manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
".": "10.8.1",
2+
".": "10.8.2",
33
"workspaces/arborist": "7.5.3",
44
"workspaces/libnpmaccess": "8.0.6",
55
"workspaces/libnpmdiff": "6.1.3",
6-
"workspaces/libnpmexec": "8.1.2",
6+
"workspaces/libnpmexec": "8.1.3",
77
"workspaces/libnpmfund": "5.0.11",
88
"workspaces/libnpmhook": "10.0.5",
99
"workspaces/libnpmorg": "6.0.6",
@@ -12,5 +12,5 @@
1212
"workspaces/libnpmsearch": "7.0.6",
1313
"workspaces/libnpmteam": "6.0.5",
1414
"workspaces/libnpmversion": "6.0.3",
15-
"workspaces/config": "8.3.3"
15+
"workspaces/config": "8.3.4"
1616
}

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [10.8.2](https://github.com/npm/cli/compare/v10.8.1...v10.8.2) (2024-06-14)
4+
5+
### Bug Fixes
6+
7+
* [`2273183`](https://github.com/npm/cli/commit/22731831e22011e32fa0ca12178e242c2ee2b33d) [#7595](https://github.com/npm/cli/pull/7595) outdated: fixed wanted range for alias with version range (#7595) (@milaninfy)
8+
9+
### Documentation
10+
11+
* [`93883bb`](https://github.com/npm/cli/commit/93883bb6459208a916584cad8c6c72a315cf32af) [#7582](https://github.com/npm/cli/pull/7582) Improve manpage section for `package.json` `funding` properties (#7582) (@kemitchell)
12+
* [`92e71e6`](https://github.com/npm/cli/commit/92e71e6b0c7889e243e6b54ef8b4eb9656de95f8) [#7576](https://github.com/npm/cli/pull/7576) fix links to community discussions (#7576) (@leobalter)
13+
14+
### Dependencies
15+
16+
* [`04d6910`](https://github.com/npm/cli/commit/04d6910e474003762b4606837960b4eb10d7bcd9) [#7574](https://github.com/npm/cli/pull/7574) `@npmcli/[email protected]`
17+
* [`4ef4830`](https://github.com/npm/cli/commit/4ef4830dd792c2f23d3ffc7a10f797fc4ac8e5cb) [#7574](https://github.com/npm/cli/pull/7574) remove read-package-json-fast
18+
* [workspace](https://github.com/npm/cli/releases/tag/config-v8.3.4): `@npmcli/[email protected]`
19+
* [workspace](https://github.com/npm/cli/releases/tag/libnpmexec-v8.1.3): `[email protected]`
20+
321
## [10.8.1](https://github.com/npm/cli/compare/v10.8.0...v10.8.1) (2024-05-29)
422

523
### Bug Fixes

package-lock.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "npm",
3-
"version": "10.8.1",
3+
"version": "10.8.2",
44
"lockfileVersion": 3,
55
"requires": true,
66
"packages": {
77
"": {
88
"name": "npm",
9-
"version": "10.8.1",
9+
"version": "10.8.2",
1010
"bundleDependencies": [
1111
"@isaacs/string-locale-compare",
1212
"@npmcli/arborist",
@@ -15870,7 +15870,7 @@
1587015870
},
1587115871
"workspaces/config": {
1587215872
"name": "@npmcli/config",
15873-
"version": "8.3.3",
15873+
"version": "8.3.4",
1587415874
"license": "ISC",
1587515875
"dependencies": {
1587615876
"@npmcli/map-workspaces": "^3.0.2",
@@ -15933,7 +15933,7 @@
1593315933
}
1593415934
},
1593515935
"workspaces/libnpmexec": {
15936-
"version": "8.1.2",
15936+
"version": "8.1.3",
1593715937
"license": "ISC",
1593815938
"dependencies": {
1593915939
"@npmcli/arborist": "^7.5.3",

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "10.8.1",
2+
"version": "10.8.2",
33
"name": "npm",
44
"description": "a package manager for JavaScript",
55
"workspaces": [
@@ -53,7 +53,7 @@
5353
"dependencies": {
5454
"@isaacs/string-locale-compare": "^1.1.0",
5555
"@npmcli/arborist": "^7.5.3",
56-
"@npmcli/config": "^8.3.3",
56+
"@npmcli/config": "^8.3.4",
5757
"@npmcli/fs": "^3.1.1",
5858
"@npmcli/map-workspaces": "^3.0.6",
5959
"@npmcli/package-json": "^5.1.1",
@@ -78,7 +78,7 @@
7878
"json-parse-even-better-errors": "^3.0.2",
7979
"libnpmaccess": "^8.0.6",
8080
"libnpmdiff": "^6.1.3",
81-
"libnpmexec": "^8.1.2",
81+
"libnpmexec": "^8.1.3",
8282
"libnpmfund": "^5.0.11",
8383
"libnpmhook": "^10.0.5",
8484
"libnpmorg": "^6.0.6",

workspaces/config/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [8.3.4](https://github.com/npm/cli/compare/config-v8.3.3...config-v8.3.4) (2024-06-14)
4+
5+
### Bug Fixes
6+
7+
* [`15be6dd`](https://github.com/npm/cli/commit/15be6dd33bfab8bdfaf8c3dece435d7139c1bf6d) [#7574](https://github.com/npm/cli/pull/7574) don't try parsing workspaces if none exist (@wraithgar)
8+
* [`d185c9b`](https://github.com/npm/cli/commit/d185c9bdcab7dd2a8a485cd167b9a7c5c1f43ad0) [#7574](https://github.com/npm/cli/pull/7574) use @npmcli/package-json to parse local package (@wraithgar)
9+
10+
### Dependencies
11+
12+
* [`04d6910`](https://github.com/npm/cli/commit/04d6910e474003762b4606837960b4eb10d7bcd9) [#7574](https://github.com/npm/cli/pull/7574) `@npmcli/[email protected]`
13+
* [`4ef4830`](https://github.com/npm/cli/commit/4ef4830dd792c2f23d3ffc7a10f797fc4ac8e5cb) [#7574](https://github.com/npm/cli/pull/7574) remove read-package-json-fast
14+
315
## [8.3.3](https://github.com/npm/cli/compare/config-v8.3.2...config-v8.3.3) (2024-05-29)
416

517
### Bug Fixes

workspaces/config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@npmcli/config",
3-
"version": "8.3.3",
3+
"version": "8.3.4",
44
"files": [
55
"bin/",
66
"lib/"

workspaces/libnpmexec/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [8.1.3](https://github.com/npm/cli/compare/libnpmexec-v8.1.2...libnpmexec-v8.1.3) (2024-06-14)
4+
5+
### Bug Fixes
6+
7+
* [`71c6848`](https://github.com/npm/cli/commit/71c6848acd97f00c84b07ee1a80d92a053d405b5) [#7587](https://github.com/npm/cli/pull/7587) exec: npx to run specified version if multiple version exist globally (#7587) (@milaninfy)
8+
39
## [8.1.2](https://github.com/npm/cli/compare/libnpmexec-v8.1.1...libnpmexec-v8.1.2) (2024-05-29)
410

511
### Bug Fixes

workspaces/libnpmexec/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "libnpmexec",
3-
"version": "8.1.2",
3+
"version": "8.1.3",
44
"files": [
55
"bin/",
66
"lib/"

0 commit comments

Comments
 (0)