chore: add 3.0.2 changelog, update version (#367)

This commit is contained in:
doria 2026-02-03 15:25:22 -05:00 committed by GitHub
parent 058bf6254f
commit 445f55a6c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 44 additions and 11 deletions

View File

@ -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:**

View File

@ -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:**

View File

@ -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

View File

@ -8,7 +8,7 @@
---
![Static Badge](https://img.shields.io/badge/Version-3.0.1-blue)
![Static Badge](https://img.shields.io/badge/Version-3.0.2-blue)
[![PyPI version](https://img.shields.io/pypi/v/honcho-ai.svg)](https://pypi.org/project/honcho-ai/)
[![NPM version](https://img.shields.io/npm/v/@honcho-ai/sdk.svg)](https://npmjs.org/package/@honcho-ai/sdk)
[![Discord](https://img.shields.io/discord/1016845111637839922?style=flat&logo=discord&logoColor=23ffffff&label=Plastic%20Labs&labelColor=235865F2)](https://discord.gg/plasticlabs)

View File

@ -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 |

View File

@ -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

View File

@ -25,7 +25,7 @@
"navigation": {
"versions": [
{
"version": "v3.0.1",
"version": "v3.0.2",
"api": {
"openapi": [
"v3/openapi.json"

View File

@ -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.

View File

@ -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"},

View File

@ -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",

View File

@ -1025,7 +1025,7 @@ wheels = [
[[package]]
name = "honcho"
version = "3.0.1"
version = "3.0.2"
source = { virtual = "." }
dependencies = [
{ name = "alembic" },