puma 4.3.5-java → 4.3.6-java

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puma might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41083aa6240de0486ebc512aeb1d250aa05f200a1a6ee5d663650668129c9754
4
- data.tar.gz: 8f054dccfee1ebdfacd4e54433d8bf0368172e3f9b049e19db4a86ec480b7e4b
3
+ metadata.gz: 4891b3e0d2c7fa2224e33911223bdeb443d2ce37e8ac8f837b199a72103f5f32
4
+ data.tar.gz: e646b0ee7e8d531b467994ead1d03ff6f68727529e73be9ce8ed71ad50c1006d
5
5
  SHA512:
6
- metadata.gz: 3d99587f8844add8799cf133c26c0c5f4b3ef680db2b290352981abddf014a4fd142582b6c3fa571e554a8d0634cd8daa4de98a1412cb3a1042b6d8aba9db30c
7
- data.tar.gz: 0d613cea6b70c720b98343957efbbf6df9c203ffd20eb2e740ef0496aeb7bc6605cccb2bd053e96bccdbe42e9c948583ef1d331a946761d920fa41632d37512d
6
+ metadata.gz: 996aa525831fc6a49d7b039189f4940a3bbb684a817f58303232dbfd004e5b83685c1a0955afcb255c3be30e235001b5c4d56c7e8be03d3db7d7e4d5cccd1249
7
+ data.tar.gz: 933a55a70a75b2727346fab1b8d98ebe54d4e7d45a8173eeae87d56469b7a17f7c150f7dca9650ef10ed9e32fa07bc82ccd8738e58269f23ec5bf27420a033d5
data/History.md CHANGED
@@ -1,11 +1,12 @@
1
- ## Master
2
-
3
- * Features
4
- * Your feature goes here (#Github Number)
1
+ ## 4.3.6 / 2020-09-05
5
2
 
6
3
  * Bugfixes
7
- * Your bugfix goes here (#Github Number)
4
+ * Explicitly include ctype.h to fix compilation warning and build error on macOS with Xcode 12 (#2304)
5
+ * Don't require json at boot (#2269)
6
+
7
+ ## 4.3.4/4.3.5 and 3.12.5/3.12.6 / 2020-05-22
8
8
 
9
+ Each patchlevel release contains a separate security fix. We recommend simply upgrading to 4.3.5/3.12.6.
9
10
 
10
11
  ## 4.3.3 and 3.12.4 / 2020-02-28
11
12
  * Bugfixes
@@ -10,6 +10,7 @@
10
10
  #include "ext_help.h"
11
11
  #include <assert.h>
12
12
  #include <string.h>
13
+ #include <ctype.h>
13
14
  #include "http11_parser.h"
14
15
 
15
16
  #ifndef MANAGED_STRINGS
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'json'
4
-
5
3
  module Puma
6
4
  module App
7
5
  # Check out {#call}'s source code to see what actions this web application
@@ -19,6 +17,10 @@ module Puma
19
17
  return rack_response(403, 'Invalid auth token', 'text/plain')
20
18
  end
21
19
 
20
+ if env['PATH_INFO'] =~ /\/(gc-stats|stats|thread-backtraces)$/
21
+ require 'json'
22
+ end
23
+
22
24
  case env['PATH_INFO']
23
25
  when /\/stop$/
24
26
  @cli.stop
@@ -100,7 +100,7 @@ module Puma
100
100
  # too taxing on performance.
101
101
  module Const
102
102
 
103
- PUMA_VERSION = VERSION = "4.3.5".freeze
103
+ PUMA_VERSION = VERSION = "4.3.6".freeze
104
104
  CODE_NAME = "Mysterious Traveller".freeze
105
105
  PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
106
106
 
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puma
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.5
4
+ version: 4.3.6
5
5
  platform: java
6
6
  authors:
7
7
  - Evan Phoenix
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-19 00:00:00.000000000 Z
11
+ date: 2020-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement