nomad: default to nomad_1_3, add to release notes

This commit is contained in:
Maxine Aubrey 2022-08-16 01:10:00 +02:00
parent 07730a7b49
commit b474599529
No known key found for this signature in database
GPG key ID: F6FE033DFCB899F7
3 changed files with 9 additions and 3 deletions

View file

@ -479,6 +479,12 @@
dbus service.
</para>
</listitem>
<listitem>
<para>
The <literal>nomad</literal> package now defaults to 1.3,
which no longer has a downgrade path to releases 1.2 or older.
</para>
</listitem>
</itemizedlist>
</section>
</section>

View file

@ -165,4 +165,6 @@ Use `configure.packages` instead.
- There is a new module for the `xfconf` program (the Xfce configuration storage system), which has a dbus service.
- The `nomad` package now defaults to 1.3, which no longer has a downgrade path to releases 1.2 or older.
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->

View file

@ -9032,7 +9032,7 @@ with pkgs;
noip = callPackage ../tools/networking/noip { };
nomad = nomad_1_2;
nomad = nomad_1_3;
# Nomad never updates major go versions within a release series and is unsupported
# on Go versions that it did not ship with. Due to historic bugs when compiled
@ -9040,11 +9040,9 @@ with pkgs;
# Upstream partially documents used Go versions here
# https://github.com/hashicorp/nomad/blob/master/contributing/golang.md
nomad_1_2 = callPackage ../applications/networking/cluster/nomad/1.2.nix {
# pinned due to build failure or vendoring problems. When unpinning double check with: nix-build -A $name.go-modules --rebuild
buildGoModule = buildGo117Module;
};
nomad_1_3 = callPackage ../applications/networking/cluster/nomad/1.3.nix {
# pinned due to build failure or vendoring problems. When unpinning double check with: nix-build -A $name.go-modules --rebuild
buildGoModule = buildGo118Module;
};