Unverified Commit 5776e998 authored by Janne Heß's avatar Janne Heß Committed by GitHub
Browse files

mariadb: upgrade default from 10.11 to 11.4 (#452844)

parents 9839e47f ca7df24e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -238,6 +238,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.

- `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}

<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
+1 −1
Original line number Diff line number Diff line
@@ -9570,7 +9570,7 @@ with pkgs;
    mariadb_114
    mariadb_118
    ;
  mariadb = mariadb_1011;
  mariadb = mariadb_114;
  mariadb-embedded = mariadb.override { withEmbedded = true; };

  mongodb = hiPrio mongodb-7_0;