release: prepare agent 0.6.7

This commit is contained in:
benya
2026-07-30 02:16:04 +03:00
parent 2cc1a515e4
commit 3e60abed50
11 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# OpenWrt RMM Agent
Current stable Go agent: `0.6.6`. It reports runtime health, pending command results,
Current stable Go agent: `0.6.7`. It reports runtime health, pending command results,
and the last heartbeat transport error after connectivity is restored. Its OpenWrt
dependency uses the virtual `ip` provider, so either `ip-tiny` or `ip-full` can satisfy it.
Production package upgrades restart an already running agent so the new binary takes effect.
+1 -1
View File
@@ -24,7 +24,7 @@ import (
"time"
)
const agentVersion = "0.6.6"
const agentVersion = "0.6.7"
type agentRuntimeHealth struct {
StartedAt time.Time
+1 -1
View File
@@ -12,7 +12,7 @@ import (
)
func TestAgentVersionIsStable(t *testing.T) {
if agentVersion != "0.6.6" {
if agentVersion != "0.6.7" {
t.Fatalf("unexpected agent version %q", agentVersion)
}
}
+2 -2
View File
@@ -67,7 +67,7 @@ application to the router. Do not copy or install the shell runtime at the same
cd dist/rmm-openwrt-25.12.4-ramips-mt7621
sha256sum -c SHA256SUMS
scp \
rmm-agent-go-production-0.6.6-r1.apk \
rmm-agent-go-production-0.6.7-r1.apk \
luci-app-rmm-agent-0.2.1-r2.apk \
root@ROUTER_IP:/tmp/
```
@@ -76,7 +76,7 @@ Then install the locally built, unsigned packages over SSH:
```sh
apk add --allow-untrusted \
/tmp/rmm-agent-go-production-0.6.6-r1.apk \
/tmp/rmm-agent-go-production-0.6.7-r1.apk \
/tmp/luci-app-rmm-agent-0.2.1-r2.apk
/etc/init.d/rpcd restart
/etc/init.d/uhttpd restart
@@ -2,7 +2,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=rmm-agent-go-production
PKG_VERSION:=0.6.6
PKG_VERSION:=0.6.7
PKG_RELEASE:=1
PKG_MAINTAINER:=RMM OpenWrt
+1 -1
View File
@@ -2,7 +2,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=rmm-agent-go
PKG_VERSION:=0.6.6
PKG_VERSION:=0.6.7
PKG_RELEASE:=1
PKG_MAINTAINER:=RMM OpenWrt