Skip to content

Commit

Permalink
add release note for 0.4.2 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleLittleCloud authored Jul 10, 2024
1 parent b3432f9 commit 5863f03
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ChatRoom/ChatRoom.Github/IssueHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ public async Task<string> SearchIssuesAsync(
string state)
{
WriteLine($"Searching issues in {this.repoOwner}/{this.repoName} with query: {query}");
var request = new SearchIssuesRequest(query);
var request = query switch
{
_ when string.IsNullOrEmpty(query) => new SearchIssuesRequest(),
_ => new SearchIssuesRequest(query),
};
request.In = [
IssueInQualifier.Title,
IssueInQualifier.Body,
Expand Down
18 changes: 18 additions & 0 deletions website/release_notes/0_4.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## [0.4.2](https://github.com/LittleLittleCloud/Agent-ChatRoom/milestone/7) πŸŽ‰
### πŸš€ New Features
- **[Issue #109](https://github.com/LittleLittleCloud/Agent-ChatRoom/issues/109)**: [chat-topbar]: Allow invoking the next speaker by clicking the agent tag
- **[Issue #102](https://github.com/LittleLittleCloud/Agent-ChatRoom/issues/102)**: Add ChatRoom.Planner, which includes:
- react-planner: Use reflection/reasoning to generate the next step for multi-agent groups
- react-orchestrator: work with react-planner to orchestrate the group chat

### 🌟 Improvements
- **[Issue #113](https://github.com/LittleLittleCloud/Agent-ChatRoom/issues/113)**: Enable editing non-user message
- **[Issue #110](https://github.com/LittleLittleCloud/Agent-ChatRoom/issues/110)**: Move `StopAsync` and `DeployAsync` into ChatRoomAgentCommand class to reduce code duplication
- **[Issue #103](https://github.com/LittleLittleCloud/Agent-ChatRoom/issues/103)**: [ChatRoom.Github]: Improve issue-helper by:
- Adding repo owner and repo name in configuration
- Allow searching issues with selected milestone

### πŸ› Bug Fixes
- **[Issue #107](https://github.com/LittleLittleCloud/Agent-ChatRoom/issues/107)**: [chat-topbar] The agent tags doesn't break into multiple lines when it contains too many agents
- **[Issue #101](https://github.com/LittleLittleCloud/Agent-ChatRoom/issues/101)**: The vertical scrollbar is missing for message input box

## [0.4.1](https://github.com/LittleLittleCloud/Agent-ChatRoom/milestone/6) πŸŽ‰
### New features 🌟
- **[Issue #95](https://github.com/LittleLittleCloud/Agent-ChatRoom/issues/95)**: Added `create` command to `ChatRoom` CLI to improve the getting-started experience. This new command simplifies the process of setting up a new chat room.
Expand Down
2 changes: 1 addition & 1 deletion website/release_notes/toc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- namew: 0.4.*
- name: 0.4.*
href: 0_4.md

- name: 0.3.*
Expand Down

0 comments on commit 5863f03

Please sign in to comment.