CHANGELOG.md 5.6 KB
Newer Older
1 2 3 4 5 6 7
*   Support not to cache `nil` for `ActiveSupport::Cache#fetch`.

        cache.fetch('bar', skip_nil: true) { nil }
        cache.exist?('bar') # => false

    *Martin Hong*

A
Aaron Patterson 已提交
8
*   Add "event object" support to the notification system.
A
Aaron Patterson 已提交
9
    Before this change, end users were forced to create hand made artisanal
A
Aaron Patterson 已提交
10 11 12 13 14
    event objects on their own, like this:

        ActiveSupport::Notifications.subscribe('wait') do |*args|
          @event = ActiveSupport::Notifications::Event.new(*args)
        end
15

A
Aaron Patterson 已提交
16 17 18
        ActiveSupport::Notifications.instrument('wait') do
          sleep 1
        end
19

A
Aaron Patterson 已提交
20 21 22 23 24 25 26 27 28
        @event.duration # => 1000.138

    After this change, if the block passed to `subscribe` only takes one
    parameter, the framework will yield an event object to the block.  Now
    end users are no longer required to make their own:

        ActiveSupport::Notifications.subscribe('wait') do |event|
          @event = event
        end
29

A
Aaron Patterson 已提交
30 31 32
        ActiveSupport::Notifications.instrument('wait') do
          sleep 1
        end
33

A
Aaron Patterson 已提交
34 35 36 37 38 39 40 41
        p @event.allocations # => 7
        p @event.cpu_time    # => 0.256
        p @event.idle_time   # => 1003.2399

    Now you can enjoy event objects without making them yourself.  Neat!

    *Aaron "t.lo" Patterson*

42 43 44 45
*   Add cpu_time, idle_time, and allocations to Event

    *Eileen M. Uchitelle*, *Aaron Patterson*

K
Kasper Timm Hansen 已提交
46 47 48 49 50 51 52 53 54 55
*   RedisCacheStore: support key expiry in increment/decrement.

    Pass `:expires_in` to `#increment` and `#decrement` to set a Redis EXPIRE on the key.

    If the key is already set to expire, RedisCacheStore won't extend its expiry.

        Rails.cache.increment("some_key", 1, expires_in: 2.minutes)

    *Jason Lee*

U
utilum 已提交
56 57 58 59 60 61 62 63 64 65 66
*   Allow Range#=== and Range#cover? on Range

    `Range#cover?` can now accept a range argument like `Range#include?` and
    `Range#===`. `Range#===` works correctly on Ruby 2.6. `Range#include?` is moved
    into a new file, with these two methods.

    *Requiring active_support/core_ext/range/include_range is now deprecated.*
    *Use `require "active_support/core_ext/range/compare_range"` instead.*

    *utilum*

67 68 69 70 71 72 73 74 75 76 77
*   Add `index_with` to Enumerable.

    Allows creating a hash from an enumerable with the value from a passed block
    or a default argument.

        %i( title body ).index_with { |attr| post.public_send(attr) }
        # => { title: "hey", body: "what's up?" }

        %i( title body ).index_with(nil)
        # => { title: nil, body: nil }

78
    Closely linked with `index_by`, which creates a hash where the keys are extracted from a block.
79 80 81

    *Kasper Timm Hansen*

82
*   Fix bug where `ActiveSupport::Timezone.all` would fail when tzinfo data for
83
    any timezone defined in `ActiveSupport::TimeZone::MAPPING` is missing.
84 85 86

    *Dominik Sander*

87 88 89 90 91
*   Redis cache store: `delete_matched` no longer blocks the Redis server.
    (Switches from evaled Lua to a batched SCAN + DEL loop.)

    *Gleb Mazovetskiy*

92 93 94 95 96 97 98
*   Fix bug where `ActiveSupport::Cache` will massively inflate the storage
    size when compression is enabled (which is true by default). This patch
    does not attempt to repair existing data: please manually flush the cache
    to clear out the problematic entries.

    *Godfrey Chan*

99
*   Fix bug where `URI.unescape` would fail with mixed Unicode/escaped character input:
100 101 102 103 104 105 106

        URI.unescape("\xe3\x83\x90")  # => "バ"
        URI.unescape("%E3%83%90")  # => "バ"
        URI.unescape("\xe3\x83\x90%E3%83%90")  # => Encoding::CompatibilityError

    *Ashe Connor*, *Aaron Patterson*

107 108 109 110 111
*   Add `before?` and `after?` methods to `Date`, `DateTime`,
    `Time`, and `TimeWithZone`.

    *Nick Holden*

112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
*   `ActiveSupport::Inflector#ordinal` and `ActiveSupport::Inflector#ordinalize` now support
    translations through I18n.

        # locale/fr.rb

        {
          fr: {
            number: {
              nth: {
                ordinals: lambda do |_key, number:, **_options|
                  if number.to_i.abs == 1
                    'er'
                  else
                    'e'
                  end
                end,

                ordinalized: lambda do |_key, number:, **_options|
                  "#{number}#{ActiveSupport::Inflector.ordinal(number)}"
                end
              }
            }
          }
        }


    *Christian Blais*

140 141
*   Add `:private` option to ActiveSupport's `Module#delegate`
    in order to delegate methods as private:
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

        class User < ActiveRecord::Base
          has_one :profile
          delegate :date_of_birth, to: :profile, private: true

          def age
            Date.today.year - date_of_birth.year
          end
        end

        # User.new.age  # => 29
        # User.new.date_of_birth
        # => NoMethodError: private method `date_of_birth' called for #<User:0x00000008221340>

    *Tomas Valent*

158 159 160 161 162
*   `String#truncate_bytes` to truncate a string to a maximum bytesize without
    breaking multibyte characters or grapheme clusters like 👩‍👩‍👦‍👦.

    *Jeremy Daer*

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
*   `String#strip_heredoc` preserves frozenness.

        "foo".freeze.strip_heredoc.frozen?  # => true

    Fixes that frozen string literals would inadvertently become unfrozen:

        # frozen_string_literal: true

        foo = <<-MSG.strip_heredoc
          la la la
        MSG

        foo.frozen?  # => false !??

    *Jeremy Daer*

J
Jeremy Daer 已提交
179 180 181 182
*   Rails 6 requires Ruby 2.4.1 or newer.

    *Jeremy Daer*

B
bogdanvlviv 已提交
183
*   Adds parallel testing to Rails.
J
Jeremy Daer 已提交
184 185 186 187

    Parallelize your test suite with forked processes or threads.

    *Eileen M. Uchitelle*, *Aaron Patterson*
E
eileencodes 已提交
188

189

190
Please check [5-2-stable](https://github.com/rails/rails/blob/5-2-stable/activesupport/CHANGELOG.md) for previous changes.