puma 7.0.0 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +7 -3
- data/lib/puma/const.rb +1 -1
- data/lib/puma/events.rb +15 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e662aa9214837e2d08713550a828fe7ae8bdefe1eac79c9def581a6e089745b
|
4
|
+
data.tar.gz: 70dab329bbcf71e4ae4da042591eb8311de4c729e3c8d334d7c0ddc20bcf7aa4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 379e3b2c89c03169805ec2c67e4ab43bb9af1a32d23a8f5f58dc0fc3d958ca34bdcc7390d656613357a5dbb86c1f8fa9b403d40e95cecb518a4c7b2415e65a05
|
7
|
+
data.tar.gz: 2981fa2d413989754a70c0c3a2df62a0efbcb8529b66cf78d6df917751d220bdd7b842ece6536ed789547b063b83498eb1c81bb37507e2289a8728929bfbcf34
|
data/History.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
## 7.0.
|
1
|
+
## 7.0.1 / 2025-09-06
|
2
|
+
|
3
|
+
* Bugfixes
|
4
|
+
* Add backward compatibility aliases for Events class methods ([#3725])
|
5
|
+
|
6
|
+
## 7.0.0 / 2025-09-03
|
2
7
|
|
3
8
|
* Breaking changes
|
4
9
|
* Set default `max_keep_alive` to 999 ([#3719])
|
@@ -30,7 +35,6 @@
|
|
30
35
|
* Feature/support custom logger with request logs ([#3140])
|
31
36
|
|
32
37
|
* Bugfixes
|
33
|
-
* Fixes a bug where triggering hooks in the ThreadPool fails ([#3716])
|
34
38
|
* Fix error_logger inproperly logging `env[QUERY_STRING]` ([#3713], [#3625])
|
35
39
|
* Fix handling of invalid Transfer-Encoding header errors ([#3702])
|
36
40
|
* Fix socket leak on monitor wakeup `NoMethodError` in `Reactor#select_loop` ([#3696], [#3695])
|
@@ -2215,6 +2219,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
2215
2219
|
* Bugfixes
|
2216
2220
|
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
|
2217
2221
|
|
2222
|
+
[#3725]:https://github.com/puma/puma/pull/3725 "PR by @tannakartikey, merged 2025-09-05"
|
2218
2223
|
[#3719]:https://github.com/puma/puma/pull/3719 "PR by @schneems, merged 2025-09-03"
|
2219
2224
|
[#3378]:https://github.com/puma/puma/pull/3378 "PR by @shayonj, merged 2025-08-19"
|
2220
2225
|
[#3377]:https://github.com/puma/puma/pull/3377 "PR by @joshuay03, merged 2025-08-12"
|
@@ -2229,7 +2234,6 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
2229
2234
|
[#3101]:https://github.com/puma/puma/pull/3101 "PR by @ioquatix, merged 2025-08-25"
|
2230
2235
|
[#3681]:https://github.com/puma/puma/pull/3681 "PR by @byroot, merged 2025-08-15"
|
2231
2236
|
[#3140]:https://github.com/puma/puma/pull/3140 "PR by @phyzical, merged 2025-08-12"
|
2232
|
-
[#3716]:https://github.com/puma/puma/pull/3716 "PR by @yuki24, merged 2025-08-31"
|
2233
2237
|
[#3713]:https://github.com/puma/puma/pull/3713 "PR by @MSP-Greg, merged 2025-08-29"
|
2234
2238
|
[#3625]:https://github.com/puma/puma/pull/3625 "PR by @bhooshiek-narendiran, closed 2025-08-29"
|
2235
2239
|
[#3702]:https://github.com/puma/puma/pull/3702 "PR by @marshall-lee, merged 2025-08-25"
|
data/lib/puma/const.rb
CHANGED
@@ -100,7 +100,7 @@ module Puma
|
|
100
100
|
# too taxing on performance.
|
101
101
|
module Const
|
102
102
|
|
103
|
-
PUMA_VERSION = VERSION = "7.0.
|
103
|
+
PUMA_VERSION = VERSION = "7.0.1"
|
104
104
|
CODE_NAME = "Romantic Warrior"
|
105
105
|
|
106
106
|
PUMA_SERVER_STRING = ["puma", PUMA_VERSION, CODE_NAME].join(" ").freeze
|
data/lib/puma/events.rb
CHANGED
@@ -42,6 +42,21 @@ module Puma
|
|
42
42
|
register(:after_stopped, &block)
|
43
43
|
end
|
44
44
|
|
45
|
+
def on_booted(&block)
|
46
|
+
Puma.deprecate_method_change :on_booted, __callee__, :after_booted
|
47
|
+
after_booted(&block)
|
48
|
+
end
|
49
|
+
|
50
|
+
def on_restart(&block)
|
51
|
+
Puma.deprecate_method_change :on_restart, __callee__, :before_restart
|
52
|
+
before_restart(&block)
|
53
|
+
end
|
54
|
+
|
55
|
+
def on_stopped(&block)
|
56
|
+
Puma.deprecate_method_change :on_stopped, __callee__, :after_stopped
|
57
|
+
after_stopped(&block)
|
58
|
+
end
|
59
|
+
|
45
60
|
def fire_after_booted!
|
46
61
|
fire(:after_booted)
|
47
62
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.
|
4
|
+
version: 7.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Phoenix
|
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '0'
|
147
147
|
requirements: []
|
148
|
-
rubygems_version: 3.
|
148
|
+
rubygems_version: 3.6.9
|
149
149
|
specification_version: 4
|
150
150
|
summary: A Ruby/Rack web server built for parallelism.
|
151
151
|
test_files: []
|