@pnpm/global.packages 1101.0.0 → 1101.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @pnpm/global.packages
|
|
2
2
|
|
|
3
|
+
## 1101.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- `pnpm update -g` no longer downgrades a global package. `--latest` resolves the `latest` dist-tag, which can point at an older release than the one installed — after `pnpm add -g <pkg>@next`, for instance [#14270](https://github.com/pnpm/pnpm/issues/14270).
|
|
8
|
+
|
|
9
|
+
`pnpm update -g` also no longer changes the pnpm version. pnpm's own global install belongs to `pnpm self-update` [#14270](https://github.com/pnpm/pnpm/issues/14270).
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies:
|
|
14
|
+
- @pnpm/bins.resolver@1100.0.16
|
|
15
|
+
- @pnpm/crypto.hash@1100.0.3
|
|
16
|
+
- @pnpm/pkg-manifest.reader@1100.0.18
|
|
17
|
+
- @pnpm/types@1102.1.0
|
|
18
|
+
|
|
3
19
|
## 1101.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/global.packages",
|
|
3
|
-
"version": "1101.
|
|
3
|
+
"version": "1101.1.0",
|
|
4
4
|
"description": "Utilities for managing isolated global packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"!*.map"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@pnpm/bins.resolver": "1100.0.
|
|
32
|
-
"@pnpm/crypto.hash": "1100.0.
|
|
33
|
-
"@pnpm/pkg-manifest.reader": "1100.0.
|
|
31
|
+
"@pnpm/bins.resolver": "1100.0.16",
|
|
32
|
+
"@pnpm/crypto.hash": "1100.0.3",
|
|
33
|
+
"@pnpm/pkg-manifest.reader": "1100.0.18",
|
|
34
34
|
"@pnpm/text.ordinal-comparator": "1100.0.0",
|
|
35
|
-
"@pnpm/types": "1102.
|
|
35
|
+
"@pnpm/types": "1102.1.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@pnpm/global.packages": "1101.
|
|
38
|
+
"@pnpm/global.packages": "1101.1.0"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=22.13"
|