Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,31 @@

All notable changes to HyperNeo will be documented in this file.

## [Unreleased]
## [0.39.6] - 2026-07-17

### Added

- **Desktop rebrand completed**: Renamed desktop crate, sidecar binary, bundle identifier, data/workspace directory, and event names from Kai/NeoKai to HyperNeo

### Changed

- **Web UI**: SDK `system:status` messages now fold into the active turn roster
- **Environment variables**: Removed legacy `NEOKAI_*` env var aliases
- **Data directory**: Dropped legacy `~/.neokai` data directory support
- **Docs**: Updated remaining HyperNeo rebrand references

### Fixed

- **Space task messaging**: Reject ambiguous task message targets, audit `send_message_to_task` outcomes, and enrich delivery responses
- **GitHub polling**: Derive repo owner/name from payload URL to handle renamed repositories
- **Context usage breakdown**: Exclude autocompact buffer row and normalize categories to `totalUsed`
- **Dev branch CI**: Fixed logger test isolation and rpc-4 model-handler race

### Removed

- Removed unused CodeGraph MCP integration artifacts (orphaned DB already deleted and `.mcp.json` entry already absent); benchmark scripts and reports retained for historical reference.
- **CodeGraph MCP**: Removed unused CodeGraph MCP integration artifacts (orphaned DB already deleted and `.mcp.json` entry already absent); benchmark scripts and reports retained for historical reference

13 commits since v0.39.5.

## [0.39.5] - 2026-07-04

Expand Down
12 changes: 6 additions & 6 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions npm/hyperneo/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "hyperneo",
"version": "0.39.5",
"version": "0.39.6",
"description": "HyperNeo - Claude Agent SDK Web Interface",
"bin": {
"hyperneo": "bin/hyperneo.js"
},
"optionalDependencies": {
"@hyperneo/cli-darwin-arm64": "0.39.5",
"@hyperneo/cli-darwin-x64": "0.39.5",
"@hyperneo/cli-linux-x64": "0.39.5",
"@hyperneo/cli-linux-arm64": "0.39.5"
"@hyperneo/cli-darwin-arm64": "0.39.6",
"@hyperneo/cli-darwin-x64": "0.39.6",
"@hyperneo/cli-linux-x64": "0.39.6",
"@hyperneo/cli-linux-arm64": "0.39.6"
},
"files": [
"bin/"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperneo/cli",
"version": "0.39.5",
"version": "0.39.6",
"type": "module",
"license": "Apache-2.0",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/daemon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperneo/daemon",
"version": "0.39.5",
"version": "0.39.6",
"type": "module",
"license": "Apache-2.0",
"main": "main.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperneo/desktop",
"version": "0.39.5",
"version": "0.39.6",
"private": true,
"description": "HyperNeo Desktop App - Tauri wrapper bundling the HyperNeo daemon as a sidecar",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperneo-desktop"
version = "0.39.5"
version = "0.39.6"
description = "HyperNeo - AI Assistant Desktop App"
authors = ["HyperNeo contributors"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "HyperNeo",
"version": "0.39.5",
"version": "0.39.6",
"identifier": "io.hyperneo.app",
"build": {
"frontendDist": "loading",
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperneo/e2e",
"version": "0.39.5",
"version": "0.39.6",
"private": true,
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperneo/shared",
"version": "0.39.5",
"version": "0.39.6",
"type": "module",
"license": "Apache-2.0",
"main": "src/mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperneo/web",
"version": "0.39.5",
"version": "0.39.6",
"type": "module",
"license": "Apache-2.0",
"scripts": {
Expand Down
Loading