From a2cfb0f3a1035b8a4ab662729a32ad5842e86b35 Mon Sep 17 00:00:00 2001 From: Callum Jones Date: Tue, 18 Feb 2020 16:19:03 +0000 Subject: [PATCH 1/2] admin still must set deprecated group, as it will be overwritten by a following migration --- CHANGELOG.md | 10 ++++++++++ migrations.go | 2 ++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6caba9ff..3264186b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +v1.7.3-1 +-------- + +Fixes: + +* Fixes an issue where new multiserver setups of Server Manager would go into a redirect loop when creating new servers. + If you experienced this issue, please try setting the multiserver up from scratch (i.e. delete the shared_store.json and servers folders). + +--- + v1.7.3 ------ diff --git a/migrations.go b/migrations.go index 6b97eab22..443442ef7 100644 --- a/migrations.go +++ b/migrations.go @@ -132,6 +132,8 @@ func addAdminAccount(rs Store) error { account := NewAccount() account.Name = adminUserName account.DefaultPassword = "servermanager" + // DeprecatedGroup must be assigned to here, since a following migration will just re-set-up Groups. + account.DeprecatedGroup = GroupAdmin account.Groups[serverID] = GroupAdmin return rs.UpsertAccount(account) From d315f28173b69e7a950961284b62e766af03af07 Mon Sep 17 00:00:00 2001 From: Callum Jones Date: Tue, 18 Feb 2020 16:22:48 +0000 Subject: [PATCH 2/2] add changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3264186b2..6a06dd0eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ Fixes: * Fixes an issue where new multiserver setups of Server Manager would go into a redirect loop when creating new servers. If you experienced this issue, please try setting the multiserver up from scratch (i.e. delete the shared_store.json and servers folders). +* Fixes an issue where a Scheduled Custom Race may revert to an older copy when being started. +* Fallback Results now takes account of results files where a driver has laps but is in neither the Cars nor Results lists. ---