chore: bump rpc versions and add missing changelog (#8453)

This commit is contained in:
Yat Ho
2026-02-12 15:03:11 +08:00
committed by GitHub
parent 6d85eba3d5
commit 47906e3fca
3 changed files with 11 additions and 2 deletions

View File

@@ -1095,3 +1095,12 @@ Transmission 4.1.0 (`rpc_version_semver` 6.0.0, `rpc_version`: 18)
| `session_set` | :bomb: renamed `cache_size_mb` to `cache_size_mib`
| `session_get` | :bomb: renamed `tolerated` to `allowed` in `encryption`
| `session_set` | :bomb: renamed `tolerated` to `allowed` in `encryption`
Transmission 4.1.1 (`rpc_version_semver` 6.0.1, `rpc_version`: 19)
| Method | Description
|:---|:---
| `session_get` | `speed_limit_down` reverted to return an integer
| `session_get` | `speed_limit_up` reverted to return an integer
| `group_get` | `speed_limit_down` reverted to return an integer
| `group_get` | `speed_limit_up` reverted to return an integer

View File

@@ -180,7 +180,7 @@ namespace
namespace
{
auto constexpr RecentlyActiveSeconds = time_t{ 60 };
auto constexpr RpcVersion = int64_t{ 18 };
auto constexpr RpcVersion = int64_t{ 19 };
auto constexpr RpcVersionMin = int64_t{ 14 };
enum class TrFormat : uint8_t

View File

@@ -15,7 +15,7 @@ struct tr_variant;
auto inline constexpr TrRpcVersionSemver = std::string_view{ #major "." #minor "." #patch }; \
auto inline constexpr TrRpcVersionSemverMajor = major;
RPC_VERSION_VARS(6, 0, 0)
RPC_VERSION_VARS(6, 0, 1)
#undef RPC_VERSION_VARS