chore(release): bump version to 1.32.0 (minor) (#8713)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Lifei Zhou <lifei@squareup.com>
This commit is contained in:
github-actions[bot]
2026-04-23 01:55:05 +00:00
committed by GitHub
parent b8c3b83c43
commit 3fbe01d3b6
7 changed files with 3856 additions and 1721 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
"license": {
"name": "Apache-2.0"
},
"version": "1.31.0"
"version": "1.32.0"
},
"paths": {
"/action-required/tool-confirmation": {
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "goose-app",
"productName": "Goose",
"version": "1.31.0",
"version": "1.32.0",
"description": "Goose App",
"engines": {
"node": "^24.10.0",
+6 -2
View File
@@ -595,7 +595,9 @@ const MentionPopover = forwardRef<
{isLoading ? (
<div className="flex items-center justify-center py-4">
<div className="animate-spin rounded-full h-4 w-4 border-t-2 border-b-2"></div>
<span className="ml-2 text-sm text-text-secondary">{intl.formatMessage(isSlashCommand ? i18n.loadingCommands : i18n.scanningFiles)}</span>
<span className="ml-2 text-sm text-text-secondary">
{intl.formatMessage(isSlashCommand ? i18n.loadingCommands : i18n.scanningFiles)}
</span>
</div>
) : (
<>
@@ -630,7 +632,9 @@ const MentionPopover = forwardRef<
{!isLoading && displayItems.length === 0 && query && (
<div className="p-4 text-center text-text-secondary text-sm">
{intl.formatMessage(isSlashCommand ? i18n.noCommandsFound : i18n.noItemsFound, { query })}
{intl.formatMessage(isSlashCommand ? i18n.noCommandsFound : i18n.noItemsFound, {
query,
})}
</div>
)}
</div>