Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
17 changes: 17 additions & 0 deletions docs/docs/releasenotes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ sidebar_position: 200

# Release Notes

### v0.11.5 — Aug 28, 2025

Another housekeeping release to modernize Wave and bring it more up to date.

* Wave AI Cloud Proxy now uses gpt-5-mini (upgraded from gpt-4o-mini)
* Fixed JWT issue with running "Wave Apps" from widgets
* Added an "$ENV:envvar:fallback" syntax to the config files to allow Wave's config to pick up values from the environment (mostly to allow moving secrets out of the config files)
* New setting to disable showing overlay blocknums when holding Ctrl:Shift (`app:showoverlayblocknums`)
* New setting to allow Shift-Enter to work with tools like Claude Code (`term:shiftenternewline`)
* Upgraded frontend to React 19
* Migrated more of the frontend to Tailwind v4 (work in progress)
* Removed Universal MacOS build. 90% of Mac users are now on Apple Silicon, so universal build is less important (has a larger file size, and complicates the build process).
* [bugfix] Removed build-ids in RPM build to try to fix conflicts with Slack
* Removed some Wave v7 aware upgrades and old code paths
* Internal cleanup, TypeScript errors, linting fixes, etc.
* Other assorted Go/npm package bumps

### v0.11.4 — Aug 19, 2025

Quick patch release to update packages, fix some security issues (with dependent packages), and some small bug fixes.
Expand Down
1 change: 1 addition & 0 deletions frontend/types/gotypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,7 @@ declare global {
"activity:fgminutes"?: number;
"activity:openminutes"?: number;
"app:firstday"?: boolean;
"app:firstlaunch"?: boolean;
"action:initiator"?: "keyboard" | "mouse";
"debug:panictype"?: string;
"block:view"?: string;
Expand Down
Loading