passenger 6.0.21 → 6.0.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90f1e1bc52e55a73ecec3a43986b9bd90543267b64dae5d81c30322260a60bcd
4
- data.tar.gz: ab48a44989e4f30661c2f149fb7bb9ed1155a82c44752b351aa9d7caf5021833
3
+ metadata.gz: cf8796ca602a79def60593ff7881de810c3806c6eed5edcd77401d7226e81e83
4
+ data.tar.gz: 04c1c5114b75ab4dffe2cd42d62f5a1fef1d9600b6ba7fd28489f5b350661ab6
5
5
  SHA512:
6
- metadata.gz: 1541930bafaf6b29a215e2bae21af6ec97efaa367c837b09824d2cf53cf1aaa3878ba5a028d7054006598f115dc80bac2046e542adfb7e169691e5ccb5107930
7
- data.tar.gz: 07346e8767eb64c6fd052200d2fab65bb0f744aa11e70a47618b7a9a1d093784a5cb27db86289c2ca052f44ecdc0fa4e8139caf0a652e6edc071208b76c61fa1
6
+ metadata.gz: 791507cfb77d4d7b26f4e467927ae4e9761a861d3cb171d7bf13fd1bb93efbe0a8963a55ba67e3aec0006587f3814b44f0f4d1eecb73bdbd25162694285fb926
7
+ data.tar.gz: cd5231323420031e8af25388ebce3e287c5aad181f1a213a14f79fbf07f353bbfa525fbfc1b3b36b5161aec69e03f984c9e363ecf95ca2373347ad5c362ee72a
data/CHANGELOG CHANGED
@@ -1,4 +1,10 @@
1
- Release 6.0.21 (Not yet released)
1
+ Release 6.0.22 (Not yet released)
2
+ -------------
3
+ * [RPM] Fix dependency on selinux-policy. Closes GH-2545.
4
+ * Fix Amazon Linux detection. Closes GH-3296.
5
+
6
+
7
+ Release 6.0.21
2
8
  -------------
3
9
  * [Python] Fix version of Python when imp module is replaced with importlib. Contributed by Grigory Ponomarenko.
4
10
  * [Ubuntu] Remove packages for Ubuntu 23.10 "mantic".
@@ -7,9 +13,9 @@ Release 6.0.21 (Not yet released)
7
13
  * [RPM] The Passenger Nginx module rpm package for EL9 (RHEL, Rocky, Alma) will now require Nginx 1.24.0 as per the policy of supporting the newest Nginx module stream available.
8
14
  * [Standalone] Fixes security update checker with builtin engine.
9
15
  * [Enterprise] Ability to enforce hard memory limits on application processes (`PassengerHardMemoryLimit`/`passenger_hard_memory_limit`/`--hard-memory-limit``). Unlike the soft memory limit, the hard memory limit doesn't wait for the request to finish. Useful for preventing high memory usage from taking down the entire machine or container.
10
- * [Enterprise] Ability to throttle memory metrics collection (`PassengerAnalyticsCollectionRate`/`passenger_analytics_collection_rate`). This allows you to control the frequency that Passenger Enterpprise measures the app memory use at.
16
+ * [Enterprise] Ability to throttle memory metrics collection (`PassengerAnalyticsCollectionRate`/`passenger_analytics_collection_rate`). This allows you to control the frequency that Passenger Enterprise measures the app memory use at.
11
17
  * Swaps http-parser for llhttp.
12
- * Fixes crash-watch hanging when lldb is used as backend.
18
+ * Fixes crash-watch hanging when lldb is used as the backend.
13
19
  * Fixes Apache module unload crash due to not properly cleaning up all threads.
14
20
  * Workaround compilation error on clang on x86_64.
15
21
  * Upgrades Boost from 1.83 -> 1.85.
@@ -166,7 +166,7 @@ using namespace std;
166
166
  * security_update_checker_interval unsigned integer - default(86400)
167
167
  * security_update_checker_proxy_url string - -
168
168
  * security_update_checker_url string - default("https://securitycheck.phusionpassenger.com/v1/check.json")
169
- * server_software string - default("Phusion_Passenger/6.0.21")
169
+ * server_software string - default("Phusion_Passenger/6.0.22")
170
170
  * show_version_in_header boolean - default(true)
171
171
  * single_app_mode_app_root string - default,read_only
172
172
  * single_app_mode_app_start_command string - read_only
@@ -116,7 +116,7 @@ parseControllerBenchmarkMode(const StaticString &mode) {
116
116
  * multi_app boolean - default(true),read_only
117
117
  * request_freelist_limit unsigned integer - default(1024)
118
118
  * response_buffer_high_watermark unsigned integer - default(134217728)
119
- * server_software string - default("Phusion_Passenger/6.0.21")
119
+ * server_software string - default("Phusion_Passenger/6.0.22")
120
120
  * show_version_in_header boolean - default(true)
121
121
  * start_reading_after_accept boolean - default(true)
122
122
  * stat_throttle_rate unsigned integer - default(10)
@@ -154,7 +154,7 @@ using namespace std;
154
154
  * security_update_checker_interval unsigned integer - default(86400)
155
155
  * security_update_checker_proxy_url string - -
156
156
  * security_update_checker_url string - default("https://securitycheck.phusionpassenger.com/v1/check.json")
157
- * server_software string - default("Phusion_Passenger/6.0.21")
157
+ * server_software string - default("Phusion_Passenger/6.0.22")
158
158
  * setsid boolean - default(false)
159
159
  * show_version_in_header boolean - default(true)
160
160
  * single_app_mode_app_root string - default,read_only
@@ -83,7 +83,7 @@
83
83
  #define PASSENGER_API_VERSION_MAJOR 0
84
84
  #define PASSENGER_API_VERSION_MINOR 3
85
85
  #define PASSENGER_DEFAULT_USER "nobody"
86
- #define PASSENGER_VERSION "6.0.21"
86
+ #define PASSENGER_VERSION "6.0.22"
87
87
  #define POOL_HELPER_THREAD_STACK_SIZE 262144
88
88
  #define PROCESS_SHUTDOWN_TIMEOUT 60
89
89
  #define PROCESS_SHUTDOWN_TIMEOUT_DISPLAY "1 minute"
@@ -304,7 +304,7 @@ COMMON_LIBRARY = CommonLibraryBuilder.new do
304
304
  :category => :base,
305
305
  :optimize => :very_heavy,
306
306
  # Compiling with SSE2 causes segfaults on Amazon Linux 2
307
- :cflags => RbConfig::CONFIG['host_cpu'] == 'x86_64' && RbConfig::CONFIG['host_os'] == 'linux-gnu' ? ' -mno-sse2' : '',
307
+ :cflags => RbConfig::CONFIG['host_cpu'] == 'x86_64' && RbConfig::CONFIG['host_os'].include?('linux') ? ' -mno-sse2' : '',
308
308
  :strict_aliasing => false
309
309
  define_component 'IOTools/IOUtils.o',
310
310
  :source => 'IOTools/IOUtils.cpp',
@@ -31,7 +31,7 @@ module PhusionPassenger
31
31
 
32
32
  PACKAGE_NAME = 'passenger'
33
33
  # Run 'rake src/cxx_supportlib/Constants.h configkit_schemas_inline_comments' after changing this number.
34
- VERSION_STRING = '6.0.21'
34
+ VERSION_STRING = '6.0.22'
35
35
 
36
36
  # Tip: find the SHA-256 with ./dev/nginx_version_sha256 <VERSION>
37
37
  PREFERRED_NGINX_VERSION = '1.26.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: passenger
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.21
4
+ version: 6.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phusion - http://www.phusion.nl/
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-16 00:00:00.000000000 Z
11
+ date: 2024-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake