2014-08-17 15:52:54 -04:00
|
|
|
* Fix rounding errors with #travel_to by resetting the usec on any passed time to zero, so we only travel
|
|
|
|
with per-second precision, not anything deeper than that.
|
|
|
|
|
|
|
|
*DHH*
|
|
|
|
|
2014-08-12 06:52:34 -04:00
|
|
|
* Fix ActiveSupport::TestCase not to order users' test cases by default.
|
|
|
|
If this change breaks your tests because your tests are order dependent, you need to explicitly call
|
2014-08-12 09:51:41 -04:00
|
|
|
ActiveSupport::TestCase.my_tests_are_order_dependent! at the top of your tests.
|
2014-08-12 06:52:34 -04:00
|
|
|
|
|
|
|
*Akira Matsuda*
|
|
|
|
|
2013-01-14 06:32:34 -05:00
|
|
|
* Fix DateTime comparison with DateTime::Infinity object.
|
|
|
|
|
|
|
|
*Rafael Mendonça França*
|
|
|
|
|
2014-08-01 13:30:13 -04:00
|
|
|
* Added Object#itself which returns the object itself. Useful when dealing with a chaining scenario, like Active Record scopes:
|
2014-08-01 13:07:38 -04:00
|
|
|
|
2014-08-05 09:16:34 -04:00
|
|
|
Event.public_send(state.presence_in([ :trashed, :drafted ]) || :itself).order(:created_at)
|
|
|
|
|
2014-08-01 13:07:38 -04:00
|
|
|
*DHH*
|
|
|
|
|
2014-07-29 13:50:56 -04:00
|
|
|
* `Object#with_options` executes block in merging option context when
|
|
|
|
explicit receiver in not passed.
|
|
|
|
|
|
|
|
*Pavel Pravosud*
|
|
|
|
|
2014-07-12 06:03:35 -04:00
|
|
|
* Fixed a compatibility issue with the `Oj` gem when cherry-picking the file
|
|
|
|
`active_support/core_ext/object/json` without requiring `active_support/json`.
|
|
|
|
|
|
|
|
Fixes #16131.
|
|
|
|
|
|
|
|
*Godfrey Chan*
|
|
|
|
|
2014-07-24 11:48:24 -04:00
|
|
|
* Make `Hash#with_indifferent_access` copy the default proc too.
|
|
|
|
|
|
|
|
*arthurnn*, *Xanders*
|
|
|
|
|
2014-07-16 15:01:18 -04:00
|
|
|
* Add `String#truncate_words` to truncate a string by a number of words.
|
|
|
|
|
|
|
|
*Mohamed Osama*
|
|
|
|
|
2014-07-15 17:03:12 -04:00
|
|
|
* Deprecate `capture` and `quietly`.
|
|
|
|
|
|
|
|
These methods are not thread safe and may cause issues when used in threaded environments.
|
|
|
|
To avoid problems we are deprecating them.
|
|
|
|
|
|
|
|
*Tom Meier*
|
|
|
|
|
2014-07-01 09:43:46 -04:00
|
|
|
* `DateTime#to_f` now preserves the fractional seconds instead of always
|
|
|
|
rounding to `.0`.
|
|
|
|
|
|
|
|
Fixes #15994.
|
|
|
|
|
|
|
|
*John Paul Ashenfelter*
|
|
|
|
|
2014-06-19 14:01:03 -04:00
|
|
|
* Add `Hash#transform_values` to simplify a common pattern where the values of a
|
|
|
|
hash must change, but the keys are left the same.
|
|
|
|
|
|
|
|
*Sean Griffin*
|
|
|
|
|
2014-06-27 17:21:30 -04:00
|
|
|
* Always instrument `ActiveSupport::Cache`.
|
|
|
|
|
|
|
|
Since `ActiveSupport::Notifications` only instrument items when there
|
|
|
|
are subscriber we don't need to disable instrumentation.
|
|
|
|
|
|
|
|
*Peter Wagenet*
|
|
|
|
|
2014-03-02 12:30:54 -05:00
|
|
|
* Make the `apply_inflections` method case-insensitive when checking
|
|
|
|
whether a word is uncountable or not.
|
|
|
|
|
|
|
|
*Robin Dupret*
|
|
|
|
|
2014-06-16 23:13:42 -04:00
|
|
|
* Make Dependencies pass a name to NameError error.
|
2014-06-29 14:13:49 -04:00
|
|
|
|
2014-06-16 23:13:42 -04:00
|
|
|
*arthurnn*
|
|
|
|
|
2014-06-10 13:53:48 -04:00
|
|
|
* Fixed `ActiveSupport::Cache::FileStore` exploding with long paths.
|
2014-06-29 14:13:49 -04:00
|
|
|
|
2014-03-02 12:30:54 -05:00
|
|
|
*Adam Panzer / Michael Grosser*
|
2014-06-10 13:53:48 -04:00
|
|
|
|
2014-05-30 04:29:30 -04:00
|
|
|
* Fixed `ActiveSupport::TimeWithZone#-` so precision is not unnecessarily lost
|
|
|
|
when working with objects with a nanosecond component.
|
|
|
|
|
|
|
|
`ActiveSupport::TimeWithZone#-` should return the same result as if we were
|
|
|
|
using `Time#-`:
|
|
|
|
|
|
|
|
Time.now.end_of_day - Time.now.beginning_of_day #=> 86399.999999999
|
|
|
|
|
|
|
|
Before:
|
|
|
|
|
|
|
|
Time.zone.now.end_of_day.nsec #=> 999999999
|
|
|
|
Time.zone.now.end_of_day - Time.zone.now.beginning_of_day #=> 86400.0
|
|
|
|
|
|
|
|
After:
|
|
|
|
|
|
|
|
Time.zone.now.end_of_day - Time.zone.now.beginning_of_day
|
|
|
|
#=> 86399.999999999
|
|
|
|
|
|
|
|
*Gordon Chan*
|
|
|
|
|
2014-05-28 06:40:42 -04:00
|
|
|
* Fixed precision error in NumberHelper when using Rationals.
|
|
|
|
|
2014-06-16 16:34:40 -04:00
|
|
|
Before:
|
2014-03-02 12:30:54 -05:00
|
|
|
|
2014-05-28 06:40:42 -04:00
|
|
|
ActiveSupport::NumberHelper.number_to_rounded Rational(1000, 3), precision: 2
|
|
|
|
#=> "330.00"
|
2014-03-02 12:30:54 -05:00
|
|
|
|
2014-06-16 16:34:40 -04:00
|
|
|
After:
|
2014-03-02 12:30:54 -05:00
|
|
|
|
2014-05-28 06:40:42 -04:00
|
|
|
ActiveSupport::NumberHelper.number_to_rounded Rational(1000, 3), precision: 2
|
|
|
|
#=> "333.33"
|
|
|
|
|
|
|
|
See #15379.
|
|
|
|
|
|
|
|
*Juanjo Bazán*
|
|
|
|
|
2014-05-30 05:29:17 -04:00
|
|
|
* Removed deprecated `Numeric#ago` and friends
|
|
|
|
|
|
|
|
Replacements:
|
|
|
|
|
2014-05-31 13:08:49 -04:00
|
|
|
5.ago => 5.seconds.ago
|
|
|
|
5.until => 5.seconds.until
|
|
|
|
5.since => 5.seconds.since
|
|
|
|
5.from_now => 5.seconds.from_now
|
2014-05-30 05:29:17 -04:00
|
|
|
|
|
|
|
See #12389 for the history and rationale behind this.
|
|
|
|
|
|
|
|
*Godfrey Chan*
|
|
|
|
|
2013-09-02 02:00:21 -04:00
|
|
|
* DateTime `advance` now supports partial days.
|
|
|
|
|
|
|
|
Before:
|
|
|
|
|
|
|
|
DateTime.now.advance(days: 1, hours: 12)
|
|
|
|
|
|
|
|
After:
|
|
|
|
|
|
|
|
DateTime.now.advance(days: 1.5)
|
|
|
|
|
2014-05-27 14:02:21 -04:00
|
|
|
Fixes #12005.
|
2013-07-22 11:51:36 -04:00
|
|
|
|
2014-05-27 14:02:21 -04:00
|
|
|
*Shay Davidson*
|
2013-07-06 05:59:30 -04:00
|
|
|
|
2013-03-14 12:29:59 -04:00
|
|
|
* `Hash#deep_transform_keys` and `Hash#deep_transform_keys!` now transform hashes
|
|
|
|
in nested arrays. This change also applies to `Hash#deep_stringify_keys`,
|
|
|
|
`Hash#deep_stringify_keys!`, `Hash#deep_symbolize_keys` and
|
|
|
|
`Hash#deep_symbolize_keys!`.
|
|
|
|
|
|
|
|
*OZAWA Sakuro*
|
|
|
|
|
2014-05-20 01:53:55 -04:00
|
|
|
* Fixed confusing `DelegationError` in `Module#delegate`.
|
|
|
|
|
|
|
|
See #15186.
|
|
|
|
|
|
|
|
*Vladimir Yarotsky*
|
|
|
|
|
2014-05-09 05:16:18 -04:00
|
|
|
* Fixed `ActiveSupport::Subscriber` so that no duplicate subscriber is created
|
|
|
|
when a subscriber method is redefined.
|
|
|
|
|
|
|
|
*Dennis Schön*
|
|
|
|
|
2014-05-13 19:51:57 -04:00
|
|
|
* Remove deprecated string based terminators for `ActiveSupport::Callbacks`.
|
|
|
|
|
|
|
|
*Eileen M. Uchitelle*
|
|
|
|
|
2014-05-12 12:13:19 -04:00
|
|
|
* Fixed an issue when using
|
|
|
|
`ActiveSupport::NumberHelper::NumberToDelimitedConverter` to
|
|
|
|
convert a value that is an `ActiveSupport::SafeBuffer` introduced
|
|
|
|
in 2da9d67.
|
|
|
|
|
2014-05-16 03:03:26 -04:00
|
|
|
See #15064.
|
2014-05-12 12:13:19 -04:00
|
|
|
|
|
|
|
*Mark J. Titorenko*
|
|
|
|
|
2014-05-07 12:12:25 -04:00
|
|
|
* `TimeZone#parse` defaults the day of the month to '1' if any other date
|
|
|
|
components are specified. This is more consistent with the behavior of
|
|
|
|
`Time#parse`.
|
|
|
|
|
|
|
|
*Ulysse Carion*
|
|
|
|
|
2014-05-06 15:25:52 -04:00
|
|
|
* `humanize` strips leading underscores, if any.
|
|
|
|
|
|
|
|
Before:
|
|
|
|
|
|
|
|
'_id'.humanize # => ""
|
|
|
|
|
|
|
|
After:
|
|
|
|
|
|
|
|
'_id'.humanize # => "Id"
|
|
|
|
|
|
|
|
*Xavier Noria*
|
|
|
|
|
2014-05-04 17:35:04 -04:00
|
|
|
* Fixed backward compatibility isues introduced in 326e652.
|
2014-05-02 13:57:59 -04:00
|
|
|
|
2014-05-04 17:35:04 -04:00
|
|
|
Empty Hash or Array should not present in serialization result.
|
2014-05-02 13:57:59 -04:00
|
|
|
|
|
|
|
{a: []}.to_query # => ""
|
|
|
|
{a: {}}.to_query # => ""
|
|
|
|
|
|
|
|
For more info see #14948.
|
|
|
|
|
|
|
|
*Bogdan Gusiev*
|
|
|
|
|
2014-07-15 18:51:33 -04:00
|
|
|
* Add `Digest::UUID::uuid_v3` and `Digest::UUID::uuid_v5` to support stable
|
2013-08-25 05:22:36 -04:00
|
|
|
UUID fixtures on PostgreSQL.
|
|
|
|
|
|
|
|
*Roderick van Domburg*
|
|
|
|
|
2014-04-08 19:24:35 -04:00
|
|
|
* Fixed `ActiveSupport::Duration#eql?` so that `1.second.eql?(1.second)` is
|
|
|
|
true.
|
|
|
|
|
|
|
|
This fixes the current situation of:
|
|
|
|
|
|
|
|
1.second.eql?(1.second) #=> false
|
|
|
|
|
|
|
|
`eql?` also requires that the other object is an `ActiveSupport::Duration`.
|
|
|
|
This requirement makes `ActiveSupport::Duration`'s behavior consistent with
|
|
|
|
the behavior of Ruby's numeric types:
|
|
|
|
|
|
|
|
1.eql?(1.0) #=> false
|
|
|
|
1.0.eql?(1) #=> false
|
|
|
|
|
|
|
|
1.second.eql?(1) #=> false (was true)
|
|
|
|
1.eql?(1.second) #=> false
|
|
|
|
|
|
|
|
{ 1 => "foo", 1.0 => "bar" }
|
|
|
|
#=> { 1 => "foo", 1.0 => "bar" }
|
|
|
|
|
|
|
|
{ 1 => "foo", 1.second => "bar" }
|
|
|
|
# now => { 1 => "foo", 1.second => "bar" }
|
|
|
|
# was => { 1 => "bar" }
|
|
|
|
|
|
|
|
And though the behavior of these hasn't changed, for reference:
|
|
|
|
|
|
|
|
1 == 1.0 #=> true
|
|
|
|
1.0 == 1 #=> true
|
|
|
|
|
|
|
|
1 == 1.second #=> true
|
|
|
|
1.second == 1 #=> true
|
|
|
|
|
|
|
|
*Emily Dobervich*
|
|
|
|
|
2014-03-31 22:33:53 -04:00
|
|
|
* `ActiveSupport::SafeBuffer#prepend` acts like `String#prepend` and modifies
|
|
|
|
instance in-place, returning self. `ActiveSupport::SafeBuffer#prepend!` is
|
|
|
|
deprecated.
|
|
|
|
|
|
|
|
*Pavel Pravosud*
|
|
|
|
|
2013-10-15 15:45:07 -04:00
|
|
|
* `HashWithIndifferentAccess` better respects `#to_hash` on objects it's
|
|
|
|
given. In particular, `.new`, `#update`, `#merge`, `#replace` all accept
|
|
|
|
objects which respond to `#to_hash`, even if those objects are not Hashes
|
|
|
|
directly.
|
|
|
|
|
|
|
|
*Peter Jaros*
|
|
|
|
|
2014-03-20 08:59:09 -04:00
|
|
|
* Deprecate `Class#superclass_delegating_accessor`, use `Class#class_attribute` instead.
|
|
|
|
|
|
|
|
*Akshay Vishnoi*
|
|
|
|
|
2013-04-20 14:06:22 -04:00
|
|
|
* Ensure classes which `include Enumerable` get `#to_json` in addition to
|
|
|
|
`#as_json`.
|
|
|
|
|
|
|
|
*Sammy Larbi*
|
|
|
|
|
2013-07-17 14:59:15 -04:00
|
|
|
* Change the signature of `fetch_multi` to return a hash rather than an
|
|
|
|
array. This makes it consistent with the output of `read_multi`.
|
|
|
|
|
|
|
|
*Parker Selbert*
|
|
|
|
|
2014-02-23 14:06:18 -05:00
|
|
|
* Introduce `Concern#class_methods` as a sleek alternative to clunky
|
|
|
|
`module ClassMethods`. Add `Kernel#concern` to define at the toplevel
|
|
|
|
without chunky `module Foo; extend ActiveSupport::Concern` boilerplate.
|
|
|
|
|
|
|
|
# app/models/concerns/authentication.rb
|
|
|
|
concern :Authentication do
|
|
|
|
included do
|
|
|
|
after_create :generate_private_key
|
|
|
|
end
|
|
|
|
|
|
|
|
class_methods do
|
|
|
|
def authenticate(credentials)
|
|
|
|
# ...
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def generate_private_key
|
|
|
|
# ...
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# app/models/user.rb
|
|
|
|
class User < ActiveRecord::Base
|
|
|
|
include Authentication
|
|
|
|
end
|
|
|
|
|
|
|
|
*Jeremy Kemper*
|
|
|
|
|
2014-02-25 07:14:35 -05:00
|
|
|
Please check [4-1-stable](https://github.com/rails/rails/blob/4-1-stable/activesupport/CHANGELOG.md) for previous changes.
|