提交 49f6ce63 编写于 作者: S Sean Griffin

Preparing for Rails 5.0.0.beta2

上级 633969f1
......@@ -29,60 +29,60 @@ GIT
PATH
remote: .
specs:
actioncable (5.0.0.beta1.1)
actionpack (= 5.0.0.beta1.1)
actioncable (5.0.0.beta2)
actionpack (= 5.0.0.beta2)
nio4r (~> 1.2)
websocket-driver (~> 0.6.1)
actionmailer (5.0.0.beta1.1)
actionpack (= 5.0.0.beta1.1)
actionview (= 5.0.0.beta1.1)
activejob (= 5.0.0.beta1.1)
actionmailer (5.0.0.beta2)
actionpack (= 5.0.0.beta2)
actionview (= 5.0.0.beta2)
activejob (= 5.0.0.beta2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (5.0.0.beta1.1)
actionview (= 5.0.0.beta1.1)
activesupport (= 5.0.0.beta1.1)
actionpack (5.0.0.beta2)
actionview (= 5.0.0.beta2)
activesupport (= 5.0.0.beta2)
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.beta1.1)
activesupport (= 5.0.0.beta1.1)
actionview (5.0.0.beta2)
activesupport (= 5.0.0.beta2)
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.beta1.1)
activesupport (= 5.0.0.beta1.1)
activejob (5.0.0.beta2)
activesupport (= 5.0.0.beta2)
globalid (>= 0.3.6)
activemodel (5.0.0.beta1.1)
activesupport (= 5.0.0.beta1.1)
activerecord (5.0.0.beta1.1)
activemodel (= 5.0.0.beta1.1)
activesupport (= 5.0.0.beta1.1)
activemodel (5.0.0.beta2)
activesupport (= 5.0.0.beta2)
activerecord (5.0.0.beta2)
activemodel (= 5.0.0.beta2)
activesupport (= 5.0.0.beta2)
arel (~> 7.0)
activesupport (5.0.0.beta1.1)
activesupport (5.0.0.beta2)
concurrent-ruby (~> 1.0)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
method_source
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.0.0.beta1.1)
actioncable (= 5.0.0.beta1.1)
actionmailer (= 5.0.0.beta1.1)
actionpack (= 5.0.0.beta1.1)
actionview (= 5.0.0.beta1.1)
activejob (= 5.0.0.beta1.1)
activemodel (= 5.0.0.beta1.1)
activerecord (= 5.0.0.beta1.1)
activesupport (= 5.0.0.beta1.1)
rails (5.0.0.beta2)
actioncable (= 5.0.0.beta2)
actionmailer (= 5.0.0.beta2)
actionpack (= 5.0.0.beta2)
actionview (= 5.0.0.beta2)
activejob (= 5.0.0.beta2)
activemodel (= 5.0.0.beta2)
activerecord (= 5.0.0.beta2)
activesupport (= 5.0.0.beta2)
bundler (>= 1.3.0, < 2.0)
railties (= 5.0.0.beta1.1)
railties (= 5.0.0.beta2)
sprockets-rails (>= 2.0.0)
railties (5.0.0.beta1.1)
actionpack (= 5.0.0.beta1.1)
activesupport (= 5.0.0.beta1.1)
railties (5.0.0.beta2)
actionpack (= 5.0.0.beta2)
activesupport (= 5.0.0.beta2)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
......@@ -164,7 +164,7 @@ GEM
mysql2 (0.4.2)
mysql2 (0.4.2-x64-mingw32)
mysql2 (0.4.2-x86-mingw32)
nio4r (1.2.0)
nio4r (1.2.1)
nokogiri (1.6.7.2)
mini_portile2 (~> 2.0.0.rc2)
nokogiri (1.6.7.2-x64-mingw32)
......@@ -234,7 +234,7 @@ GEM
sprockets (3.5.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.0.0)
sprockets-rails (3.0.1)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
......
5.0.0.beta1.1
5.0.0.beta2
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
* Create notion of an `ActionCable::SubscriptionAdapter`.
Separate out Redis functionality into
`ActionCable::SubscriptionAdapter::Redis`, and add a
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
## Rails 5.0.0.beta1 (December 18, 2015) ##
* `config.force_ssl = true` will set
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
* Add `-g` and `-c` (short for _grep_ and _controller_ respectively) options
to `bin/rake routes`. These options return the url `name`, `verb` and
`path` field that match the pattern or match a specific controller.
......@@ -7,7 +12,7 @@
See #18902.
*Anton Davydov* & *Vipul A M*
* Response etags to always be weak: Prefixes 'W/' to value returned by
`ActionDispatch::Http::Cache::Response#etag=`, such that etags set in
`fresh_when` and `stale?` are weak.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
* Fix stripping the digest from the automatically generated img tag alt
attribute when assets are handled by Sprockets >=3.0.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
## Rails 5.0.0.beta1 (December 18, 2015) ##
* Fixed serializing `:at` option for `assert_enqueued_with`
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
## Rails 5.0.0.beta1 (December 18, 2015) ##
* Validate multiple contexts on `valid?` and `invalid?` at once.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
* `ActiveRecord::Relation#reverse_order` throws `ActiveRecord::IrreversibleOrderError`
when the order can not be reversed using current trivial algorithm.
Also raises the same error when `#reverse_order` is called on
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
* Change number_to_currency behavior for checking negativity.
Used `to_f.negative` instead of using `to_f.phase` for checking negativity
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
## Rails 5.0.0.beta1 (December 18, 2015) ##
* Add code of conduct to contributing guide
......
## Rails 5.0.0.beta2 (February 01, 2016) ##
* No changes.
* Add `after_bundle` callbacks in Rails plugin templates. Useful for allowing
templates to perform actions that are dependent upon `bundle install`.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta1.1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册