Skip to content

Commit f621e61

Browse files
authored
v0.12.4 release notes (#2590)
also stop sending OLD telemetry events (new tevents still sent)
1 parent 8663778 commit f621e61

File tree

8 files changed

+20
-10
lines changed

8 files changed

+20
-10
lines changed

docs/docs/releasenotes.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ sidebar_position: 200
66

77
# Release Notes
88

9+
### v0.12.4 — Nov 21, 2025
10+
11+
Quick patch release with bug fixes and minor improvements.
12+
13+
- New `term:macoptionismeta` setting for macOS to treat Option key as Meta key in terminal
14+
- Fixed directory tracking for zsh shells
15+
- Fixed editor copy operations
16+
- Minor Wave AI improvements (image handling, scrolling, focus)
17+
- Package updates and dependency upgrades
18+
- WIP: WaveApps builder framework (not yet released)
19+
920
### v0.12.3 — Nov 17, 2025
1021

1122
Patch release with Wave AI model upgrade, new secret management features, and improved terminal input handling.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Copyright 2025, Command Line Inc.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
export const CurrentOnboardingVersion = "v0.12.3";
4+
export const CurrentOnboardingVersion = "v0.12.4";

frontend/app/onboarding/onboarding-upgrade-patch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const versions: VersionConfig[] = [
3838
nextText: "Next (v0.12.3)",
3939
},
4040
{
41-
version: "v0.12.3",
41+
version: "v0.12.4",
4242
content: () => <UpgradeOnboardingModal_v0_12_3_Content />,
4343
prevText: "Prev (v0.12.2)",
4444
},

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/waveapputil/waveapputil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/wavetermdev/waveterm/tsunami/build"
1717
)
1818

19-
const DefaultTsunamiSdkVersion = "v0.12.3"
19+
const DefaultTsunamiSdkVersion = "v0.12.4"
2020

2121
func GetTsunamiScaffoldPath() string {
2222
settings := wconfig.GetWatcher().GetFullConfig().Settings

pkg/wavebase/wavebase.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,9 @@ var osReleaseOnce = &sync.Once{}
344344
var osRelease string
345345

346346
func unameKernelRelease() string {
347+
if runtime.GOOS == "windows" {
348+
return "-"
349+
}
347350
ctx, cancelFn := context.WithTimeout(context.Background(), 2*time.Second)
348351
defer cancelFn()
349352
out, err := exec.CommandContext(ctx, "uname", "-r").CombinedOutput()

pkg/wcloud/wcloud.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,6 @@ func SendAllTelemetry(clientId string) error {
227227
if err != nil {
228228
return err
229229
}
230-
err = sendTelemetry(clientId)
231-
if err != nil {
232-
return err
233-
}
234230
return nil
235231
}
236232

tsunami/cmd/main-tsunami.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const (
1414
EnvTsunamiScaffoldPath = "TSUNAMI_SCAFFOLDPATH"
1515
EnvTsunamiSdkReplacePath = "TSUNAMI_SDKREPLACEPATH"
1616
EnvTsunamiNodePath = "TSUNAMI_NODEPATH"
17-
TsunamiSdkVersion = "v0.12.3"
17+
TsunamiSdkVersion = "v0.12.4"
1818
)
1919

2020
// these are set at build time

0 commit comments

Comments
 (0)