Skip to content

Commit c1b277f

Browse files
⚡ 3.52.11 ⚡ : Minor fixes (Please, check release notes for more info)
1 parent 7ac6b92 commit c1b277f

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/core/syswarden-cli/cmd/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ var installCmd = &cobra.Command{
107107
fmt.Printf("[ERROR] Systemd setup failed: %v\n", err)
108108
}
109109

110-
fmt.Println("[SYSWARDEN] v3.52.10 Native Installation Complete.")
110+
fmt.Println("[SYSWARDEN] v3.52.11 Native Installation Complete.")
111111
},
112112
}
113113

src/core/syswarden-cli/config/default.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package config
22

33
const DefaultConfig = `# ==============================================================================
4-
# Version=v3.52.10
4+
# Version=v3.52.11
55
# SYSWARDEN UNATTENDED INSTALLATION CONFIGURATION
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

src/core/syswarden-cli/pkg/integration/webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func SetupWebhooks() error {
6363
Description: "Native Go Webhook integration established.",
6464
Color: 3066993, // Green
6565
Fields: []EmbedField{
66-
{Name: "Version", Value: "v3.52.10", Inline: true},
66+
{Name: "Version", Value: "v3.52.11", Inline: true},
6767
{Name: "NODE", Value: hostname, Inline: true},
6868
{Name: "Status", Value: "Active", Inline: true},
6969
},

src/core/syswarden-cli/pkg/system/upgrade.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
)
1212

13-
var Version = "v3.52.10"
13+
var Version = "v3.52.11"
1414

1515
func isRHEL() bool {
1616
_, errDnf := exec.LookPath("dnf")

src/core/syswarden-core/webhook/discord.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func SendBanAlert(ip, jail, action string) {
9999
{Name: "NODE", Value: hostname, Inline: true},
100100
},
101101
Footer: EmbedFooter{
102-
Text: "SYSWARDEN v3.52.10 - Advanced Agentic Defense",
102+
Text: "SYSWARDEN v3.52.11 - Advanced Agentic Defense",
103103
},
104104
Timestamp: time.Now().UTC().Format(time.RFC3339),
105105
},
@@ -167,7 +167,7 @@ func SendDetectedAlert(ip, jail, action string) {
167167
{Name: "NODE", Value: hostname, Inline: true},
168168
},
169169
Footer: EmbedFooter{
170-
Text: "SYSWARDEN v3.52.10 - Advanced Agentic Defense",
170+
Text: "SYSWARDEN v3.52.11 - Advanced Agentic Defense",
171171
},
172172
Timestamp: time.Now().UTC().Format(time.RFC3339),
173173
},

src/core/syswarden-tui/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
const DataFile = "/var/lib/syswarden/ui/data.json"
20-
const SysWardenVersion = "v3.52.10"
20+
const SysWardenVersion = "v3.52.11"
2121

2222
// --- DATA MODELS ---
2323
type Service struct {

0 commit comments

Comments
 (0)