summaryrefslogtreecommitdiffstats
path: root/nixos/doc
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-2103.xml53
1 files changed, 51 insertions, 2 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2103.xml b/nixos/doc/manual/release-notes/rl-2103.xml
index d08f81eaf701..38bf69afa8b6 100644
--- a/nixos/doc/manual/release-notes/rl-2103.xml
+++ b/nixos/doc/manual/release-notes/rl-2103.xml
@@ -108,6 +108,15 @@
</para>
</listitem>
<listitem>
+ <para>
+ The <varname>networking.wireless.iwd</varname> module now installs
+ the upstream-provided 80-iwd.link file, which sets the NamePolicy=
+ for all wlan devices to "keep kernel", to avoid race conditions
+ between iwd and networkd. If you don't want this, you can set
+ <literal>systemd.network.links."80-iwd" = lib.mkForce {}</literal>.
+ </para>
+ </listitem>
+ <listitem>
<para>
<literal>rubyMinimal</literal> was removed due to being unused and
unusable. The default ruby interpreter includes JIT support, which makes
@@ -178,6 +187,30 @@
</listitem>
<listitem>
<para>
+ The uWSGI server is now built with POSIX capabilities. As a consequence,
+ root is no longer required in emperor mode and the service defaults to
+ running as the unprivileged <literal>uwsgi</literal> user. Any additional
+ capability can be added via the new option
+ <xref linkend="opt-services.uwsgi.capabilities"/>.
+ The previous behaviour can be restored by setting:
+<programlisting>
+ <xref linkend="opt-services.uwsgi.user"/> = "root";
+ <xref linkend="opt-services.uwsgi.group"/> = "root";
+ <xref linkend="opt-services.uwsgi.instance"/> =
+ {
+ uid = "uwsgi";
+ gid = "uwsgi";
+ };
+</programlisting>
+ </para>
+ <para>
+ Another incompatibility from the previous release is that vassals running under a
+ different user or group need to use <literal>immediate-{uid,gid}</literal>
+ instead of the usual <literal>uid,gid</literal> options.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
<package>btc1</package> has been abandoned upstream, and removed.
</para>
</listitem>
@@ -321,8 +354,8 @@
</listitem>
<listitem>
<para>
- <package>fish-foreign-env</package> is now an alias for the
- <package>fishPlugins.foreign-env</package> package, in which the fish
+ The <package>fish-foreign-env</package> package has been replaced with
+ <package>fishPlugins.foreign-env</package>, in which the fish
functions have been relocated to the
<literal>vendor_functions.d</literal> directory to be loaded automatically.
</para>
@@ -353,6 +386,22 @@ http://some.json-exporter.host:7979/probe?target=https://example.com/some/json/e
official documentation</link> of the json_exporter.
</para>
</listitem>
+ <listitem>
+ <para>
+ Androidenv was updated, removing the <literal>includeDocs</literal> and <literal>lldbVersions</literal>
+ arguments. Docs only covered a single version of the Android SDK, LLDB is now bundled with the NDK,
+ and both are no longer available to download from the Android package repositories. Additionally, since
+ the package lists have been updated, some older versions of Android packages may not be bundled. If you
+ depend on older versions of Android packages, we recommend overriding the repo.
+ </para>
+ <para>
+ Android packages are now loaded from a repo.json file created by parsing Android repo XML files. The arguments
+ <literal>repoJson</literal> and <literal>repoXmls</literal> have been added to allow overriding the built-in
+ androidenv repo.json with your own. Additionally, license files are now written to allow compatibility
+ with Gradle-based tools, and the <literal>extraLicenses</literal> argument has been added to accept more
+ SDK licenses if your project requires it. See the androidenv documentation for more details.
+ </para>
+ </listitem>
</itemizedlist>
</section>