From 6b28db6ac1f7ff967a57110ff46ec326dceffae0 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Tue, 28 Oct 2025 20:31:14 +0100 Subject: [PATCH] nginxMainline: 1.29.2 -> 1.29.3 Changes: ``` Changes with nginx 1.29.3 28 Oct 2025 *) Feature: the "add_header_inherit" and "add_trailer_inherit" directives. *) Feature: the $request_port and $is_request_port variables. *) Feature: the $ssl_sigalg and $ssl_client_sigalg variables. *) Feature: the "volatile" parameter of the "geo" directive. *) Feature: now certificate compression is available with BoringSSL. *) Bugfix: now certificate compression is disabled with OCSP stapling. ``` --- pkgs/servers/http/nginx/mainline.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/nginx/mainline.nix b/pkgs/servers/http/nginx/mainline.nix index d1187a82477c..160921fca63d 100644 --- a/pkgs/servers/http/nginx/mainline.nix +++ b/pkgs/servers/http/nginx/mainline.nix @@ -1,6 +1,6 @@ { callPackage, ... }@args: callPackage ./generic.nix args { - version = "1.29.2"; - hash = "sha256-Vmnjwp1Jv39utXcnW4bv5FBM+Br4hcWKHtfS57hJJDc="; + version = "1.29.3"; + hash = "sha256-m+/M7RLuCcL04Thdfo4hyR8aWmOxlvePiXwtBEuMkxI="; }