chore: add 3.0.2 changelog, update version (#367)
This commit is contained in:
parent
058bf6254f
commit
445f55a6c0
|
|
@ -7,7 +7,7 @@ description: Migrates Honcho Python SDK code from v1.6.0 to v2.0.0. Use when upg
|
|||
|
||||
## Overview
|
||||
|
||||
This skill migrates code from `honcho` Python SDK v1.6.0 to v2.0.0 (required for Honcho 3.0.0).
|
||||
This skill migrates code from `honcho` Python SDK v1.6.0 to v2.0.0 (required for Honcho 3.0.0+).
|
||||
|
||||
**Key breaking changes:**
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ description: Migrates Honcho TypeScript SDK code from v1.6.0 to v2.0.0. Use when
|
|||
|
||||
## Overview
|
||||
|
||||
This skill migrates code from `@honcho-ai/sdk` v1.6.0 to v2.0.0 (required for Honcho 3.0.0).
|
||||
This skill migrates code from `@honcho-ai/sdk` v1.6.0 to v2.0.0 (required for Honcho 3.0.0+).
|
||||
|
||||
**Key breaking changes:**
|
||||
|
||||
|
|
|
|||
16
CHANGELOG.md
16
CHANGELOG.md
|
|
@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [3.0.2] - 2026-01-27
|
||||
|
||||
### Added
|
||||
|
||||
- Documentation for reasoning_level and Claude Code plugin
|
||||
|
||||
### Changed
|
||||
|
||||
- Gave dreaming sub-agents better prompting around peer card creation, tweaked overall prompts
|
||||
|
||||
### Fixed
|
||||
|
||||
- Added message-search fallback for memory search tool, necessary in fresh sessions
|
||||
- Made FLUSH_ENABLED a config value
|
||||
- Removed N+1 query in search_messages
|
||||
|
||||
## [3.0.1] - 2026-01-27
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
---
|
||||
|
||||

|
||||

|
||||
[](https://pypi.org/project/honcho-ai/)
|
||||
[](https://npmjs.org/package/@honcho-ai/sdk)
|
||||
[](https://discord.gg/plasticlabs)
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ This guide helps you understand which versions of Honcho's API are compatible wi
|
|||
|
||||
## Version Compatibility
|
||||
|
||||
### Honcho API v3.0.1 (Current)
|
||||
### Honcho API v3.0.2 (Current)
|
||||
|
||||
<CardGroup cols={2}>
|
||||
<Card title="TypeScript SDK" icon="js">
|
||||
|
|
@ -34,7 +34,8 @@ This guide helps you understand which versions of Honcho's API are compatible wi
|
|||
|
||||
| Honcho API Version | TypeScript SDK | Python SDK |
|
||||
|-------------------|---------------|------------|
|
||||
| v3.0.1 (Current) | v2.0.0 | v2.0.0 |
|
||||
| v3.0.2 (Current) | v2.0.0 | v2.0.0 |
|
||||
| v3.0.1 | v2.0.0 | v2.0.0 |
|
||||
| v3.0.0 | v2.0.0 | v2.0.0 |
|
||||
| v2.5.1 | v1.6.0 | v1.6.0 |
|
||||
| v2.5.0 | v1.6.0 | v1.6.0 |
|
||||
|
|
|
|||
|
|
@ -27,7 +27,23 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
|
|||
### Honcho API and SDK Changelogs
|
||||
<Tabs>
|
||||
<Tab title="Honcho API">
|
||||
<Update label="v3.0.1 (Current)">
|
||||
<Update label="v3.0.2 (Current)">
|
||||
### Added
|
||||
|
||||
- Documentation for reasoning_level and Claude Code plugin
|
||||
|
||||
### Changed
|
||||
|
||||
- Gave dreaming sub-agents better prompting around peer card creation, tweaked overall prompts
|
||||
|
||||
### Fixed
|
||||
|
||||
- Added message-search fallback for memory search tool, necessary in fresh sessions
|
||||
- Made FLUSH_ENABLED a config value
|
||||
- Removed N+1 query in search_messages
|
||||
</Update>
|
||||
|
||||
<Update label="v3.0.1">
|
||||
### Fixed
|
||||
|
||||
- Token counting in Explicit Agent Loop
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
"navigation": {
|
||||
"versions": [
|
||||
{
|
||||
"version": "v3.0.1",
|
||||
"version": "v3.0.2",
|
||||
"api": {
|
||||
"openapi": [
|
||||
"v3/openapi.json"
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ Invoke with `/honcho-integration` in your coding agent.
|
|||
|
||||
#### migrate-honcho-py / migrate-honcho-ts
|
||||
|
||||
**For SDK upgrades.** Migrates code from v1.6.0 to v2.0.0 (required for Honcho 3.0.0). Use when upgrading the SDK or seeing errors about removed APIs like `observations`, `Representation`, `.core`, or `get_config`.
|
||||
**For SDK upgrades.** Migrates code from v1.6.0 to v2.0.0 (required for Honcho 3.0.0+). Use when upgrading the SDK or seeing errors about removed APIs like `observations`, `Representation`, `.core`, or `get_config`.
|
||||
|
||||
Both skills handle: terminology changes (`Observation` → `Conclusion`), `Representation` class removal, method renames, and streaming API updates.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "honcho"
|
||||
version = "3.0.1"
|
||||
version = "3.0.2"
|
||||
description = "Honcho Server"
|
||||
authors = [
|
||||
{name = "Plastic Labs", email = "hello@plasticlabs.ai"},
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ app = FastAPI(
|
|||
title="Honcho API",
|
||||
summary="The Identity Layer for the Agentic World",
|
||||
description="""Honcho is a platform for giving agents user-centric memory and social cognition.""",
|
||||
version="3.0.1",
|
||||
version="3.0.2",
|
||||
contact={
|
||||
"name": "Plastic Labs",
|
||||
"url": "https://honcho.dev",
|
||||
|
|
|
|||
Loading…
Reference in New Issue