chore: Readme & Changelog Updates (#263)

* chore: Readme & Changelog Updates

* chore: (typos) Clarify Changelog
This commit is contained in:
Vineeth Voruganti 2025-11-04 10:41:58 -05:00 committed by GitHub
parent 1d0934a568
commit a25be3c136
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 45 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 correctly included in webhook payload
### 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,21 @@ 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 correctly included in webhook payload
### 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"},
@ -85,6 +85,15 @@ addopts = "--strict-markers --cov=src/ --cov=sdks/python/src/honcho --cov-report
testpaths = ["tests"]
pythonpath = ["src"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.basedpyright]
# BasedPyright currently seems like the best type checker option, much faster

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