Skip to content

Commit

Permalink
Bump preferred Nginx version to 1.15.7
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Nov 29, 2018
1 parent cd130ad commit f050cfd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------

Expand Down
8 changes: 4 additions & 4 deletions src/ruby_supportlib/phusion_passenger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ module PhusionPassenger
VERSION_STRING = '6.0.0'

# Tip: find the SHA-256 with ./dev/nginx_version_sha2 <VERSION>
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'
Expand Down

0 comments on commit f050cfd

Please sign in to comment.