CHANGELOG.md 14.2 KB
Newer Older
1
## Rails 4.0.0 (unreleased) ##
2

3 4 5 6
*   Add `:nsec` date format.

    *Jamie Gaskins*

B
Beyond 已提交
7 8 9 10 11
*   ActiveSupport::Gzip.compress allows two optional arguments for compression
    level and strategy.

    *Beyond*

12 13 14 15 16
*   Modify `TimeWithZone#as_json` to include 3 decimal places of sub-second accuracy
    by default, which is optional as per the ISO8601 spec, but extremely useful. Also
    the default behaviour of Date#toJSON() in recent versions of Chrome, Safari and
    Firefox.

17 18
    *James Harton*

19 20
*   Improve `String#squish` to handle Unicode whitespace. *Antoine Lyset*

21 22 23 24 25
*   Standardise on `to_time` returning an instance of `Time` in the local system timezone
    across `String`, `Time`, `Date`, `DateTime` and `ActiveSupport::TimeWithZone`.

    *Andrew White*

26 27 28 29 30 31 32
*   Extract `ActiveSupport::Testing::Performance` into https://github.com/rails/rails-perftest
    You can add the gem to your Gemfile to keep using performance tests.

        gem 'rails-perftest'

    *Yves Senn*

33 34
*   `Hash.from_xml` raises when it encounters `type="symbol"` or `type="yaml"`.
    Use `Hash.from_trusted_xml` to parse this XML.
35 36 37 38 39

    CVE-2013-0156

    *Jeremy Kemper*

40 41 42 43 44
*   Deprecate `assert_present` and `assert_blank` in favor of
    `assert object.blank?` and `assert object.present?`

    *Yves Senn*

45
*   Change `String#to_date` to use `Date.parse`. This gives more consistent error
46 47 48 49 50 51 52
    messages and allows the use of partial dates.

        "gibberish".to_date => Argument Error: invalid date
        "3rd Feb".to_date => Sun, 03 Feb 2013

    *Kelly Stannard*

53 54
*   It's now possible to compare `Date`, `DateTime`, `Time` and `TimeWithZone`
    with `Infinity`. This allows to create date/time ranges with one infinite bound.
55 56 57 58 59 60 61 62 63 64 65
    Example:

        range = Range.new(Date.today, Float::INFINITY)

    Also it's possible to check inclusion of date/time in range with conversion.

        range.include?(Time.now + 1.year)     # => true
        range.include?(DateTime.now + 1.year) # => true

    *Alexander Grebennik*

66 67 68 69
*   Remove meaningless `ActiveSupport::FrozenObjectError`, which was just an alias of `RuntimeError`.

    *Akira Matsuda*

70
*   Introduce `assert_not` to replace warty `assert !foo`.  *Jeremy Kemper*
71

72 73 74 75 76 77 78 79 80
*   Prevent `Callbacks#set_callback` from setting the same callback twice.

        before_save :foo, :bar, :foo

    will at first call `bar`, then `foo`. `foo` will no more be called
    twice.

    *Dmitriy Kiriyenko*

81
*   Add `ActiveSupport::Logger#silence` that works the same as the old `Logger#silence` extension.
82 83 84

    *DHH*

85
*   Remove surrogate unicode character encoding from `ActiveSupport::JSON.encode`
86
    The encoding scheme was broken for unicode characters outside the basic multilingual plane;
87 88
    since json is assumed to be `UTF-8`, and we already force the encoding to `UTF-8`,
    simply pass through the un-encoded characters.
89 90

    *Brett Carter*
S
Steve Klabnik 已提交
91

92 93 94 95 96 97 98
*   Deprecate `Time.time_with_date_fallback`, `Time.utc_time` and `Time.local_time`.
    These methods were added to handle the limited range of Ruby's native Time
    implementation. Those limitations no longer apply so we are deprecating them in 4.0
    and they will be removed in 4.1.

    *Andrew White*

99 100
*   Deprecate `Date#to_time_in_current_zone` and add `Date#in_time_zone`. *Andrew White*

A
Andrew White 已提交
101 102
*   Add `String#in_time_zone` method to convert a string to an ActiveSupport::TimeWithZone. *Andrew White*

103 104 105 106 107 108
*   Deprecate `ActiveSupport::BasicObject` in favor of `ActiveSupport::ProxyObject`.
    This class is used for proxy classes. It avoids confusion with Ruby's BasicObject
    class.

    *Francesco Rodriguez*

109 110 111 112 113
*   Patched Marshal#load to work with constant autoloading.
    Fixes autoloading with cache stores that relay on Marshal(MemCacheStore and FileStore). [fixes #8167]

    *Uriel Katz*

114 115
*   Make `Time.zone.parse` to work with JavaScript format date strings. *Andrew White*

116 117 118 119 120 121 122 123 124
*   Add `DateTime#seconds_until_end_of_day` and `Time#seconds_until_end_of_day`
    as a complement for `seconds_from_midnight`; useful when setting expiration
    times for caches, e.g.:

        <% cache('dashboard', expires_in: Date.current.seconds_until_end_of_day) do %>
          ...

    *Olek Janiszewski*

125 126
*   No longer proxy ActiveSupport::Multibyte#class. *Steve Klabnik*

127 128
*   Deprecate `ActiveSupport::TestCase#pending` method, use `skip` from MiniTest instead. *Carlos Antonio da Silva*

129 130 131 132 133 134 135 136 137 138 139 140 141
*   `XmlMini.with_backend` now may be safely used with threads:

        Thread.new do
          XmlMini.with_backend("REXML") { rexml_power }
        end
        Thread.new do
          XmlMini.with_backend("LibXML") { libxml_power }
        end

    Each thread will use it's own backend.

    *Nikita Afanasenko*

142
*   Dependencies no longer trigger Kernel#autoload in remove_constant [fixes #8213]. *Xavier Noria*
143

144 145
*   Simplify mocha integration and remove monkey-patches, bumping mocha to 0.13.0. *James Mead*

146 147 148 149 150
*   `#as_json` isolates options when encoding a hash.
    Fix #8182

    *Yves Senn*

S
Steve Klabnik 已提交
151 152
*   Deprecate Hash#diff in favor of MiniTest's #diff. *Steve Klabnik*

153
*   Kernel#capture can catch output from subprocesses *Dmitry Vorotilin*
154

155 156 157 158
*   `to_xml` conversions now use builder's `tag!` method instead of explicit invocation of `method_missing`.

    *Nikita Afanasenko*

159 160
*   Fixed timezone mapping of the Solomon Islands. *Steve Klabnik*

161 162 163 164 165
*   Make callstack attribute optional in
    ActiveSupport::Deprecation::Reporting methods `warn` and `deprecation_warning`

    *Alexey Gaziev*

166 167
*   Implement HashWithIndifferentAccess#replace so key? works correctly. *David Graham*

168 169
*   Handle the possible Permission Denied errors atomic.rb might trigger due to its chown and chmod calls. *Daniele Sluijters*

170
*   Hash#extract! returns only those keys that present in the receiver.
171

172
        {a: 1, b: 2}.extract!(:a, :x) # => {:a => 1}
173 174 175

    *Mikhail Dieterle*

176
*   Hash#extract! returns the same subclass, that the receiver is. I.e.
177 178 179 180
    HashWithIndifferentAccess#extract! returns HashWithIndifferentAccess instance.

    *Mikhail Dieterle*

181 182
*   Optimize ActiveSupport::Cache::Entry to reduce memory and processing overhead. *Brian Durand*

183 184 185 186 187 188 189
*   Tests tag the Rails log with the current test class and test case:

        [SessionsControllerTest] [test_0002_sign in] Processing by SessionsController#create as HTML
        [SessionsControllerTest] [test_0002_sign in] ...

    *Jeremy Kemper*

190
*   Add `logger.push_tags` and `.pop_tags` to complement logger.tagged:
191 192 193 194 195 196 197 198 199 200 201 202 203

        class Job
          def before
            Rails.logger.push_tags :jobs, self.class.name
          end

          def after
            Rails.logger.pop_tags 2
          end
        end

    *Jeremy Kemper*

204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
*   Allow delegation to the class using the `:class` keyword, replacing
    `self.class` usage:

        class User
          def self.hello
           "world"
          end

          delegate :hello, to: :class
        end

    *Marc-Andre Lafortune*

*   `Date.beginning_of_week` thread local and `beginning_of_week` application
    config option added (default is Monday).

    *Innokenty Mikhailov*
221

222 223 224 225 226 227 228 229 230 231 232 233 234
*   An optional block can be passed to `config_accessor` to set its default value

        class User
          include ActiveSupport::Configurable
          config_accessor :hair_colors do
            [:brown, :black, :blonde, :red]
          end
        end

        User.hair_colors # => [:brown, :black, :blonde, :red]

    *Larry Lv*

235
*   ActiveSupport::Benchmarkable#silence has been deprecated due to its lack of
236 237 238 239 240 241
    thread safety. It will be removed without replacement in Rails 4.1.

    *Steve Klabnik*

*   An optional block can be passed to `Hash#deep_merge`. The block will be invoked
    for each duplicated key and used to resolve the conflict.
242

243
    *Pranas Kiziela*
244

245 246 247 248 249
*   ActiveSupport::Deprecation is now a class. It is possible to create an instance
    of deprecator. Backwards compatibility has been preserved.

    You can choose which instance of the deprecator will be used.

250
        deprecate :method_name, deprecator: deprecator_instance
251 252 253

    You can use ActiveSupport::Deprecation in your gem.

254 255
        require 'active_support/deprecation'
        require 'active_support/core_ext/module/deprecation'
256

257 258 259 260
        class MyGem
          def self.deprecator
            ActiveSupport::Deprecation.new('2.0', 'MyGem')
          end
261

262 263
          def old_method
          end
264

265 266
          def new_method
          end
267

268
          deprecate old_method: :new_method, deprecator: deprecator
269
        end
270

271 272
        MyGem.new.old_method
        # => DEPRECATION WARNING: old_method is deprecated and will be removed from MyGem 2.0 (use new_method instead). (called from <main> at file.rb:18)
273 274 275

    *Piotr Niełacny & Robert Pankowecki*

276 277
*   `ERB::Util.html_escape` encodes single quote as `#39`. Decimal form has better support in old browsers. *Kalys Osmonov*

278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
*   `ActiveSupport::Callbacks`: deprecate monkey patch of object callbacks.
    Using the #filter method like this:

        before_filter MyFilter.new

        class MyFilter
          def filter(controller)
          end
        end

    Is now deprecated with recommendation to use the corresponding filter type
    (`#before`, `#after` or `#around`):

        before_filter MyFilter.new

        class MyFilter
          def before(controller)
          end
        end

    *Bogdan Gusiev*

300 301 302 303 304 305
*   An optional block can be passed to `HashWithIndifferentAccess#update` and `#merge`.
    The block will be invoked for each duplicated key, and used to resolve the conflict,
    thus replicating the behaviour of the corresponding methods on the `Hash` class.

    *Leo Cassarani*

306 307 308 309 310 311
*   Remove `j` alias for `ERB::Util#json_escape`.
    The `j` alias is already used for `ActionView::Helpers::JavaScriptHelper#escape_javascript`
    and both modules are included in the view context that would confuse the developers.

    *Akira Matsuda*

312 313 314 315
*   Replace deprecated `memcache-client` gem with `dalli` in ActiveSupport::Cache::MemCacheStore

    *Guillermo Iguaran*

316 317 318 319 320
*   Add default values to all `ActiveSupport::NumberHelper` methods, to avoid
    errors with empty locales or missing values.

    *Carlos Antonio da Silva*

321 322
*   `ActiveSupport::JSON::Variable` is deprecated. Define your own `#as_json` and
    `#encode_json` methods for custom JSON string literals.
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338

    *Erich Menge*

*   Add String#indent. *fxn & Ace Suares*

*   Inflections can now be defined per locale. `singularize` and `pluralize`
    accept locale as an extra argument.

    *David Celis*

*   `Object#try` will now return nil instead of raise a NoMethodError if the
    receiving object does not implement the method, but you can still get the
    old behavior by using the new `Object#try!`.

    *DHH*

M
Mark Turner 已提交
339
*   `ERB::Util.html_escape` now escapes single quotes. *Santiago Pastorino*
340

341
*   `Time#change` now works with time values with offsets other than UTC or the local time zone. *Andrew White*
342

343
*   `ActiveSupport::Callbacks`: deprecate usage of filter object with `#before` and `#after` methods as `around` callback. *Bogdan Gusiev*
344

345
*   Add `Time#prev_quarter` and `Time#next_quarter` short-hands for `months_ago(3)` and `months_since(3)`. *SungHee Kang*
346

347 348
*   Remove obsolete and unused `require_association` method from dependencies. *fxn*

349 350 351 352 353 354 355 356 357 358 359 360
*   Add `:instance_accessor` option for `config_accessor`.

        class User
          include ActiveSupport::Configurable
          config_accessor :allowed_access, instance_accessor: false
        end

        User.new.allowed_access = true # => NoMethodError
        User.new.allowed_access        # => NoMethodError

    *Francesco Rodriguez*

361 362
*   ActionView::Helpers::NumberHelper methods have been moved to ActiveSupport::NumberHelper and are now available via
    Numeric#to_s.  Numeric#to_s now accepts the formatting  options :phone, :currency, :percentage, :delimited,
363 364
    :rounded, :human, and :human_size. *Andrew Mutz*

365
*   Add `Hash#transform_keys`, `Hash#transform_keys!`, `Hash#deep_transform_keys`, and `Hash#deep_transform_keys!`. *Mark McSpadden*
366

367
*   Changed xml type `datetime` to `dateTime` (with upper case letter `T`). *Angelo Capilleri*
368

369 370
*   Add `:instance_accessor` option for `class_attribute`. *Alexey Vakhov*

371 372
*   `constantize` now looks in the ancestor chain. *Marc-Andre Lafortune & Andrew White*

373 374 375 376
*   Adds `Hash#deep_stringify_keys` and `Hash#deep_stringify_keys!` to convert all keys from a +Hash+ instance into strings *Lucas Húngaro*

*   Adds `Hash#deep_symbolize_keys` and `Hash#deep_symbolize_keys!` to convert all keys from a +Hash+ instance into symbols *Lucas Húngaro*

377
*   `Object#try` can't call private methods. *Vasiliy Ermolovich*
378

379 380
*   `AS::Callbacks#run_callbacks` remove `key` argument. *Francesco Rodriguez*

381
*   `deep_dup` works more expectedly now and duplicates also values in +Hash+ instances and elements in +Array+ instances. *Alexey Gaziev*
382

383
*   Inflector no longer applies ice -> ouse to words like slice, police, ets *Wes Morgan*
J
José Valim 已提交
384

385
*   Add `ActiveSupport::Deprecations.behavior = :silence` to completely ignore Rails runtime deprecations *twinturbo*
386

387
*   Make Module#delegate stop using `send` - can no longer delegate to private methods. *dasch*
D
Daniel Schierbeck 已提交
388

389
*   AS::Callbacks: deprecate `:rescuable` option. *Bogdan Gusiev*
390

391
*   Adds Integer#ordinal to get the ordinal suffix string of an integer. *Tim Gildea*
392

393
*   AS::Callbacks: `:per_key` option is no longer supported
394

395
*   `AS::Callbacks#define_callbacks`: add `:skip_after_callbacks_if_terminated` option.
396

397
*   Add html_escape_once to ERB::Util, and delegate escape_once tag helper to it. *Carlos Antonio da Silva*
398

399 400
*   Deprecates the compatibility method Module#local_constant_names,
    use Module#local_constants instead (which returns symbols). *fxn*
401

402 403
*   Deletes the compatibility method Module#method_names,
    use Module#methods from now on (which returns symbols). *fxn*
404

405 406
*   Deletes the compatibility method Module#instance_method_names,
    use Module#instance_methods from now on (which returns symbols). *fxn*
407

408 409
*   BufferedLogger is deprecated.  Use ActiveSupport::Logger, or the logger
    from Ruby stdlib.
410

411
*   Unicode database updated to 6.1.0.
412

413 414
*   Adds `encode_big_decimal_as_string` option to force JSON serialization of BigDecimals as numeric instead
    of wrapping them in strings for safety.
415

416 417
*   Remove deprecated ActiveSupport::JSON::Variable. *Erich Menge*

418 419
*   Optimize log subscribers to check log level before doing any processing. *Brian Durand*

X
Xavier Noria 已提交
420
Please check [3-2-stable](https://github.com/rails/rails/blob/3-2-stable/activesupport/CHANGELOG.md) for previous changes.