@glrs-dev/assume 0.10.0 → 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 +36 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
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
|
+
|
|
22
|
+
## 0.10.1
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- [#267](https://github.com/iceglober/glrs/pull/267) [`d7cc1ef`](https://github.com/iceglober/glrs/commit/d7cc1ef9a4b342cbc00cbd3766fa5185381e4996) Thanks [@iceglober](https://github.com/iceglober)! - fix(assume): write the opencode MCP config to the path opencode actually reads
|
|
27
|
+
|
|
28
|
+
`gsa init` resolved OpenCode's config via `dirs::config_dir()`, which on macOS is
|
|
29
|
+
`~/Library/Application Support` — so it wrote the gsa MCP entry to
|
|
30
|
+
`~/Library/Application Support/opencode/opencode.json`, a file OpenCode never
|
|
31
|
+
reads. The "OpenCode: gsa MCP configured" message was a false read of that wrong
|
|
32
|
+
path, and the credential MCP never actually loaded.
|
|
33
|
+
|
|
34
|
+
OpenCode reads `$XDG_CONFIG_HOME/opencode/opencode.json` (default
|
|
35
|
+
`~/.config/opencode/opencode.json`) on every platform, matching the harness
|
|
36
|
+
installer. `gsa init` now resolves the same path. Other tools (claude-code,
|
|
37
|
+
gemini, cursor) were already correct (home-relative).
|
|
38
|
+
|
|
3
39
|
## 0.10.0
|
|
4
40
|
|
|
5
41
|
### Minor 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
|
}
|