2.3.2 update (#217)
* chore: 2.3.2 update * fix: add 2.3.1 which never got a changelog
This commit is contained in:
parent
f6520c1ffe
commit
405f056400
27
CHANGELOG.md
27
CHANGELOG.md
|
|
@ -5,6 +5,33 @@ 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/).
|
||||
|
||||
## [2.3.2] - 2025-09-25
|
||||
|
||||
### Added
|
||||
|
||||
- Get peer cards endpoint (`GET /v2/peers/{peer_id}/peer-card`) for retrieving targeted peer context information
|
||||
|
||||
### Changed
|
||||
|
||||
- Replaced Mirascope dependency with small client implementation for better control
|
||||
- Optimized deriver performance by using joins on messages table instead of storing token count in queue payload
|
||||
- Database scope optimization for various operations
|
||||
- Batch representation task processing for ~10x speed improvement in practice
|
||||
|
||||
### Fixed
|
||||
|
||||
- Separated clean and claim work units in queue manager to prevent race conditions
|
||||
- Skip locked ActiveQueueSession rows on delete operations
|
||||
- Langfuse SDK integration updates for compatibility
|
||||
- Added configurable maximum message size to prevent token overflow in deriver
|
||||
- Various minor bugfixes
|
||||
|
||||
## [2.3.1] - 2025-09-18
|
||||
|
||||
### Fixed
|
||||
|
||||
- Added max message count to deriver in order to not overflow token limits
|
||||
|
||||
## [2.3.0] — 2025-08-14
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -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 v2.3.0 (Current)
|
||||
### Honcho API v2.3.2 (Current)
|
||||
|
||||
<CardGroup cols={2}>
|
||||
<Card title="TypeScript SDK" icon="js">
|
||||
|
|
@ -35,7 +35,8 @@ This guide helps you understand which versions of Honcho's API are compatible wi
|
|||
|
||||
| Honcho API Version | TypeScript SDK | Python SDK |
|
||||
|-------------------|---------------|------------|
|
||||
| v2.3.0 (Current) | v1.4.0 | v1.4.0 |
|
||||
| v2.3.2 (Current) | v1.4.0 | v1.4.0 |
|
||||
| v2.3.0 | v1.4.0 | v1.4.0 |
|
||||
| v2.2.0 | v1.3.0 | v1.3.0 |
|
||||
| v2.1.1 | v1.2.1 | v1.2.2 |
|
||||
| v2.1.0 | v1.2.1 | v1.2.2 |
|
||||
|
|
|
|||
|
|
@ -27,7 +27,32 @@ 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="v2.3.0 (Current)">
|
||||
<Update label="v2.3.2 (Current)">
|
||||
### Added
|
||||
|
||||
- Get peer cards endpoint (`GET /v2/peers/{peer_id}/peer-card`) for retrieving targeted peer context information
|
||||
|
||||
### Changed
|
||||
|
||||
- Replaced Mirascope dependency with small client implementation for better control
|
||||
- Optimized deriver performance by using joins on messages table instead of storing token count in queue payload
|
||||
- Database scope optimization for various operations
|
||||
- Batch representation task processing for ~10x speed improvement in practice
|
||||
|
||||
### Fixed
|
||||
|
||||
- Separated clean and claim work units in queue manager to prevent race conditions
|
||||
- Skip locked ActiveQueueSession rows on delete operations
|
||||
- Langfuse SDK integration updates for compatibility
|
||||
- Added configurable maximum message size to prevent token overflow in deriver
|
||||
- Various minor bugfixes
|
||||
</Update>
|
||||
<Update label="v2.3.1">
|
||||
### Fixed
|
||||
|
||||
- Added max message count to deriver in order to not overflow token limits
|
||||
</Update>
|
||||
<Update label="v2.3.0">
|
||||
### Added
|
||||
|
||||
- `getSummaries` endpoint to get all available summaries for a session directly
|
||||
|
|
@ -269,7 +294,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
|
|||
|
||||
<Tab title="Python SDK">
|
||||
[Python SDK](https://pypi.org/project/honcho-ai/)
|
||||
<Update label="v1.4.0 (Current)">
|
||||
<Update label="v1.4.0">
|
||||
### Added
|
||||
|
||||
- getSummaries API returning structured summaries
|
||||
|
|
@ -316,7 +341,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
|
|||
|
||||
<Tab title="TypeScript SDK">
|
||||
[TypeScript SDK](https://www.npmjs.com/package/@honcho-ai/sdk)
|
||||
<Update label="v1.4.0 (Current)">
|
||||
<Update label="v1.4.0">
|
||||
### Added
|
||||
|
||||
- getSummaries API returning structured summaries
|
||||
|
|
|
|||
|
|
@ -9,14 +9,21 @@
|
|||
},
|
||||
"favicon": "/favicon.svg",
|
||||
"contextual": {
|
||||
"options": ["copy", "view", "chatgpt", "claude"]
|
||||
"options": [
|
||||
"copy",
|
||||
"view",
|
||||
"chatgpt",
|
||||
"claude"
|
||||
]
|
||||
},
|
||||
"navigation": {
|
||||
"versions": [
|
||||
{
|
||||
"version": "v2.3.0",
|
||||
"version": "v2.3.2",
|
||||
"api": {
|
||||
"openapi": ["openapi.documented.yml"]
|
||||
"openapi": [
|
||||
"openapi.documented.yml"
|
||||
]
|
||||
},
|
||||
"tabs": [
|
||||
{
|
||||
|
|
@ -54,11 +61,17 @@
|
|||
"groups": [
|
||||
{
|
||||
"group": "Getting Started",
|
||||
"pages": ["v2/guides/overview", "v2/guides/mcp"]
|
||||
"pages": [
|
||||
"v2/guides/overview",
|
||||
"v2/guides/mcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"group": "Application Interfaces",
|
||||
"pages": ["v2/guides/discord", "v2/guides/telegram"]
|
||||
"pages": [
|
||||
"v2/guides/discord",
|
||||
"v2/guides/telegram"
|
||||
]
|
||||
},
|
||||
{
|
||||
"group": "Design Patterns",
|
||||
|
|
@ -93,7 +106,9 @@
|
|||
"groups": [
|
||||
{
|
||||
"group": "API Documentation",
|
||||
"pages": ["v2/api-reference/introduction"]
|
||||
"pages": [
|
||||
"v2/api-reference/introduction"
|
||||
]
|
||||
},
|
||||
{
|
||||
"group": "workspaces",
|
||||
|
|
@ -148,7 +163,9 @@
|
|||
},
|
||||
{
|
||||
"group": "keys",
|
||||
"pages": ["v2/api-reference/endpoint/keys/create-key"]
|
||||
"pages": [
|
||||
"v2/api-reference/endpoint/keys/create-key"
|
||||
]
|
||||
},
|
||||
{
|
||||
"group": "webhooks",
|
||||
|
|
@ -178,7 +195,9 @@
|
|||
{
|
||||
"version": "v1.1.0",
|
||||
"api": {
|
||||
"openapi": ["openapi.json"]
|
||||
"openapi": [
|
||||
"openapi.json"
|
||||
]
|
||||
},
|
||||
"tabs": [
|
||||
{
|
||||
|
|
@ -208,15 +227,23 @@
|
|||
"groups": [
|
||||
{
|
||||
"group": "Getting Started",
|
||||
"pages": ["v1/guides/overview", "v1/guides/streaming-response"]
|
||||
"pages": [
|
||||
"v1/guides/overview",
|
||||
"v1/guides/streaming-response"
|
||||
]
|
||||
},
|
||||
{
|
||||
"group": "Application Interfaces",
|
||||
"pages": ["v1/guides/discord", "v1/guides/honcho-mcp"]
|
||||
"pages": [
|
||||
"v1/guides/discord",
|
||||
"v1/guides/honcho-mcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"group": "Personal Memory",
|
||||
"pages": ["v1/guides/dialectic-endpoint"]
|
||||
"pages": [
|
||||
"v1/guides/dialectic-endpoint"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -225,7 +252,9 @@
|
|||
"groups": [
|
||||
{
|
||||
"group": "API Documentation",
|
||||
"pages": ["v1/api-reference/introduction"]
|
||||
"pages": [
|
||||
"v1/api-reference/introduction"
|
||||
]
|
||||
},
|
||||
{
|
||||
"group": "apps",
|
||||
|
|
@ -273,7 +302,9 @@
|
|||
},
|
||||
{
|
||||
"group": "keys",
|
||||
"pages": ["v1/api-reference/endpoint/keys/create-key"]
|
||||
"pages": [
|
||||
"v1/api-reference/endpoint/keys/create-key"
|
||||
]
|
||||
},
|
||||
{
|
||||
"group": "metamessages",
|
||||
|
|
|
|||
|
|
@ -53,4 +53,3 @@ In CogSci, frameworks describing fixed structures & mechanisms underlying human
|
|||
|
||||
#### Predictive Coding
|
||||
A theory in CogSci proposing the brain is an active prediction machine, continually generating & updating internal world models to anticipate sensory input, rather than passively receiving it—closely linked to Bayesian brain hypotheses, which hold that the brain interprets the world probabilistically, weighing prior knowledge against new evidence to minimize uncertainty.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "honcho"
|
||||
version = "2.3.1"
|
||||
version = "2.3.2"
|
||||
description = "Honcho Server"
|
||||
authors = [
|
||||
{name = "Plastic Labs", email = "hello@plasticlabs.ai"},
|
||||
|
|
|
|||
|
|
@ -117,7 +117,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="2.3.1",
|
||||
version="2.3.2",
|
||||
contact={
|
||||
"name": "Plastic Labs",
|
||||
"url": "https://honcho.dev",
|
||||
|
|
|
|||
Loading…
Reference in New Issue