|
1 | 1 | ## _unreleased_ |
2 | | -[full changelog](https://github.com/nevans/resque-pool/compare/v0.7.1...master). |
3 | | - |
4 | | -* Removed CI testing for ruby 2.3 (EOL). Added for 2.7. |
| 2 | +[full changelog](https://github.com/nevans/resque-pool/compare/v0.8.0...master). |
| 3 | + |
| 4 | +## 0.8.0 (2020-01-08) |
| 5 | +[full changelog](https://github.com/nevans/resque-pool/compare/v0.7.1...v0.8.0). |
| 6 | + |
| 7 | +## What's Changed |
| 8 | + |
| 9 | +### Breaking Changes |
| 10 | +* **💥 Minimum resque version is now 2.2** _(1.22 is no longer supported)_ by [@nevans] in https://github.com/resque/resque-pool/pull/261 |
| 11 | +* **💥 Minimum ruby version is now 3.0** _(2.0 is no longer supported)_ by [@nevans] in https://github.com/resque/resque-pool/pull/262 |
| 12 | + |
| 13 | +### Added |
| 14 | +* Introduce siginfo-hook and SIGINFO 29 signal handling by [@Overbryd] in https://github.com/resque/resque-pool/pull/191 |
| 15 | +* Support a dynamic sleep INTERVAL by [@mdkent] in https://github.com/resque/resque-pool/pull/251 |
| 16 | + Requires `resque` 3.0+. See https://github.com/resque/resque/pull/1920. |
| 17 | + |
| 18 | +### Fixed |
| 19 | +* fix typo in log message by [@rilian] in https://github.com/resque/resque-pool/pull/193 |
| 20 | +* 🐛 Fix `Logging.reopen_logs!` for ruby 3.4+ by [@nevans] in https://github.com/resque/resque-pool/pull/257 |
| 21 | +* 🐛 Fix `--lock FILE` options parser setup by [@nevans] in https://github.com/resque/resque-pool/pull/265 |
| 22 | + |
| 23 | +### Documentation |
| 24 | +* 📚 Update README for old redis gem by [@nevans] in https://github.com/resque/resque-pool/pull/266 |
| 25 | +* 📚 Update CI badge in README by {@nevans} in https://github.com/resque/resque-pool/pull/267 |
| 26 | +* 📚 Rearrange/improve CLI options help text by [@nevans] in https://github.com/resque/resque-pool/pull/270 |
| 27 | +* 📚 Update resque-pool(1) manpage by [@nevans] in https://github.com/resque/resque-pool/pull/271 |
| 28 | + |
| 29 | +### Miscellaneous |
| 30 | +* Convert to Github actions by [@nevans] in https://github.com/resque/resque-pool/pull/203 |
| 31 | +* Adding code scanning action by [@nevans] in https://github.com/resque/resque-pool/pull/210 |
| 32 | +* ⬆️ 💎 Add ruby 3.2 to the CI metrix by [@nevans] in https://github.com/resque/resque-pool/pull/244 |
| 33 | +* ⬆️ 💎 Add ruby 3.3 to the CI metrix by [@nevans] in https://github.com/resque/resque-pool/pull/245 |
| 34 | +* ✅ Test different versions of resque and redis by [@nevans] in https://github.com/resque/resque-pool/pull/246 |
| 35 | +* Update gemspec metadata by @nevans in https://github.com/resque/resque-pool/pull/247 |
| 36 | +* ⬆️ Bump actions/checkout from 3 to 4 by @dependabot[bot] in https://github.com/resque/resque-pool/pull/242 |
| 37 | +* ⬆️ Bump github/codeql-action from 2 to 3 by @dependabot[bot] in https://github.com/resque/resque-pool/pull/249 |
| 38 | +* ⬆️ Bump actions/checkout from 4 to 5 by @dependabot[bot] in https://github.com/resque/resque-pool/pull/250 |
| 39 | +* ⬆️ Bump github/codeql-action from 3 to 4 by @dependabot[bot] in https://github.com/resque/resque-pool/pull/252 |
| 40 | +* ⬆️ Update CI matrix with modern versions by [@nevans] in https://github.com/resque/resque-pool/pull/254 |
| 41 | +* ⬆️ Bump actions/checkout from 5 to 6 by @dependabot[bot] in https://github.com/resque/resque-pool/pull/253 |
| 42 | +* ✅ Trigger CI for every PR by [@nevans] in https://github.com/resque/resque-pool/pull/255 |
| 43 | +* ⬆️(deps): Update resque requirement from `>= 1.22, < 3 to >= 1.22, < 4` by @dependabot[bot] in https://github.com/resque/resque-pool/pull/256 |
| 44 | +* ✅ Cut CI matrix in half: only one OS per resque by [@nevans] in https://github.com/resque/resque-pool/pull/260 |
| 45 | +* ✅⬆️ Add resque 3.0 to CI matrix by [@nevans] in https://github.com/resque/resque-pool/pull/258 |
| 46 | +* 📦 Add releases.yml to assist with release notes by [@nevans] in https://github.com/resque/resque-pool/pull/264 |
| 47 | +* ⬆️ Upgrade ronn to ronn-ng (dev dependency) by [@nevans] in https://github.com/resque/resque-pool/pull/263 |
| 48 | +* ✅⬆️ Add ruby 4.0 to CI matrix by [@nevans] in https://github.com/resque/resque-pool/pull/259 |
| 49 | +* 🔒 Configure Trusted Publisher by [@nevans] in https://github.com/resque/resque-pool/pull/269 |
| 50 | + |
| 51 | +## New Contributors |
| 52 | +* [@rilian] made their first contribution in https://github.com/resque/resque-pool/pull/193 |
| 53 | +* [@Overbryd] made their first contribution in https://github.com/resque/resque-pool/pull/191 |
| 54 | +* [@mdkent] made their first contribution in https://github.com/resque/resque-pool/pull/251 |
| 55 | + |
| 56 | +[@Overbryd]: https://github.com/Overbryd |
| 57 | +[@mdkent]: https://github.com/mdkent |
| 58 | +[@nevans]: https://github.com/nevans |
| 59 | +[@rilian]: https://github.com/rilian |
| 60 | + |
| 61 | +**Full Changelog**: https://github.com/resque/resque-pool/compare/v0.7.1...v0.8.0 |
5 | 62 |
|
6 | 63 | ## 0.7.1 (2020-01-08) |
7 | 64 | [full changelog](https://github.com/nevans/resque-pool/compare/v0.7.0...v0.7.1). |
@@ -78,7 +135,6 @@ Some more merges of long outstanding pull requests. |
78 | 135 |
|
79 | 136 | * _EVEN BETTER_ `TERM` support for Heroku than 0.4.0. ;) |
80 | 137 | * _DOCKER SUPPORT_ (don't go crazy when master pid is 1). |
81 | | - _(example Dockerfile soon?)_ |
82 | 138 | * `--spawn_delay` option in case workers respawn too quickly |
83 | 139 | * Support `RUN_AT_EXIT_HOOKS`. |
84 | 140 | * And [more](https://github.com/nevans/resque-pool/compare/v0.4.0...v0.5.0). |
|
0 commit comments