mariadb: upgrade default from 10.11 to 11.4

This commit is contained in:
Simon Hauser
2025-10-17 09:25:15 +02:00
parent 182d535224
commit ca7df24e03
2 changed files with 3 additions and 1 deletions

View File

@@ -232,6 +232,8 @@
- `nodePackages.rimraf` has been removed, as it is a Javascript library, and packages that want to use it should depend directly on it instead. - `nodePackages.rimraf` has been removed, as it is a Javascript library, and packages that want to use it should depend directly on it instead.
- `mariadb` now defaults to `mariadb_114` instead of `mariadb_1011`, meaning the default version was upgraded from 10.11.x to 11.4.x. See the [upgrade notes](https://mariadb.com/kb/en/upgrading-from-mariadb-10-11-to-mariadb-11-4/) for potential issues.
## Other Notable Changes {#sec-nixpkgs-release-25.11-notable-changes} ## Other Notable Changes {#sec-nixpkgs-release-25.11-notable-changes}
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->

View File

@@ -9590,7 +9590,7 @@ with pkgs;
mariadb_114 mariadb_114
mariadb_118 mariadb_118
; ;
mariadb = mariadb_1011; mariadb = mariadb_114;
mariadb-embedded = mariadb.override { withEmbedded = true; }; mariadb-embedded = mariadb.override { withEmbedded = true; };
mongodb = hiPrio mongodb-7_0; mongodb = hiPrio mongodb-7_0;