File rubygem-activejob-7.0.changes of Package rubygem-activejob-7.0
-------------------------------------------------------------------
Mon Nov 4 15:58:34 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>
- ## Rails 7.0.8.6 (October 23, 2024) ##
* No changes.
## Rails 7.0.8.5 (October 15, 2024) ##
* No changes.
-------------------------------------------------------------------
Fri Jun 21 09:14:04 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>
- ## Rails 7.0.8.4 (June 04, 2024) ##
* No changes.
## Rails 7.0.8.3 (May 17, 2024) ##
* No changes.
## Rails 7.0.8.2 (May 16, 2024) ##
* No changes.
## Rails 7.0.8.1 (February 21, 2024) ##
* No changes.
-------------------------------------------------------------------
Thu Nov 2 15:33:09 UTC 2023 - Dan Čermák <dan.cermak@posteo.net>
- ## Rails 7.0.8 (September 09, 2023) ##
* Fix Active Job log message to correctly report a job failed to enqueue
when the adapter raises an `ActiveJob::EnqueueError`.
*Ben Sheldon*
## Rails 7.0.7.2 (August 22, 2023) ##
* No changes.
## Rails 7.0.7.1 (August 22, 2023) ##
* No changes.
## Rails 7.0.7 (August 09, 2023) ##
* No changes.
## Rails 7.0.6 (June 29, 2023) ##
* Fix error Active Job passed class with `permitted?`.
*Alex Baldwin*
-------------------------------------------------------------------
Tue Jun 27 19:31:08 UTC 2023 - Mykola Krachkovsky <w01dnick@gmail.com>
- updated to version 7.0.5.1
* https://rubyonrails.org/2023/6/26/Rails-Versions-7-0-5-1-6-1-7-4-have-been-released
-------------------------------------------------------------------
Mon Jun 26 19:11:25 UTC 2023 - Mykola Krachkovsky <w01dnick@gmail.com>
- updated to version 7.0.5
* https://rubyonrails.org/2023/5/24/Rails-7-0-5-has-been-released
-------------------------------------------------------------------
Fri Apr 21 11:21:11 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>
- Update to version 7.0.4.3:
https://rubyonrails.org/2023/3/13/Rails-7-0-4-3-and-6-1-7-3-have-been-released
https://rubyonrails.org/2023/1/24/Rails-7-0-4-2-and-6-1-7-2-have-been-released
https://rubyonrails.org/2023/1/17/Rails-Versions-6-0-6-1-6-1-7-1-7-0-4-1-have-been-released
-------------------------------------------------------------------
Mon Oct 10 12:53:24 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 7.0.4
see installed CHANGELOG.md
## Rails 7.0.4 (September 09, 2022) ##
* Update `ActiveJob::QueueAdapters::QueAdapter` to remove deprecation warning.
Remove a deprecation warning introduced in que 1.2 to prepare for changes in
que 2.0 necessary for Ruby 3 compatibility.
*Damir Zekic* and *Adis Hasovic*
-------------------------------------------------------------------
Thu Aug 4 12:51:28 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 7.0.3.1
see installed CHANGELOG.md
## Rails 7.0.3.1 (July 12, 2022) ##
* No changes.
-------------------------------------------------------------------
Sun May 15 15:18:14 UTC 2022 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 7.0.3
* Add missing `bigdecimal` require in `ActiveJob::Arguments`
Could cause `uninitialized constant ActiveJob::Arguments::BigDecimal (NameError)`
when loading Active Job in isolation.
*Jean Boussier*
-------------------------------------------------------------------
Thu Apr 28 05:12:00 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 7.0.2.4
see installed CHANGELOG.md
## Rails 7.0.2.4 (April 26, 2022) ##
* No changes.
-------------------------------------------------------------------
Thu Mar 10 13:20:47 UTC 2022 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 7.0.2.3
* no changes
-------------------------------------------------------------------
Tue Feb 15 07:10:02 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 7.0.2.2
see installed CHANGELOG.md
## Rails 7.0.2.2 (February 11, 2022) ##
* No changes.
## Rails 7.0.2.1 (February 11, 2022) ##
* No changes.
## Rails 7.0.2 (February 08, 2022) ##
* No changes.
-------------------------------------------------------------------
Tue Jan 25 06:22:57 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 7.0.1
see installed CHANGELOG.md
## Rails 7.0.1 (January 06, 2022) ##
* Allow testing `discard_on/retry_on ActiveJob::DeserializationError`
Previously in `perform_enqueued_jobs`, `deserialize_arguments_if_needed`
was called before calling `perform_now`. When a record no longer exists
and is serialized using GlobalID this led to raising
an `ActiveJob::DeserializationError` before reaching `perform_now` call.
This behaviour makes difficult testing the job `discard_on/retry_on` logic.
Now `deserialize_arguments_if_needed` call is postponed to when `perform_now`
is called.
Example:
```ruby
class UpdateUserJob < ActiveJob::Base
discard_on ActiveJob::DeserializationError
def perform(user)
# ...
end
end
# In the test
User.destroy_all
assert_nothing_raised do
perform_enqueued_jobs only: UpdateUserJob
end
```
*Jacopo Beschi*
-------------------------------------------------------------------
Mon Dec 27 11:23:45 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- Don't limit building to specific ruby versions
-------------------------------------------------------------------
Tue Dec 21 22:08:20 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- Rails 7.0 has been released
https://edgeguides.rubyonrails.org/7_0_release_notes.html
-------------------------------------------------------------------
Sun Dec 12 21:59:59 UTC 2021 - Marcus Rueckert <mrueckert@suse.de>
- initial package