chore: Readme & Changelog Updates

This commit is contained in:
Vineeth Voruganti 2025-11-03 17:02:44 -05:00
parent 1d0934a568
commit 00d2f19d5f
8 changed files with 35 additions and 8 deletions

View File

@ -5,6 +5,19 @@ 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.4.2] - 2025-11-03
### Fixed
- Langfuse tracing to have readable waterfalls
- Alembic Migrations to match models.py
- message_in_seq report in webhook
### Changed
- Alembic to always use a session pooler
- Statement timeout during alembic operations to 5 min
## [2.4.1] - 2025-10-24
### Added

View File

@ -8,7 +8,7 @@
---
![Static Badge](https://img.shields.io/badge/Version-2.4.1-blue)
![Static Badge](https://img.shields.io/badge/Version-2.4.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 v2.4.1 (Current)
### Honcho API v2.4.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.4.1 (Current) | v1.5.0 | v1.5.0 |
| v2.4.2 (Current) | v1.5.0 | v1.5.0 |
| v2.4.1 | v1.5.0 | v1.5.0 |
| v2.4.0 | v1.5.0 | v1.5.0 |
| v2.3.3 | v1.4.1 | v1.4.1 |
| v2.3.2 | v1.4.0 | v1.4.0 |

View File

@ -27,7 +27,20 @@ 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.4.1 (Current)">
<Update label="v2.4.2 (Current)">
### Fixed
- Langfuse tracing to have readable waterfalls
- Alembic Migrations to match models.py
- message_in_seq report in webhook
### Changed
- Alembic to always use a session pooler
- Statement timeout during alembic operations to 5 min
</Update>
<Update label="v2.4.1">
### Added
- Alembic migration validation test suite

View File

@ -19,7 +19,7 @@
"navigation": {
"versions": [
{
"version": "v2.4.1",
"version": "v2.4.2",
"api": {
"openapi": [
"openapi.documented.yml"

View File

@ -1,6 +1,6 @@
[project]
name = "honcho"
version = "2.4.1"
version = "2.4.2"
description = "Honcho Server"
authors = [
{name = "Plastic Labs", email = "hello@plasticlabs.ai"},

View File

@ -123,7 +123,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.4.1",
version="2.4.2",
contact={
"name": "Plastic Labs",
"url": "https://honcho.dev",

View File

@ -673,7 +673,7 @@ wheels = [
[[package]]
name = "honcho"
version = "2.4.1"
version = "2.4.2"
source = { virtual = "." }
dependencies = [
{ name = "alembic" },