@glrs-dev/assume 0.10.0 → 0.10.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @glrs-dev/assume
2
2
 
3
+ ## 0.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ `gsa init` resolved OpenCode's config via `dirs::config_dir()`, which on macOS is
10
+ `~/Library/Application Support` — so it wrote the gsa MCP entry to
11
+ `~/Library/Application Support/opencode/opencode.json`, a file OpenCode never
12
+ reads. The "OpenCode: gsa MCP configured" message was a false read of that wrong
13
+ path, and the credential MCP never actually loaded.
14
+
15
+ OpenCode reads `$XDG_CONFIG_HOME/opencode/opencode.json` (default
16
+ `~/.config/opencode/opencode.json`) on every platform, matching the harness
17
+ installer. `gsa init` now resolves the same path. Other tools (claude-code,
18
+ gemini, cursor) were already correct (home-relative).
19
+
3
20
  ## 0.10.0
4
21
 
5
22
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glrs-dev/assume",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
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.0",
55
- "@glrs-dev/assume-darwin-x64": "0.10.0",
56
- "@glrs-dev/assume-linux-x64": "0.10.0",
57
- "@glrs-dev/assume-linux-arm64": "0.10.0"
54
+ "@glrs-dev/assume-darwin-arm64": "0.10.1",
55
+ "@glrs-dev/assume-darwin-x64": "0.10.1",
56
+ "@glrs-dev/assume-linux-x64": "0.10.1",
57
+ "@glrs-dev/assume-linux-arm64": "0.10.1"
58
58
  }
59
59
  }