Files
Hermes-ui/packages/client/src/data/changelog.ts
T
ekko 50122c5ff8 feat: v0.5.16 - migrate to Responses API (#586)
* refactor: migrate from /v1/runs to /v1/responses streaming API

Replace EventSource-based polling with direct SSE streaming via the
/v1/responses endpoint across all server-side callers (chat-run-socket,
context-compressor, gateway-client, agent-clients). Messages are now
written to DB in real-time during streaming, eliminating post-run sync.
Frontend chat store adds tool_call_id tracking for deduplication.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

* chore: bump version to 0.5.16 and add changelog

- Persist real API usage to usage table on response.completed
- Remove unused codex_reasoning_items field from message schema
- Fix unused variable warnings in chat-run-socket
- Bump version to 0.5.16
- Add changelog entries for 0.5.16 (8 locales)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 02:49:58 +08:00

155 lines
3.3 KiB
TypeScript

export interface ChangelogEntry {
version: string
date: string
changes: string[]
}
export const changelog: ChangelogEntry[] = [
{
version: '0.5.16',
date: '2026-05-10',
changes: [
'changelog.new_0_5_16_1',
'changelog.new_0_5_16_2',
'changelog.new_0_5_16_3',
'changelog.new_0_5_16_4',
],
},
{
version: '0.5.15',
date: '2026-05-09',
changes: [
'changelog.new_0_5_15_1',
'changelog.new_0_5_15_2',
'changelog.new_0_5_15_3',
'changelog.new_0_5_15_4',
'changelog.new_0_5_15_5',
'changelog.new_0_5_15_6',
'changelog.new_0_5_15_7',
'changelog.new_0_5_15_8',
'changelog.new_0_5_15_9',
'changelog.new_0_5_15_10',
'changelog.new_0_5_15_11',
],
},
{
version: '0.5.14',
date: '2026-05-07',
changes: [
'changelog.new_0_5_14_1',
'changelog.new_0_5_14_2',
'changelog.new_0_5_14_3',
'changelog.new_0_5_14_4',
'changelog.new_0_5_14_5',
],
},
{
version: '0.5.13',
date: '2026-05-07',
changes: [
'changelog.new_0_5_13_1',
'changelog.new_0_5_13_2',
'changelog.new_0_5_13_3',
'changelog.new_0_5_13_4',
'changelog.new_0_5_13_5',
'changelog.new_0_5_13_6',
'changelog.new_0_5_13_7',
'changelog.new_0_5_13_8',
'changelog.new_0_5_13_9',
'changelog.new_0_5_13_10',
],
},
{
version: '0.5.12',
date: '2026-05-06',
changes: [
'changelog.new_0_5_12_1',
'changelog.new_0_5_12_2',
'changelog.new_0_5_12_3',
'changelog.new_0_5_12_4',
'changelog.new_0_5_12_5',
'changelog.new_0_5_12_6',
],
},
{
version: '0.5.11',
date: '2026-05-05',
changes: [
'changelog.new_0_5_10_1',
'changelog.new_0_5_10_2',
'changelog.new_0_5_10_3',
'changelog.new_0_5_10_4',
'changelog.new_0_5_10_5',
],
},
{
version: '0.5.9',
date: '2026-05-04',
changes: [
'changelog.new_0_5_9_1',
'changelog.new_0_5_9_2',
],
},
{
version: '0.5.8',
date: '2026-05-03',
changes: [
'changelog.new_0_5_8_1',
'changelog.new_0_5_8_2',
'changelog.new_0_5_8_3',
'changelog.new_0_5_8_4',
'changelog.new_0_5_8_5',
],
},
{
version: '0.5.7',
date: '2026-05-02',
changes: [
'changelog.new_0_5_7_1',
'changelog.new_0_5_7_2',
'changelog.new_0_5_7_3',
],
},
{
version: '0.5.6',
date: '2026-05-02',
changes: [
'changelog.new_0_5_6_1',
'changelog.new_0_5_6_2',
'changelog.new_0_5_6_3',
'changelog.new_0_5_6_4',
'changelog.new_0_5_6_5',
'changelog.new_0_5_6_6',
'changelog.new_0_5_6_7',
'changelog.new_0_5_6_8',
],
},
{
version: '0.5.5',
date: '2026-05-01',
changes: [
'changelog.new_0_5_5_1',
'changelog.new_0_5_5_2',
'changelog.new_0_5_5_3',
'changelog.new_0_5_5_4',
'changelog.new_0_5_5_5',
'changelog.new_0_5_5_6',
'changelog.new_0_5_5_7',
'changelog.new_0_5_5_8',
],
},
{
version: '0.5.4',
date: '2026-05-01',
changes: [
'changelog.new_0_5_4_1',
'changelog.new_0_5_4_2',
'changelog.new_0_5_4_3',
'changelog.new_0_5_4_4',
'changelog.new_0_5_4_5',
'changelog.new_0_5_4_6',
'changelog.new_0_5_4_7',
],
},
]