Skip to content

Commit

Permalink
bump preferred nginx
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Dec 6, 2024
1 parent a5234b6 commit 6b8f7a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Release 6.0.24 (Not yet released)
-------------
* [Nginx] Upgrades preferred Nginx to 1.26.2 from 1.26.1.
* [Enterprise] Smarter rolling restarts for better performance and reliability. We changed the way we route requests. Instead of picking the least-busy process, we now first prioritize new processes first. During a rolling restart, this new behavior leads to more efficient utilization of application caches, faster validation of new rollouts, and faster recovery from problematic deployments. Closes GH-2551.
* Fix a regression from 6.0.10 where running `passenger-config system-properties` would throw an error. Closes GH-2565.
* [Enterprise] Fix a memory corruption-related crash that could occur during rolling restarting.
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.24'

# Tip: find the SHA-256 with ./dev/nginx_version_sha256 <VERSION>
PREFERRED_NGINX_VERSION = '1.26.1'
NGINX_SHA256_CHECKSUM = 'f9187468ff2eb159260bfd53867c25ff8e334726237acf227b9e870e53d3e36b'
PREFERRED_NGINX_VERSION = '1.26.2'
NGINX_SHA256_CHECKSUM = '627fe086209bba80a2853a0add9d958d7ebbdffa1a8467a5784c9a6b4f03d738'

# 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.26.1'
PACKAGING_NGINX_SHA256_CHECKSUM = 'f9187468ff2eb159260bfd53867c25ff8e334726237acf227b9e870e53d3e36b'
PACKAGING_PREFERRED_NGINX_VERSION = '1.26.2'
PACKAGING_NGINX_SHA256_CHECKSUM = '627fe086209bba80a2853a0add9d958d7ebbdffa1a8467a5784c9a6b4f03d738'

# sha256sum of the .tar.gz
PREFERRED_PCRE_VERSION = '10.39'
Expand Down

0 comments on commit 6b8f7a8

Please sign in to comment.