Skip to content

Commit b022b0a

Browse files
Release v0.7.1
1 parent b0f67c6 commit b022b0a

3 files changed

Lines changed: 31 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.7.1] - 2026-01-22
9+
10+
### Features
11+
- Improve message editing UI with inline edit button and mobile responsiveness
12+
- Add optimistic UI updates for prompt sending
13+
14+
### Bug Fixes
15+
- Fix duplicate logic in message editing
16+
- Fix model store sync with config changes for context usage updates (#75)
17+
- Fix async prompt endpoint to prevent timeout on subagent tasks
18+
19+
### Other
20+
- [b0f67c6](https://github.com/anomalyco/opencode-manager/commit/b0f67c6) - Improve message editing UI with inline edit button and mobile responsiveness
21+
- [023e51d](https://github.com/anomalyco/opencode-manager/commit/023e51d) - Add optimistic UI updates for prompt sending and fix duplicate logic in message editing
22+
- [05af9d9](https://github.com/anomalyco/opencode-manager/commit/05af9d9) - fix: sync model store with config changes for context usage updates (#75)
23+
- [efd3b94](https://github.com/anomalyco/opencode-manager/commit/efd3b94) - fix: use async prompt endpoint to prevent timeout on subagent tasks
24+
25+
## [0.7.0] - 2025-01-20
26+
27+
### Other
28+
- Bump version to 0.7.0

backend/src/services/git/GitBranchService.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export class GitBranchService {
3131
const currentStdout = await executeCommand(['git', '-C', fullPath, 'rev-parse', '--abbrev-ref', 'HEAD'], { env, silent: true })
3232
currentBranch = currentStdout.trim()
3333
} catch {
34+
void null
3435
}
3536

3637
const stdout = await executeCommand(['git', '-C', fullPath, 'branch', '-vv', '-a'], { env, silent: true })
@@ -75,6 +76,7 @@ export class GitBranchService {
7576
branch.ahead = status.ahead
7677
branch.behind = status.behind
7778
} catch {
79+
void null
7880
}
7981
}
8082

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencode-manager",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"private": true,
55
"type": "module",
66
"packageManager": "pnpm@9.15.0",

0 commit comments

Comments
 (0)