@einsia/agent-git 0.2.3 → 0.2.4
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 +14 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ Every notable change to agit, the AgentGit CLI, by release. The format follows
|
|
|
6
6
|
its [GitHub Release](https://github.com/Einsia/agent-git/releases), and the
|
|
7
7
|
`@einsia/agent-git` npm package ships this file.
|
|
8
8
|
|
|
9
|
+
## [0.2.4] - 2026-09-21
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Return an existing native Codex inbox receipt before probing the executable,
|
|
14
|
+
so reconnect retries remain observable when Codex is temporarily unavailable.
|
|
15
|
+
Retries with the same message ID do not enqueue another message.
|
|
16
|
+
- Coalesce repeated native history protection failures and keep internal error
|
|
17
|
+
details in daemon logs instead of repeating them in conversation history.
|
|
18
|
+
- Preserve native conversation titles in session pickers and omit runtime
|
|
19
|
+
bookkeeping from message previews and counts.
|
|
20
|
+
- Settle multiple newly detected heuristic secrets in one pass, and bound identity
|
|
21
|
+
evidence to the provenance budget when scanning large inputs.
|
|
22
|
+
|
|
9
23
|
## [0.2.3] - 2026-09-20
|
|
10
24
|
|
|
11
25
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@einsia/agent-git",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Version control for agent sessions — the agit CLI plus skills/hooks/MCP wiring for Claude Code, Codex, OpenCode and Cursor. The AgentGit hub deploys separately.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agit",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"@einsia/agent-git-linux-x64": "0.2.
|
|
53
|
-
"@einsia/agent-git-linux-arm64": "0.2.
|
|
54
|
-
"@einsia/agent-git-darwin-x64": "0.2.
|
|
55
|
-
"@einsia/agent-git-darwin-arm64": "0.2.
|
|
56
|
-
"@einsia/agent-git-win32-x64": "0.2.
|
|
52
|
+
"@einsia/agent-git-linux-x64": "0.2.4",
|
|
53
|
+
"@einsia/agent-git-linux-arm64": "0.2.4",
|
|
54
|
+
"@einsia/agent-git-darwin-x64": "0.2.4",
|
|
55
|
+
"@einsia/agent-git-darwin-arm64": "0.2.4",
|
|
56
|
+
"@einsia/agent-git-win32-x64": "0.2.4"
|
|
57
57
|
}
|
|
58
58
|
}
|