Skip to content

Commit

Permalink
Bump version to 5.0.23, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Dec 21, 2015
1 parent 0753840 commit 91b5a91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG
Expand Up @@ -3,10 +3,10 @@ Release 5.0.23

* Fixes the request acceptor error handling timeout. When an error occurs while Passenger is accepting a request (for example, when Passenger has run out of file descriptors), Passenger is supposed to wait for 3 seconds before trying again. Because of a typo, Passenger actually waited 3 milliseconds.
* [Enterprise] Fixed a regression in the Passenger Standalone Nginx config template that breaks the Mass Deployment feature.
* Mime type for serving static xhtml files updated (no longer mobile profile, so it is recognized by desktop browsers). Closes GH-1695.
* Improves error messages about ruby native support to indicate the optional nature (Passenger works normally without).
* [Standalone, Nginx] When using the new `abort_websockets_on_process_shutdown`, Passenger waited for the app to close without signaling it that shutdown was in progress. Node.js apps now get a SIGINT. Closes GH-1702.
* With friendly error pages off Passenger would still show a trace (referencing only Passenger code) for unusual spawn errors. This was changed to a generic error message. Closes GH-1704.
* The mime type for serving static XHTML files is updated. We no longer use the mobile profile, so it is recognized by desktop browsers. Closes GH-1695.
* Improves error messages about Ruby native support to indicate the optional nature. Passenger is able to operate even without the native support extension, but that wasn't clear enough to some users, causing them to think of the old messages as errors.
* [Standalone, Nginx] When using the new `abort_websockets_on_process_shutdown` configuration option, Passenger waited for the app to close without signaling it that shutdown was in progress. Node.js apps now get a SIGINT. Closes GH-1702.
* With friendly error pages off Passenger would still show a trace (referencing only Passenger code) for unusual spawn errors. This has been changed to a generic error message. Closes GH-1704.


Release 5.0.22
Expand Down
2 changes: 1 addition & 1 deletion src/cxx_supportlib/Constants.h
Expand Up @@ -119,7 +119,7 @@

#define PASSENGER_DEFAULT_USER "nobody"

#define PASSENGER_VERSION "5.0.22"
#define PASSENGER_VERSION "5.0.23"

#define POOL_HELPER_THREAD_STACK_SIZE 262144

Expand Down
2 changes: 1 addition & 1 deletion src/ruby_supportlib/phusion_passenger.rb
Expand Up @@ -31,7 +31,7 @@ module PhusionPassenger

PACKAGE_NAME = 'passenger'
# Run 'rake src/cxx_supportlib/Constants.h' after changing this number.
VERSION_STRING = '5.0.22'
VERSION_STRING = '5.0.23'

PREFERRED_NGINX_VERSION = '1.8.0'
NGINX_SHA256_CHECKSUM = '23cca1239990c818d8f6da118320c4979aadf5386deda691b1b7c2c96b9df3d5'
Expand Down

0 comments on commit 91b5a91

Please sign in to comment.