1. 01 9月, 2020 8 次提交
  2. 31 8月, 2020 6 次提交
  3. 30 8月, 2020 4 次提交
  4. 27 8月, 2020 19 次提交
  5. 26 8月, 2020 3 次提交
    • E
      Deprecate custom Action Mailer delivery job: · 859f3bf0
      Edouard CHIN 提交于
      - Action Mailer delivery job should modify their `perform` method
        signature in order to receive the new payload that Action Mailer
        sends.
      
        Before:
      
        ```ruby
          def perform(mailer, mail_method, delivery_method, *args)
          end
        ```
      
        After:
      
        ```ruby
          def perform(mailer, mail_method, delivery_method, args:)
          end
        ```
      
        This new behaviour was introduced couple years ago in a attempt to
        get rid of the necessity to have a different job for paramterized
        mailers. A deprecation was introduced for custom jobs inheriting
        from `ActionMailer::DeliveryJob` but for jobs that didn't it went
        unnoticed.
        The deprecated behaviour was supposed to be removed in Rails 6.1
        but we couldn't and it got reverted https://github.com/rails/rails/pull/39257
      859f3bf0
    • J
      Rename prefix to in_* and update CHANGELOG · a2535d9f
      Jason York 提交于
      a2535d9f
    • J
      Add ActiveSupport::Duration conversion methods · 7bd96037
      Jason York 提交于
      7bd96037