mirror of https://github.com/rails/rails
Preparing for 4.1.15.rc1 release
This commit is contained in:
parent
03c9957dfe
commit
06d2bfd42a
52
Gemfile.lock
52
Gemfile.lock
|
@ -1,45 +1,45 @@
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
actionmailer (4.1.14.2)
|
||||
actionpack (= 4.1.14.2)
|
||||
actionview (= 4.1.14.2)
|
||||
actionmailer (4.1.15.rc1)
|
||||
actionpack (= 4.1.15.rc1)
|
||||
actionview (= 4.1.15.rc1)
|
||||
mail (~> 2.5, >= 2.5.4)
|
||||
actionpack (4.1.14.2)
|
||||
actionview (= 4.1.14.2)
|
||||
activesupport (= 4.1.14.2)
|
||||
actionpack (4.1.15.rc1)
|
||||
actionview (= 4.1.15.rc1)
|
||||
activesupport (= 4.1.15.rc1)
|
||||
rack (~> 1.5.2)
|
||||
rack-test (~> 0.6.2)
|
||||
actionview (4.1.14.2)
|
||||
activesupport (= 4.1.14.2)
|
||||
actionview (4.1.15.rc1)
|
||||
activesupport (= 4.1.15.rc1)
|
||||
builder (~> 3.1)
|
||||
erubis (~> 2.7.0)
|
||||
activemodel (4.1.14.2)
|
||||
activesupport (= 4.1.14.2)
|
||||
activemodel (4.1.15.rc1)
|
||||
activesupport (= 4.1.15.rc1)
|
||||
builder (~> 3.1)
|
||||
activerecord (4.1.14.2)
|
||||
activemodel (= 4.1.14.2)
|
||||
activesupport (= 4.1.14.2)
|
||||
activerecord (4.1.15.rc1)
|
||||
activemodel (= 4.1.15.rc1)
|
||||
activesupport (= 4.1.15.rc1)
|
||||
arel (~> 5.0.0)
|
||||
activesupport (4.1.14.2)
|
||||
activesupport (4.1.15.rc1)
|
||||
i18n (~> 0.6, >= 0.6.9)
|
||||
json (~> 1.7, >= 1.7.7)
|
||||
minitest (~> 5.1)
|
||||
thread_safe (~> 0.1)
|
||||
tzinfo (~> 1.1)
|
||||
rails (4.1.14.2)
|
||||
actionmailer (= 4.1.14.2)
|
||||
actionpack (= 4.1.14.2)
|
||||
actionview (= 4.1.14.2)
|
||||
activemodel (= 4.1.14.2)
|
||||
activerecord (= 4.1.14.2)
|
||||
activesupport (= 4.1.14.2)
|
||||
rails (4.1.15.rc1)
|
||||
actionmailer (= 4.1.15.rc1)
|
||||
actionpack (= 4.1.15.rc1)
|
||||
actionview (= 4.1.15.rc1)
|
||||
activemodel (= 4.1.15.rc1)
|
||||
activerecord (= 4.1.15.rc1)
|
||||
activesupport (= 4.1.15.rc1)
|
||||
bundler (>= 1.3.0, < 2.0)
|
||||
railties (= 4.1.14.2)
|
||||
railties (= 4.1.15.rc1)
|
||||
sprockets-rails (~> 2.0)
|
||||
railties (4.1.14.2)
|
||||
actionpack (= 4.1.14.2)
|
||||
activesupport (= 4.1.14.2)
|
||||
railties (4.1.15.rc1)
|
||||
actionpack (= 4.1.15.rc1)
|
||||
activesupport (= 4.1.15.rc1)
|
||||
rake (>= 0.8.7)
|
||||
thor (>= 0.18.1, < 2.0)
|
||||
|
||||
|
@ -71,7 +71,7 @@ GEM
|
|||
mail (2.6.3)
|
||||
mime-types (>= 1.16, < 3)
|
||||
metaclass (0.0.4)
|
||||
mime-types (2.99)
|
||||
mime-types (2.99.1)
|
||||
mini_portile2 (2.0.0)
|
||||
minitest (5.3.3)
|
||||
mocha (0.14.0)
|
||||
|
|
|
@ -1 +1 @@
|
|||
4.1.14.2
|
||||
4.1.15.rc1
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.14.2 (February 26, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -7,8 +7,8 @@ module ActionMailer
|
|||
module VERSION
|
||||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 14
|
||||
PRE = "2"
|
||||
TINY = 15
|
||||
PRE = "rc1"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.14.2 (February 26, 2016) ##
|
||||
|
||||
* Do not allow render with unpermitted parameter.
|
||||
|
|
|
@ -7,8 +7,8 @@ module ActionPack
|
|||
module VERSION
|
||||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 14
|
||||
PRE = "2"
|
||||
TINY = 15
|
||||
PRE = "rc1"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
||||
|
||||
* Changed the meaning of `render "foo/bar"`.
|
||||
|
||||
Previously, calling `render "foo/bar"` in a controller action is equivalent
|
||||
|
|
|
@ -7,8 +7,8 @@ module ActionView
|
|||
module VERSION
|
||||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 14
|
||||
PRE = "2"
|
||||
TINY = 15
|
||||
PRE = "rc1"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.14.2 (February 26, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -7,8 +7,8 @@ module ActiveModel
|
|||
module VERSION
|
||||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 14
|
||||
PRE = "2"
|
||||
TINY = 15
|
||||
PRE = "rc1"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
||||
|
||||
* Fixes custom primary keys for associations when calling `Relation#where`
|
||||
|
||||
Fixes #23327.
|
||||
|
|
|
@ -7,8 +7,8 @@ module ActiveRecord
|
|||
module VERSION
|
||||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 14
|
||||
PRE = "2"
|
||||
TINY = 15
|
||||
PRE = "rc1"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.14.2 (February 26, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -7,8 +7,8 @@ module ActiveSupport
|
|||
module VERSION
|
||||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 14
|
||||
PRE = "2"
|
||||
TINY = 15
|
||||
PRE = "rc1"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.14.2 (February 26, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
||||
## Rails 4.1.14.2 (February 26, 2016) ##
|
||||
|
||||
* No changes.
|
||||
|
|
|
@ -7,8 +7,8 @@ module Rails
|
|||
module VERSION
|
||||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 14
|
||||
PRE = "2"
|
||||
TINY = 15
|
||||
PRE = "rc1"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -7,8 +7,8 @@ module Rails
|
|||
module VERSION
|
||||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 14
|
||||
PRE = "2"
|
||||
TINY = 15
|
||||
PRE = "rc1"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue