@glrs-dev/assume 0.10.1 → 0.10.2
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 +19 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @glrs-dev/assume
|
|
2
2
|
|
|
3
|
+
## 0.10.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#269](https://github.com/iceglober/glrs/pull/269) [`b5467c0`](https://github.com/iceglober/glrs/commit/b5467c0697a5ef57d283f49c4de9b2dcd767273f) Thanks [@iceglober](https://github.com/iceglober)! - fix(assume): `gsa upgrade` checked the wrong repo and never updated
|
|
8
|
+
|
|
9
|
+
`gsa upgrade` still pointed at the pre-rename repo (`iceglober/glorious`, tag
|
|
10
|
+
prefix `assume-v`), which froze at ~0.6.x. It reported that stale release as
|
|
11
|
+
"latest version: 0.6.4" and — since the installed 0.10.x is numerically newer —
|
|
12
|
+
declared "already up to date", so it could never actually upgrade.
|
|
13
|
+
|
|
14
|
+
- Point at the current repo and changesets tag format: `iceglober/glrs`,
|
|
15
|
+
`@glrs-dev/assume@<version>`.
|
|
16
|
+
- Select the highest-semver matching release (not the first in list order) in
|
|
17
|
+
both the gh-CLI and REST paths.
|
|
18
|
+
- npm installs now upgrade via `npm i -g @glrs-dev/assume@latest` instead of a
|
|
19
|
+
GitHub binary-swap into node_modules, which would desync the binary from the
|
|
20
|
+
package manifest.
|
|
21
|
+
|
|
3
22
|
## 0.10.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glrs-dev/assume",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"typescript": "^5"
|
|
52
52
|
},
|
|
53
53
|
"optionalDependencies": {
|
|
54
|
-
"@glrs-dev/assume-darwin-arm64": "0.10.
|
|
55
|
-
"@glrs-dev/assume-darwin-x64": "0.10.
|
|
56
|
-
"@glrs-dev/assume-linux-x64": "0.10.
|
|
57
|
-
"@glrs-dev/assume-linux-arm64": "0.10.
|
|
54
|
+
"@glrs-dev/assume-darwin-arm64": "0.10.2",
|
|
55
|
+
"@glrs-dev/assume-darwin-x64": "0.10.2",
|
|
56
|
+
"@glrs-dev/assume-linux-x64": "0.10.2",
|
|
57
|
+
"@glrs-dev/assume-linux-arm64": "0.10.2"
|
|
58
58
|
}
|
|
59
59
|
}
|