2.10.6
Native Rust modules (truncation, hashing, bash stream), memory extraction pipeline, 1M context model, TUI crash fix, and rate limit improvements
This commit is contained in:
parent
539262ee64
commit
105fc0103a
7 changed files with 20 additions and 6 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -6,6 +6,20 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.10.6] - 2026-03-13
|
||||
|
||||
### Added
|
||||
- Native Rust output truncation module for efficient large-output handling (#268)
|
||||
- Native Rust xxHash32 hasher for hashline IDs — faster line hashing (#272)
|
||||
- Native Rust bash stream processor for single-pass chunk processing (#271)
|
||||
- Memory extraction pipeline (#261)
|
||||
- `claude-opus-4-6` model with 1M context window (#288)
|
||||
|
||||
### Fixed
|
||||
- Oversized TUI lines now truncated instead of crashing (#287)
|
||||
- Anthropic rate limit backoff now respects server-requested retry delay
|
||||
- CI publish guard: skip main package publish if already on npm
|
||||
|
||||
## [2.10.5] - 2026-03-13
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-darwin-arm64",
|
||||
"version": "2.10.5",
|
||||
"version": "2.10.6",
|
||||
"description": "GSD native engine binary for macOS ARM64",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-darwin-x64",
|
||||
"version": "2.10.5",
|
||||
"version": "2.10.6",
|
||||
"description": "GSD native engine binary for macOS Intel",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-linux-arm64-gnu",
|
||||
"version": "2.10.5",
|
||||
"version": "2.10.6",
|
||||
"description": "GSD native engine binary for Linux ARM64 (glibc)",
|
||||
"os": [
|
||||
"linux"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-linux-x64-gnu",
|
||||
"version": "2.10.5",
|
||||
"version": "2.10.6",
|
||||
"description": "GSD native engine binary for Linux x64 (glibc)",
|
||||
"os": [
|
||||
"linux"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-win32-x64-msvc",
|
||||
"version": "2.10.5",
|
||||
"version": "2.10.6",
|
||||
"description": "GSD native engine binary for Windows x64 (MSVC)",
|
||||
"os": [
|
||||
"win32"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "gsd-pi",
|
||||
"version": "2.10.5",
|
||||
"version": "2.10.6",
|
||||
"description": "GSD — Get Shit Done coding agent",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue