From d79f59d69dd91cd1ea401ad5e9051e74b1ce0ebf Mon Sep 17 00:00:00 2001 From: Nate Berkopec Date: Wed, 29 Mar 2023 15:38:52 +0900 Subject: [PATCH] 6.2.0 - Speaking of Now --- History.md | 20 ++++++++++++++++++++ lib/puma/const.rb | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/History.md b/History.md index b068594dc3..aa073e7965 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,16 @@ +## 6.2.0 / 2023-03-29 + +* Features + * Ability to supply a custom logger ([#2770], [#2511]) + * Warn when clustered-only hooks are defined in single mode ([#3089]) + * Adds the on_booted event ([#2709]) + +* Bugfixes + * Loggers - internal_write - catch Errno::EINVAL ([#3091]) + * commonlogger.rb - fix HIJACK time format, use constants, not strings ([#3074]) + * Fixed some edge cases regarding request hijacking ([#3072]) + + ## 6.1.1 / 2023-02-28 * Bugfixes @@ -1954,6 +1967,13 @@ be added back in a future date when a java Puma::MiniSSL is added. * Bugfixes * Your bugfix goes here (#Github Number) +[#2770]:https://github.com/puma/puma/pull/2770 "PR by @vzajkov, merged 2023-03-29" +[#2511]:https://github.com/puma/puma/issues/2511 "Issue by @jchristie55332, closed 2021-12-12" +[#3089]:https://github.com/puma/puma/pull/3089 "PR by @Vuta, merged 2023-03-06" +[#2709]:https://github.com/puma/puma/pull/2709 "PR by @rodzyn, merged 2023-02-20" +[#3091]:https://github.com/puma/puma/pull/3091 "PR by @MSP-Greg, merged 2023-03-28" +[#3074]:https://github.com/puma/puma/pull/3074 "PR by @MSP-Greg, merged 2023-03-14" +[#3072]:https://github.com/puma/puma/pull/3072 "PR by @MSP-Greg, merged 2023-02-17" [#3079]:https://github.com/puma/puma/pull/3079 "PR by @mohamedhafez, merged 2023-02-24" [#3080]:https://github.com/puma/puma/pull/3080 "PR by @MSP-Greg, merged 2023-02-16" [#3058]:https://github.com/puma/puma/pull/3058 "PR by @dentarg, merged 2023-01-29" diff --git a/lib/puma/const.rb b/lib/puma/const.rb index b39a38912e..59ac9de9d1 100644 --- a/lib/puma/const.rb +++ b/lib/puma/const.rb @@ -99,8 +99,8 @@ class UnsupportedOption < RuntimeError # too taxing on performance. module Const - PUMA_VERSION = VERSION = "6.1.1" - CODE_NAME = "The Way Up" + PUMA_VERSION = VERSION = "6.2.0" + CODE_NAME = "Speaking of Now" PUMA_SERVER_STRING = ["puma", PUMA_VERSION, CODE_NAME].join(" ").freeze