aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMotive <42782517+motivewc@users.noreply.github.com>2024-09-01 11:53:13 -0400
committerGitHub <noreply@github.com>2024-09-01 17:53:13 +0200
commit45757d95c42883609e734123944091cee7592891 (patch)
treec58507b5c0ebbfa87b54aab83fe20a3aaada9937
parentcdca59ca4daf1edc250a96bd793cd8d4368e7f2e (diff)
Core: Add auth seed for macOS arm64 build 56421 (#30204)
-rw-r--r--sql/base/auth_database.sql4
-rw-r--r--sql/updates/auth/master/2024_08_31_01_auth.sql2
2 files changed, 5 insertions, 1 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql
index a2e85932a6f..7d6808fd248 100644
--- a/sql/base/auth_database.sql
+++ b/sql/base/auth_database.sql
@@ -774,6 +774,7 @@ INSERT INTO `build_auth_key` VALUES
(56380,'Win','x64','WoWC',0x4FB3D72D89F5FF01DD7F4E028494A4E6),
(56382,'Win','x64','WoW',0x67C36A3EF655534C58AD50942192BFDA),
(56382,'Win','x64','WoWC',0xA5BD7A1C33039F58CD45CD5C7EBDF122),
+(56421,'Mac','A64','WoW',0x5892FFABAEFDCECB0CFFAAA55D2F9B13),
(56421,'Win','x64','WoW',0x3BDFA9AA4B70041F2C8B8CDE3C8DC255),
(56421,'Win','x64','WoWC',0x0DDB8F8738647F3CD8FD585A3A78ED1B);
/*!40000 ALTER TABLE `build_auth_key` ENABLE KEYS */;
@@ -3197,7 +3198,8 @@ INSERT INTO `updates` VALUES
('2024_08_28_01_auth.sql','BC5D74553AF2D92606F55C1C462D2700FE73BD34','RELEASED','2024-08-28 14:55:05',0),
('2024_08_30_00_auth.sql','BD76942F1C29AAA2450E051E7CA552672B5E331B','RELEASED','2024-08-30 19:24:30',0),
('2024_08_30_01_auth.sql','0AAC95A9216114177AF0A3A7DE664D061FED21EA','RELEASED','2024-08-30 22:23:08',0),
-('2024_08_31_00_auth.sql','D10F12D25D526A2C5E12FCEA2DEB55C342879F06','RELEASED','2024-08-31 10:32:16',0);
+('2024_08_31_00_auth.sql','D10F12D25D526A2C5E12FCEA2DEB55C342879F06','RELEASED','2024-08-31 10:32:16',0),
+('2024_08_31_01_auth.sql','3ADC34DAE405697983EDDD32D0F3FC6F122CA819','RELEASED','2024-09-01 15:48:43',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;
diff --git a/sql/updates/auth/master/2024_08_31_01_auth.sql b/sql/updates/auth/master/2024_08_31_01_auth.sql
new file mode 100644
index 00000000000..40000076bbe
--- /dev/null
+++ b/sql/updates/auth/master/2024_08_31_01_auth.sql
@@ -0,0 +1,2 @@
+DELETE FROM build_auth_key WHERE `build` = 56421 AND `platform` = 'Mac' AND `arch` = 'A64' AND `type`='WoW';
+INSERT INTO build_auth_key VALUES (56421, 'Mac', 'A64', 'WoW', 0x5892FFABAEFDCECB0CFFAAA55D2F9B13);