From 881b770cbb0ca2c31b5ccff3fc881ae15ab052eb Mon Sep 17 00:00:00 2001 From: Patrick Tulskie Date: Mon, 30 Dec 2024 11:56:09 -0500 Subject: [PATCH] Version 4.11.0 --- CHANGELOG.md | 16 ++++++++++++++++ lib/resque/scheduler/version.rb | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75e1b1c0..865f6ff1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ **ATTN**: This project uses [semantic versioning](http://semver.org/). +## [4.10.3] - 2024-12-30 +### Added +* Expose timeout for lock via environment variable configuration by @pmm4654 in #786 +* Add Ruby 3.3 to the CI matrix by @santiagorodriguez96 in #797 + +### Fixed +* Fix schedule hooks when enqueuing configured job by @codealchemy in #792 +* Fix undefined `header` method CI failures by @codealchemy in #793 + +### Documentation +* Fix typo by @dijonkitchen in #789 +* Fix links to generated docs by @dijonkitchen in #790 + +### Security +* Bump github/codeql-action from 2 to 3 by @dependabot in #785 + ## [4.10.2] - 2023-12-15 ### Fixed * Finish fixing CVE-2022-44303, XSS in delayed_schedules by @PatrickTulskie in #783 diff --git a/lib/resque/scheduler/version.rb b/lib/resque/scheduler/version.rb index 368e3f6c..b2c40958 100644 --- a/lib/resque/scheduler/version.rb +++ b/lib/resque/scheduler/version.rb @@ -2,6 +2,6 @@ module Resque module Scheduler - VERSION = '4.10.2'.freeze + VERSION = '4.11.0'.freeze end end