puma 7.0.0-java → 7.0.1-java

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1949baa42905d743c05f0bbd075f5537913b6a588e0517269c4a1fca7f3383f5
4
- data.tar.gz: '077971ab1d3b3238122a17d862768e7e26d0761e8db4bbf8f2e4288d592059ae'
3
+ metadata.gz: 69d4fe6e08bfc4ea81063374e299c391062feb83cd1f05a93a244795af435534
4
+ data.tar.gz: cb8d177378160d56a9bda5d18eec33be2f6bb2e3cf565ff1ca2b3ca60ce2e034
5
5
  SHA512:
6
- metadata.gz: fea46720ba56f03f0043190d3d2fb827aaa514b34ee79dc86f14ebf8aa7caf0bde5d88d115d6cebe80411728f281fe95f748b47bd0901b1c731163d68c377db3
7
- data.tar.gz: 15bb0485ac40aa19cc80f69c0d34108eaca3d75a7ecb6eb4f11bcd6ca0c531d9ad9160e73cce9086ef464d89a7caaa09e9da0946099ea96a81eadfc1fd7db0c3
6
+ metadata.gz: beadf2630b6dbe6642261bb6e97118c0884264e4a2a89a07d3f77f0ef6e4b6f002640a4dd45bcb3be980b0b7c33af962299052036894c3cb108fc6ededc978a7
7
+ data.tar.gz: 42159af3361b75a011774631c637eb80d36484dda0613de6e10c6e0fdfdd0479158208fc049907e3c6eef6c12f0cca53ff86ec0688e6c5e51b5ef070bf0c1215
data/History.md CHANGED
@@ -1,4 +1,9 @@
1
- ## 7.0.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.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
Binary file
metadata CHANGED
@@ -1,21 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puma
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.0.1
5
5
  platform: java
6
6
  authors:
7
7
  - Evan Phoenix
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-09-03 00:00:00.000000000 Z
10
+ date: 2025-09-05 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
+ name: nio4r
13
14
  requirement: !ruby/object:Gem::Requirement
14
15
  requirements:
15
16
  - - "~>"
16
17
  - !ruby/object:Gem::Version
17
18
  version: '2.0'
18
- name: nio4r
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement