Skip to content

Commit 9c075c8

Browse files
gnat: 12.4.0 -> 13.3.0
This matches the default gcc version.
1 parent 2581423 commit 9c075c8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

nixos/doc/manual/release-notes/rl-2411.section.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,9 @@
245245
Also be aware that if you have set additional options in `services.wstunnel.{clients,servers}.<name>.extraArgs`,
246246
they may have been modified or removed upstream.
247247

248+
- `gnat` and `gnatPackages` now use GNAT 13 instead of GNAT 12. This matches
249+
the default `gcc` version.
250+
248251
- `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.
249252

250253
- 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.

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14491,7 +14491,7 @@ with pkgs;
1449114491
enableLTO = false;
1449214492
};
1449314493

14494-
gnat = gnat12; # When changing this, update also gnatPackages
14494+
gnat = gnat13; # When changing this, update also gnatPackages
1449514495

1449614496
gnat11 = wrapCC (gcc11.cc.override {
1449714497
name = "gnat";
@@ -14596,7 +14596,7 @@ with pkgs;
1459614596
gnat12Packages = recurseIntoAttrs (callPackage ./ada-packages.nix { gnat = buildPackages.gnat12; });
1459714597
gnat13Packages = recurseIntoAttrs (callPackage ./ada-packages.nix { gnat = buildPackages.gnat13; });
1459814598
gnat14Packages = recurseIntoAttrs (callPackage ./ada-packages.nix { gnat = buildPackages.gnat14; });
14599-
gnatPackages = gnat12Packages;
14599+
gnatPackages = gnat13Packages;
1460014600

1460114601
inherit (gnatPackages)
1460214602
gprbuild

0 commit comments

Comments
 (0)