chore(release): release version 1.26.0 (minor)#7512
chore(release): release version 1.26.0 (minor)#7512github-actions[bot] wants to merge 5 commits intomainfrom
Conversation
goose Release Manual Testing ChecklistVersion: 1.26.0Make a copy of this document for each version and check off as steps are verified. Provider Testing
Starting ConversationsTest various ways to start a conversation:
RecipesCreate Recipe from Session
Use Existing Recipe
Recipe Management
Recipe from File
recipe:
title: test recipe again
description: testing recipe again
instructions: The value of test_param is {{test_param}}
prompt: What is the value of test_param?
parameters:
- key: test_param
input_type: string
requirement: required
description: Enter value for test_param
ExtensionsManual Extension Addition
Playwright Extension
Extension with Environment Variables
Speech-to-Text (Local Model)
Settings
Follow-up IssuesLink any GitHub issues filed during testing: Tested by: _____ |
macOS ARM64 Desktop App (Apple Silicon)📱 Download macOS Desktop App (arm64, unsigned) Instructions: The easiest way is to just run the following script:
script which will download the latest release (or you can specify the release you need), does the If you need to do this manually:
The signing step is only needed if you do something that uses mac entitlements like speech to text |
Co-authored-by: Douwe Osinga <douwe@squareup.com> Co-authored-by: Jack Amadeo <jackamadeo@block.xyz>
Add ENABLE_TOOL_PAIR_SUMMARIZATION constant set to false to disable the tool call/response summarization feature. The code is preserved and can be re-enabled by setting the flag back to true.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: bc50d11000
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| /// is the source of truth - use truncate/fork endpoints to modify conversation history instead. | ||
| #[serde(default)] | ||
| conversation_so_far: Option<Vec<Message>>, | ||
| override_conversation: Option<Vec<Message>>, |
There was a problem hiding this comment.
Accept legacy conversation_so_far field in ChatRequest
Renaming the request field to override_conversation without a serde alias makes /reply silently ignore conversation_so_far from older desktop builds or third-party clients, because unknown JSON fields are dropped during deserialization; those clients then run against server-stored history instead of the caller-provided history, which can change behavior in flows that depended on explicit conversation overrides. Keeping a backward-compatible alias during the transition would avoid this regression.
Useful? React with 👍 / 👎.
macOS ARM64 Desktop App (Apple Silicon)📱 Download macOS Desktop App (arm64, unsigned) Instructions: The easiest way is to just run the following script:
script which will download the latest release (or you can specify the release you need), does the If you need to do this manually:
The signing step is only needed if you do something that uses mac entitlements like speech to text |
Release v1.26.0
How to Release
Push the release tag to trigger the release:
git fetch && git tag v1.26.0 origin/release/1.26.0 git push origin v1.26.0This PR will auto-merge once the tag is pushed.
Important Notes
mainChanges in This Release
Comparing:
v1.25.0...v1.26.0This release PR was generated automatically.