From f050cfd54a84289ab4cff915fc33a75d1e08bc0d Mon Sep 17 00:00:00 2001 From: "Hongli Lai (Phusion)" Date: Thu, 29 Nov 2018 11:41:25 +0100 Subject: [PATCH] Bump preferred Nginx version to 1.15.7 --- CHANGELOG | 3 +-- src/ruby_supportlib/phusion_passenger.rb | 8 ++++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index eff7b8f5a..e73a40208 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,12 +2,11 @@ Release 6.0.0 ------------- * Introduces support for *all* programming languages. Yes that's right... Java, Elixir, Go — Passenger now supports them all! This effort is called "generic language support". - * Bumps the preferred Nginx version to 1.15.6. + * Bumps the preferred Nginx version to 1.15.7. * Introduces anonymous usage telemetry, which helps us improve Passenger. Please read the docs on what data is collected and how to disable this. * [Nginx] Introduces a new option "passenger_request_buffering on|off", to allow disabling request body buffering. This is only supported in Nginx >= 1.15.3. Closes GH-2121. - Release 5.3.7 ------------- diff --git a/src/ruby_supportlib/phusion_passenger.rb b/src/ruby_supportlib/phusion_passenger.rb index b3a7a9a95..13f485cfe 100644 --- a/src/ruby_supportlib/phusion_passenger.rb +++ b/src/ruby_supportlib/phusion_passenger.rb @@ -34,13 +34,13 @@ module PhusionPassenger VERSION_STRING = '6.0.0' # Tip: find the SHA-256 with ./dev/nginx_version_sha2 - PREFERRED_NGINX_VERSION = '1.15.6' - NGINX_SHA256_CHECKSUM = 'a3d8c67c2035808c7c0d475fffe263db8c353b11521aa7ade468b780ed826cc6' + PREFERRED_NGINX_VERSION = '1.15.7' + NGINX_SHA256_CHECKSUM = '8f22ea2f6c0e0a221b6ddc02b6428a3ff708e2ad55f9361102b1c9f4142bdf93' # Packaging may be locked to an older version due to the specific module configuration being # incompatible with the version we prefer (latest stable). - PACKAGING_PREFERRED_NGINX_VERSION = '1.15.6' - PACKAGING_NGINX_SHA256_CHECKSUM = 'a3d8c67c2035808c7c0d475fffe263db8c353b11521aa7ade468b780ed826cc6' + PACKAGING_PREFERRED_NGINX_VERSION = '1.15.7' + PACKAGING_NGINX_SHA256_CHECKSUM = '8f22ea2f6c0e0a221b6ddc02b6428a3ff708e2ad55f9361102b1c9f4142bdf93' # sha256sum of the .tar.gz PREFERRED_PCRE_VERSION = '8.42'