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
11 changes: 11 additions & 0 deletions docs/docs/releasenotes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ sidebar_position: 200

# Release Notes

### v0.12.4 — Nov 21, 2025

Quick patch release with bug fixes and minor improvements.

- New `term:macoptionismeta` setting for macOS to treat Option key as Meta key in terminal
- Fixed directory tracking for zsh shells
- Fixed editor copy operations
- Minor Wave AI improvements (image handling, scrolling, focus)
- Package updates and dependency upgrades
- WIP: WaveApps builder framework (not yet released)

### v0.12.3 — Nov 17, 2025

Patch release with Wave AI model upgrade, new secret management features, and improved terminal input handling.
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/onboarding/onboarding-common.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2025, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0

export const CurrentOnboardingVersion = "v0.12.3";
export const CurrentOnboardingVersion = "v0.12.4";
2 changes: 1 addition & 1 deletion frontend/app/onboarding/onboarding-upgrade-patch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const versions: VersionConfig[] = [
nextText: "Next (v0.12.3)",
},
{
version: "v0.12.3",
version: "v0.12.4",
content: () => <UpgradeOnboardingModal_v0_12_3_Content />,
prevText: "Prev (v0.12.2)",
},
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/waveapputil/waveapputil.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/wavetermdev/waveterm/tsunami/build"
)

const DefaultTsunamiSdkVersion = "v0.12.3"
const DefaultTsunamiSdkVersion = "v0.12.4"

func GetTsunamiScaffoldPath() string {
settings := wconfig.GetWatcher().GetFullConfig().Settings
Expand Down
3 changes: 3 additions & 0 deletions pkg/wavebase/wavebase.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,9 @@ var osReleaseOnce = &sync.Once{}
var osRelease string

func unameKernelRelease() string {
if runtime.GOOS == "windows" {
return "-"
}
ctx, cancelFn := context.WithTimeout(context.Background(), 2*time.Second)
defer cancelFn()
out, err := exec.CommandContext(ctx, "uname", "-r").CombinedOutput()
Expand Down
4 changes: 0 additions & 4 deletions pkg/wcloud/wcloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,6 @@ func SendAllTelemetry(clientId string) error {
if err != nil {
return err
}
err = sendTelemetry(clientId)
if err != nil {
return err
}
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion tsunami/cmd/main-tsunami.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const (
EnvTsunamiScaffoldPath = "TSUNAMI_SCAFFOLDPATH"
EnvTsunamiSdkReplacePath = "TSUNAMI_SDKREPLACEPATH"
EnvTsunamiNodePath = "TSUNAMI_NODEPATH"
TsunamiSdkVersion = "v0.12.3"
TsunamiSdkVersion = "v0.12.4"
)

// these are set at build time
Expand Down
Loading