From 4a40cb17f2274b8d18258c80094f9538b566c004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Tri=C5=A1=C4=8D=C3=ADk?= Date: Mon, 6 May 2024 07:56:06 +0200 Subject: [PATCH] proto: Add kernel version to message GetMinerDetailsResponse - updated CHANGELOG.md --- CHANGELOG.md | 3 ++- proto/bos/v1/miner.proto | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6d19b9..3c5d5c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ * Introduced new field `last_share_time` in the `braiins.bos.v1.PoolStats` that provides info about last share time, * Introduced new field `token` in the `braiins.bos.v1.LoginResponse` that provides info created authentication token that was till now available only in response header, * Introduced new field `timeout_s` in the `braiins.bos.v1.LoginResponse` that provides info about authentication token expiration time, -* Introduced new method `GetNetworkInfo` in the `braiins.bos.v1.NetworkService` to get current network configuration for the default network interface. +* Introduced new method `GetNetworkInfo` in the `braiins.bos.v1.NetworkService` to get current network configuration for the default network interface, +* Introduced new field `kernel_version` in the `braiins.bos.v1.GetMinerDetailsResponse` that provides info about Kernel version. ## [1.0.0] - 2024-03-26 The first stable release of the Public API incorporates minor enhancements. diff --git a/proto/bos/v1/miner.proto b/proto/bos/v1/miner.proto index d935c40..f1abbf3 100644 --- a/proto/bos/v1/miner.proto +++ b/proto/bos/v1/miner.proto @@ -146,6 +146,8 @@ message GetMinerDetailsResponse { uint64 system_uptime_s = 11; // Miner status MinerStatus status = 12; + // Kernel version + string kernel_version = 13; } message MinerPowerStats {