Skip to content

Commit facc165

Browse files
authored
mariadb: 10.5.28, 10.6.21, 10.11.11, 11.4.5 (#379600)
2 parents a70e492 + e5f5eff commit facc165

File tree

2 files changed

+24
-20
lines changed

2 files changed

+24
-20
lines changed

nixos/tests/mysql/mysql-autobackup.nix

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,23 @@ let
2020
meta.maintainers = [ lib.maintainers.aanderse ];
2121

2222
nodes.machine = {
23-
services.mysql = {
24-
inherit package;
25-
enable = true;
26-
initialDatabases = [
27-
{
28-
name = "testdb";
29-
schema = ./testdb.sql;
30-
}
31-
];
32-
};
23+
services = {
24+
mysql = {
25+
inherit package;
26+
enable = true;
27+
initialDatabases = [
28+
{
29+
name = "testdb";
30+
schema = ./testdb.sql;
31+
}
32+
];
33+
};
3334

34-
services.automysqlbackup.enable = true;
35-
automysqlbackup.settings.mysql_dump_port = "";
35+
automysqlbackup = {
36+
enable = true;
37+
settings.mysql_dump_port = "";
38+
};
39+
};
3640
};
3741

3842
testScript = ''

pkgs/servers/sql/mariadb/default.nix

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -365,26 +365,26 @@ self: {
365365
# see https://mariadb.org/about/#maintenance-policy for EOLs
366366
mariadb_105 = self.callPackage generic {
367367
# Supported until 2025-06-24
368-
version = "10.5.27";
369-
hash = "sha256-76ZPpfczuCKrGmeV4evBecFgwIaQ7Ncduh6w9hru3RQ=";
368+
version = "10.5.28";
369+
hash = "sha256-C1BwII2gEWZA8gvQhfETZSf5mMwjJocVvL81Lnt/PME=";
370370
inherit (self.darwin.apple_sdk.frameworks) CoreServices;
371371
};
372372
mariadb_106 = self.callPackage generic {
373373
# Supported until 2026-07-06
374-
version = "10.6.20";
375-
hash = "sha256-R/BavH2+uz8msx51AisbOWnbvEdSxK5wH4kgpgSJbUE=";
374+
version = "10.6.21";
375+
hash = "sha256-jX+XFps7ogRIWJZbjPwlQ2RADfQ+kFBC+S4kuPp7DZY=";
376376
inherit (self.darwin.apple_sdk.frameworks) CoreServices;
377377
};
378378
mariadb_1011 = self.callPackage generic {
379379
# Supported until 2028-02-16
380-
version = "10.11.10";
381-
hash = "sha256-sGp0ZQuDoWqpqwmJhEgrAo51sABnSxH/KIdyxhmm8CI=";
380+
version = "10.11.11";
381+
hash = "sha256-bynU1+QPxJr0oP5giYRQnvLRU9882K/kNZ3OPKDieJA=";
382382
inherit (self.darwin.apple_sdk.frameworks) CoreServices;
383383
};
384384
mariadb_114 = self.callPackage generic {
385385
# Supported until 2029-05-29
386-
version = "11.4.4";
387-
hash = "sha256-lvvS5uk/t+izc+6nXYW2/qV8DhEaAgkMu+/tUlmdx3s=";
386+
version = "11.4.5";
387+
hash = "sha256-/2WV+MSC+ZIeObl/oRIjd6afDcvZJVPGuQMsvw6bU1Q=";
388388
inherit (self.darwin.apple_sdk.frameworks) CoreServices;
389389
};
390390
}

0 commit comments

Comments
 (0)