Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.7.0

### Features
- Add Support for Opencode.
- Add support for Agent aliases
- Explicitly support AmazonQ
- Bump NEXT.JS version

## v0.6.3

- CI fixes.
Expand Down
2 changes: 1 addition & 1 deletion chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
"start": "next start",
"storybook": "storybook dev -p 6006"
},
"version": "0.6.3"
"version": "0.7.0"
}
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package version

var Version = "0.6.3"
var Version = "0.7.0"
14 changes: 7 additions & 7 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
"info": {
"description": "HTTP API for Claude Code, Goose, and Aider.\n\nhttps://github.com/coder/agentapi",
"title": "AgentAPI",
"version": "0.6.3"
"version": "0.7.0"
},
"openapi": "3.1.0",
"paths": {
Expand All @@ -326,10 +326,10 @@
{
"properties": {
"data": {
"$ref": "#/components/schemas/MessageUpdateBody"
"$ref": "#/components/schemas/StatusChangeBody"
},
"event": {
"const": "message_update",
"const": "status_change",
"description": "The event name.",
"type": "string"
},
Expand All @@ -346,16 +346,16 @@
"data",
"event"
],
"title": "Event message_update",
"title": "Event status_change",
"type": "object"
},
{
"properties": {
"data": {
"$ref": "#/components/schemas/StatusChangeBody"
"$ref": "#/components/schemas/MessageUpdateBody"
},
"event": {
"const": "status_change",
"const": "message_update",
"description": "The event name.",
"type": "string"
},
Expand All @@ -372,7 +372,7 @@
"data",
"event"
],
"title": "Event status_change",
"title": "Event message_update",
"type": "object"
}
]
Expand Down
Loading