diff --git a/6.0-Upgrade.md b/6.0-Upgrade.md index 46957708..0eee1d67 100644 --- a/6.0-Upgrade.md +++ b/6.0-Upgrade.md @@ -37,6 +37,7 @@ Sidekiq 7 (releasing soon) introduces Capsules, which allows you to run a Sideki Check the following list to see if you're depending on any of these behaviors: +1. Configuration constants like `DefaultRackup` removed, see [#2928](https://github.com/puma/puma/pull/2928/files#diff-2dc4e3e83be7fd97cebc482ae07d6a8216944003de82458783fb00b5ae9524c8) for the full list. 1. We have changed the names of the following environment variables: `DISABLE_SSL` is now `PUMA_DISABLE_SSL`, `MAKE_WARNINGS_INTO_ERRORS` is now `PUMA_MAKE_WARNINGS_INTO_ERRORS`, and `WAIT_FOR_LESS_BUSY_WORKERS` is now `PUMA_WAIT_FOR_LESS_BUSY_WORKERS`. 1. Nakayoshi GC (`nakayoshi_fork` option in config) has been removed without replacement. 1. `wait_for_less_busy_worker` is now on by default. If you don't want to use this feature, you must add `wait_for_less_busy_worker false` in your config. diff --git a/History.md b/History.md index c30e8207..89b8ba81 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,4 @@ -## 6.0.0 / 2022-10-XX +## 6.0.0 / 2022-10-14 * Breaking Changes * Dropping Ruby 2.2 and 2.3 support (now 2.4+) ([#2919]) @@ -9,6 +9,7 @@ * Prefix all environment variables with `PUMA_` ([#2924], [#2853]) * Removed some constants ([#2957], [#2958], [#2959], [#2960]) * The following classes are now part of Puma's private API: `Client`, `Cluster::Worker`, `Cluster::Worker`, `HandleRequest`. ([#2988]) + * Configuration constants like `DefaultRackup` removed ([#2928]) * Features * Increase throughput on large (100kb+) response bodies by 3-10x ([#2896], [#2892]) @@ -1915,6 +1916,7 @@ be added back in a future date when a java Puma::MiniSSL is added. * Bugfixes * Your bugfix goes here (#Github Number) +[#2928]:https://github.com/puma/puma/pull/2928 "PR by @nateberkopec, merged 2022-09-10" [#2919]:https://github.com/puma/puma/pull/2919 "PR by @MSP-Greg, merged 2022-08-30" [#2652]:https://github.com/puma/puma/issues/2652 "Issue by @Roguelazer, closed 2022-09-04" [#2653]:https://github.com/puma/puma/pull/2653 "PR by @Roguelazer, closed 2022-03-07"