Preparing for 5.1.0.beta1 release

This commit is contained in:
Rafael Mendonça França 2017-02-23 14:53:12 -05:00
parent 7ffd4c849d
commit f4acdd83ff
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
22 changed files with 66 additions and 44 deletions

@ -26,58 +26,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.1.0.alpha)
actionpack (= 5.1.0.alpha)
actioncable (5.1.0.beta1)
actionpack (= 5.1.0.beta1)
nio4r (~> 2.0)
websocket-driver (~> 0.6.1)
actionmailer (5.1.0.alpha)
actionpack (= 5.1.0.alpha)
actionview (= 5.1.0.alpha)
activejob (= 5.1.0.alpha)
actionmailer (5.1.0.beta1)
actionpack (= 5.1.0.beta1)
actionview (= 5.1.0.beta1)
activejob (= 5.1.0.beta1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (5.1.0.alpha)
actionview (= 5.1.0.alpha)
activesupport (= 5.1.0.alpha)
actionpack (5.1.0.beta1)
actionview (= 5.1.0.beta1)
activesupport (= 5.1.0.beta1)
rack (~> 2.0)
rack-test (~> 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.1.0.alpha)
activesupport (= 5.1.0.alpha)
actionview (5.1.0.beta1)
activesupport (= 5.1.0.beta1)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.1.0.alpha)
activesupport (= 5.1.0.alpha)
activejob (5.1.0.beta1)
activesupport (= 5.1.0.beta1)
globalid (>= 0.3.6)
activemodel (5.1.0.alpha)
activesupport (= 5.1.0.alpha)
activerecord (5.1.0.alpha)
activemodel (= 5.1.0.alpha)
activesupport (= 5.1.0.alpha)
activemodel (5.1.0.beta1)
activesupport (= 5.1.0.beta1)
activerecord (5.1.0.beta1)
activemodel (= 5.1.0.beta1)
activesupport (= 5.1.0.beta1)
arel (~> 8.0)
activesupport (5.1.0.alpha)
activesupport (5.1.0.beta1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.1.0.alpha)
actioncable (= 5.1.0.alpha)
actionmailer (= 5.1.0.alpha)
actionpack (= 5.1.0.alpha)
actionview (= 5.1.0.alpha)
activejob (= 5.1.0.alpha)
activemodel (= 5.1.0.alpha)
activerecord (= 5.1.0.alpha)
activesupport (= 5.1.0.alpha)
rails (5.1.0.beta1)
actioncable (= 5.1.0.beta1)
actionmailer (= 5.1.0.beta1)
actionpack (= 5.1.0.beta1)
actionview (= 5.1.0.beta1)
activejob (= 5.1.0.beta1)
activemodel (= 5.1.0.beta1)
activerecord (= 5.1.0.beta1)
activesupport (= 5.1.0.beta1)
bundler (>= 1.3.0, < 2.0)
railties (= 5.1.0.alpha)
railties (= 5.1.0.beta1)
sprockets-rails (>= 2.0.0)
railties (5.1.0.alpha)
actionpack (= 5.1.0.alpha)
activesupport (= 5.1.0.alpha)
railties (5.1.0.beta1)
actionpack (= 5.1.0.beta1)
activesupport (= 5.1.0.beta1)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
@ -186,7 +186,7 @@ GEM
activesupport (>= 4.1.0)
hiredis (0.6.1)
http_parser.rb (0.6.0)
i18n (0.8.0)
i18n (0.8.1)
jquery-rails (4.2.2)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)

@ -1 +1 @@
5.1.0.alpha
5.1.0.beta1

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Redis subscription adapters now support `channel_prefix` option in `cable.yml`
Avoids channel name collisions when multiple apps use the same Redis server.

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Add `:args` to `process.action_mailer` event.
*Yuji Yaginuma*

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Prefer `remove_method` over `undef_method` when reloading routes
When `undef_method` is used it prevents access to other implementations of that

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Change the ERB handler from Erubis to Erubi.
Erubi is an Erubis fork that's svelte, simple, and currently maintained.

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Correctly set test adapter when configure the queue adapter on a per job.
Fixes #26360.

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Remove deprecated behavior that halts callbacks when the return is false.
*Rafael Mendonça França*

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Correctly dump native timestamp types for MySQL.
The native timestamp type in MySQL is different from datetime type.

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Cache `ActiveSupport::TimeWithZone#to_datetime` before freezing.
*Adam Rice*

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -1,2 +1,6 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* No changes.
Please check [5-0-stable](https://github.com/rails/rails/blob/5-0-stable/guides/CHANGELOG.md) for previous changes.

@ -1,3 +1,5 @@
## Rails 5.1.0.beta1 (February 23, 2017) ##
* Fix running multiple tests in one `rake` command
e.g. `bin/rake test:models test:controllers`

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 1
TINY = 0
PRE = "alpha"
PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end