From 9da1d6b397f03f28637513f80cbc184e30a0d34f Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 6 Nov 2023 18:38:21 -0600 Subject: [PATCH] [Release] 22.32.1 --- CHANGELOG.md | 6 ++++++ common/database/database_update_manifest.cpp | 1 + common/version.h | 2 +- package.json | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8a29631f..a32f92671 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [22.32.1] - 11/6/2023 + +### Hotfix + +* Adjust spawn2_disabled migration to copy data over + ## [22.32.0] - 11/6/2023 ### Bots diff --git a/common/database/database_update_manifest.cpp b/common/database/database_update_manifest.cpp index f025be169..1787337a0 100644 --- a/common/database/database_update_manifest.cpp +++ b/common/database/database_update_manifest.cpp @@ -5005,6 +5005,7 @@ ADD UNIQUE INDEX(`varname`); .match = "", .sql = R"( CREATE TABLE `spawn2_backup_2023_10_29` LIKE `spawn2`; +INSERT INTO `spawn2_backup_2023_10_29` SELECT * FROM `spawn2`; CREATE TABLE `spawn2_disabled` ( `id` bigint(11) NOT NULL AUTO_INCREMENT, `spawn2_id` int(11) DEFAULT NULL, diff --git a/common/version.h b/common/version.h index 446b9986f..da4010592 100644 --- a/common/version.h +++ b/common/version.h @@ -25,7 +25,7 @@ // Build variables // these get injected during the build pipeline -#define CURRENT_VERSION "22.32.0-dev" // always append -dev to the current version for custom-builds +#define CURRENT_VERSION "22.32.1-dev" // always append -dev to the current version for custom-builds #define LOGIN_VERSION "0.8.0" #define COMPILE_DATE __DATE__ #define COMPILE_TIME __TIME__ diff --git a/package.json b/package.json index 37ee327d6..65e1f9d18 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eqemu-server", - "version": "22.32.0", + "version": "22.32.1", "repository": { "type": "git", "url": "https://github.com/EQEmu/Server.git"