mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.0 KiB
1.0 KiB
Rails 8.1.3 (March 24, 2026)
- No changes.
Rails 8.1.2.1 (March 23, 2026)
- No changes.
Rails 8.1.2 (January 08, 2026)
- No changes.
Rails 8.1.1 (October 28, 2025)
- No changes.
Rails 8.1.0 (October 22, 2025)
-
Add structured events for Action Mailer:
action_mailer.deliveredaction_mailer.processed
Gannon McGibbon
-
Add
deliver_all_laterto enqueue multiple emails at once.user_emails = User.all.map { |user| Notifier.welcome(user) } ActionMailer.deliver_all_later(user_emails) # use a custom queue ActionMailer.deliver_all_later(user_emails, queue: :my_queue)This can greatly reduce the number of round-trips to the queue datastore. For queue adapters that do not implement the
enqueue_allmethod, we fall back to enqueuing email jobs indvidually.fatkodima
Please check 8-0-stable for previous changes.