Prep Rails 5 beta 4

This commit is contained in:
eileencodes 2016-04-27 15:47:22 -05:00
parent ba907d6caa
commit f7a986012a
22 changed files with 71 additions and 49 deletions

View File

@ -36,58 +36,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.0.0.beta3)
actionpack (= 5.0.0.beta3)
actioncable (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
nio4r (~> 1.2)
websocket-driver (~> 0.6.1)
actionmailer (5.0.0.beta3)
actionpack (= 5.0.0.beta3)
actionview (= 5.0.0.beta3)
activejob (= 5.0.0.beta3)
actionmailer (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
actionview (= 5.0.0.beta4)
activejob (= 5.0.0.beta4)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (5.0.0.beta3)
actionview (= 5.0.0.beta3)
activesupport (= 5.0.0.beta3)
actionpack (5.0.0.beta4)
actionview (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
rack (~> 2.x)
rack-test (~> 0.6.3)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.0.0.beta3)
activesupport (= 5.0.0.beta3)
actionview (5.0.0.beta4)
activesupport (= 5.0.0.beta4)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
activejob (5.0.0.beta3)
activesupport (= 5.0.0.beta3)
activejob (5.0.0.beta4)
activesupport (= 5.0.0.beta4)
globalid (>= 0.3.6)
activemodel (5.0.0.beta3)
activesupport (= 5.0.0.beta3)
activerecord (5.0.0.beta3)
activemodel (= 5.0.0.beta3)
activesupport (= 5.0.0.beta3)
activemodel (5.0.0.beta4)
activesupport (= 5.0.0.beta4)
activerecord (5.0.0.beta4)
activemodel (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
arel (~> 7.0)
activesupport (5.0.0.beta3)
activesupport (5.0.0.beta4)
concurrent-ruby (~> 1.0)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.0.0.beta3)
actioncable (= 5.0.0.beta3)
actionmailer (= 5.0.0.beta3)
actionpack (= 5.0.0.beta3)
actionview (= 5.0.0.beta3)
activejob (= 5.0.0.beta3)
activemodel (= 5.0.0.beta3)
activerecord (= 5.0.0.beta3)
activesupport (= 5.0.0.beta3)
rails (5.0.0.beta4)
actioncable (= 5.0.0.beta4)
actionmailer (= 5.0.0.beta4)
actionpack (= 5.0.0.beta4)
actionview (= 5.0.0.beta4)
activejob (= 5.0.0.beta4)
activemodel (= 5.0.0.beta4)
activerecord (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
bundler (>= 1.3.0, < 2.0)
railties (= 5.0.0.beta3)
railties (= 5.0.0.beta4)
sprockets-rails (>= 2.0.0)
railties (5.0.0.beta3)
actionpack (= 5.0.0.beta3)
activesupport (= 5.0.0.beta3)
railties (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
@ -154,11 +154,13 @@ GEM
rb-inotify (>= 0.9)
loofah (2.0.3)
nokogiri (>= 1.5.9)
mail (2.6.3)
mime-types (>= 1.16, < 3)
mail (2.6.4)
mime-types (>= 1.16, < 4)
metaclass (0.0.4)
method_source (0.8.2)
mime-types (2.99.1)
mime-types (3.0)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0221)
mini_portile2 (2.0.0)
minitest (5.3.3)
mocha (0.14.0)

View File

@ -1 +1 @@
5.0.0.beta3
5.0.0.beta4

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* WebSocket protocol negotiation.
Introduces an Action Cable protocol version that moves independently

View File

@ -8,7 +8,7 @@ module ActionCable
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Disallow calling `#deliver_later` after making local modifications to
the message which would be lost when the delivery job is enqueued.

View File

@ -8,7 +8,7 @@ module ActionMailer
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Routing: Refactor `:action` default handling to ensure that path
parameters are not mutated during route generation.

View File

@ -8,7 +8,7 @@ module ActionPack
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* `date_select` helper `:with_css_classes` option now accepts a hash of strings
for `:year`, `:month`, `:day`, `:hour`, `:minute`, `:second` that will extend
the select type with the given css class value.

View File

@ -8,7 +8,7 @@ module ActionView
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Enable class reloading prior to job dispatch, and ensure Active Record
connections are returned to the pool when jobs are run in separate threads.

View File

@ -8,7 +8,7 @@ module ActiveJob
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Allow passing record being validated to the message proc to generate
customized error messages for that object using I18n helper.

View File

@ -8,7 +8,7 @@ module ActiveModel
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* PostgreSQL: Support Expression Indexes and Operator Classes.
Example:

View File

@ -8,7 +8,7 @@ module ActiveRecord
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Time zones: Ensure that the UTC offset reflects DST changes that occurred
since the app started. Removes UTC offset caching, reducing performance,
but this is still relatively quick and isn't in any hot paths.

View File

@ -8,7 +8,7 @@ module ActiveSupport
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,16 +1,18 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Update example of passing a proc to `:message` option for validating records.
This behavior was recently changed in [Pull Request #24199](https://github.com/rails/rails/pull/24119) to
pass the object being validated as first argument to the `:message` proc,
instead of the key of the field being validated.
*Prathamesh Sonpatki*
* Added new guide: Action Cable Overview.
* Added new guide: Action Cable Overview.
*David Kuhta*
## Rails 5.0.0.beta3 (February 24, 2016) ##
* No changes.

View File

@ -1,3 +1,5 @@
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Add `config/initializers/to_time_preserves_timezone.rb`, which tells
Active Support to preserve the receiver's timezone when calling `to_time`.
This matches the new behavior that will be part of Ruby 2.4.

View File

@ -8,7 +8,7 @@ module Rails
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -8,7 +8,7 @@ module Rails
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta3"
PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end