rails/activejob/CHANGELOG.md

66 lines
2.3 KiB
Markdown
Raw Normal View History

* All tests now respect the `active_job.queue_adapter` config
Previously if you had set `config.active_job.queue_adapter` in your `config/application.rb`
or `config/environments/test.rb` file, the adapter you selected was previously not used consistently
across all tests. In some tests your adapter would be used, but other tests would use the `TestAdapter`.
In Rails 7.2, all tests will respect the `queue_adapter` config if provided. If no config is provided,
the `TestAdapter` will continue to be used.
See [#48585](https://github.com/rails/rails/pull/48585) for more details.
*Alex Ghiculescu*
* Make Active Job transaction aware when used conjointly with Active Record.
A common mistake with Active Job is to enqueue jobs from inside a transaction,
causing them to potentially be picked and ran by another process, before the
transaction is committed, which may result in various errors.
```ruby
Topic.transaction do
topic = Topic.create(...)
NewTopicNotificationJob.perform_later(topic)
end
```
Now Active Job will automatically defer the enqueuing to after the transaction is committed,
and drop the job if the transaction is rolled back.
Various queue implementations can choose to disable this behavior, and users can disable it,
or force it on a per job basis:
```ruby
class NewTopicNotificationJob < ApplicationJob
self.enqueue_after_transaction_commit = :never # or `:always` or `:default`
end
```
*Jean Boussier*, *Cristian Bica*
* Do not trigger immediate loading of `ActiveJob::Base` when loading `ActiveJob::TestHelper`.
*Maxime Réty*
* Preserve the serialized timezone when deserializing `ActiveSupport::TimeWithZone` arguments.
*Joshua Young*
* Remove deprecated `:exponentially_longer` value for the `:wait` in `retry_on`.
*Rafael Mendonça França*
* Remove deprecated support to set numeric values to `scheduled_at` attribute.
*Rafael Mendonça França*
* Deprecate `Rails.application.config.active_job.use_big_decimal_serialize`.
*Rafael Mendonça França*
* Remove deprecated primitive serializer for `BigDecimal` arguments.
*Rafael Mendonça França*
2023-09-27 03:08:31 +00:00
Please check [7-1-stable](https://github.com/rails/rails/blob/7-1-stable/activejob/CHANGELOG.md) for previous changes.