Skip to content

Commit

Permalink
gnat: 12.4.0 -> 13.3.0
Browse files Browse the repository at this point in the history
This matches the default gcc version.
  • Loading branch information
sternenseemann committed Nov 8, 2024
1 parent 2581423 commit 9c075c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions nixos/doc/manual/release-notes/rl-2411.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@
Also be aware that if you have set additional options in `services.wstunnel.{clients,servers}.<name>.extraArgs`,
they may have been modified or removed upstream.

- `gnat` and `gnatPackages` now use GNAT 13 instead of GNAT 12. This matches
the default `gcc` version.

- `percona-server_8_4` and `mysql84` now have password authentication via the deprecated `mysql_native_password` disabled by default. This authentication plugin can be enabled via a CLI argument again, for detailed instructions and alternative authentication methods [see upstream documentation](https://dev.mysql.com/doc/refman/8.4/en/native-pluggable-authentication.html). The config file directive `default_authentication_plugin` has been removed.

- Percona has decided not to follow the LTS/ Innovation release scheme of upstream MySQL and thus [will only create releases for MySQL LTS versions](https://www.percona.com/blog/no-mysql-9-x-innovation-releases-from-percona/). Hence, the package names `percona-server_lts`, `percona-server_innovation`, `percona-xtrabackup_lts` and `percona-xtrabackup_innovation` are deprecated.
Expand Down
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14491,7 +14491,7 @@ with pkgs;
enableLTO = false;
};

gnat = gnat12; # When changing this, update also gnatPackages
gnat = gnat13; # When changing this, update also gnatPackages

gnat11 = wrapCC (gcc11.cc.override {
name = "gnat";
Expand Down Expand Up @@ -14596,7 +14596,7 @@ with pkgs;
gnat12Packages = recurseIntoAttrs (callPackage ./ada-packages.nix { gnat = buildPackages.gnat12; });
gnat13Packages = recurseIntoAttrs (callPackage ./ada-packages.nix { gnat = buildPackages.gnat13; });
gnat14Packages = recurseIntoAttrs (callPackage ./ada-packages.nix { gnat = buildPackages.gnat14; });
gnatPackages = gnat12Packages;
gnatPackages = gnat13Packages;

inherit (gnatPackages)
gprbuild
Expand Down

0 comments on commit 9c075c8

Please sign in to comment.