Skip to content

Commit f7a9860

Browse files
committed
Prep Rails 5 beta 4
1 parent ba907d6 commit f7a9860

File tree

22 files changed

+71
-49
lines changed

22 files changed

+71
-49
lines changed

Gemfile.lock

Lines changed: 37 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -36,58 +36,58 @@ GIT
3636
PATH
3737
remote: .
3838
specs:
39-
actioncable (5.0.0.beta3)
40-
actionpack (= 5.0.0.beta3)
39+
actioncable (5.0.0.beta4)
40+
actionpack (= 5.0.0.beta4)
4141
nio4r (~> 1.2)
4242
websocket-driver (~> 0.6.1)
43-
actionmailer (5.0.0.beta3)
44-
actionpack (= 5.0.0.beta3)
45-
actionview (= 5.0.0.beta3)
46-
activejob (= 5.0.0.beta3)
43+
actionmailer (5.0.0.beta4)
44+
actionpack (= 5.0.0.beta4)
45+
actionview (= 5.0.0.beta4)
46+
activejob (= 5.0.0.beta4)
4747
mail (~> 2.5, >= 2.5.4)
4848
rails-dom-testing (~> 1.0, >= 1.0.5)
49-
actionpack (5.0.0.beta3)
50-
actionview (= 5.0.0.beta3)
51-
activesupport (= 5.0.0.beta3)
49+
actionpack (5.0.0.beta4)
50+
actionview (= 5.0.0.beta4)
51+
activesupport (= 5.0.0.beta4)
5252
rack (~> 2.x)
5353
rack-test (~> 0.6.3)
5454
rails-dom-testing (~> 1.0, >= 1.0.5)
5555
rails-html-sanitizer (~> 1.0, >= 1.0.2)
56-
actionview (5.0.0.beta3)
57-
activesupport (= 5.0.0.beta3)
56+
actionview (5.0.0.beta4)
57+
activesupport (= 5.0.0.beta4)
5858
builder (~> 3.1)
5959
erubis (~> 2.7.0)
6060
rails-dom-testing (~> 1.0, >= 1.0.5)
6161
rails-html-sanitizer (~> 1.0, >= 1.0.2)
62-
activejob (5.0.0.beta3)
63-
activesupport (= 5.0.0.beta3)
62+
activejob (5.0.0.beta4)
63+
activesupport (= 5.0.0.beta4)
6464
globalid (>= 0.3.6)
65-
activemodel (5.0.0.beta3)
66-
activesupport (= 5.0.0.beta3)
67-
activerecord (5.0.0.beta3)
68-
activemodel (= 5.0.0.beta3)
69-
activesupport (= 5.0.0.beta3)
65+
activemodel (5.0.0.beta4)
66+
activesupport (= 5.0.0.beta4)
67+
activerecord (5.0.0.beta4)
68+
activemodel (= 5.0.0.beta4)
69+
activesupport (= 5.0.0.beta4)
7070
arel (~> 7.0)
71-
activesupport (5.0.0.beta3)
71+
activesupport (5.0.0.beta4)
7272
concurrent-ruby (~> 1.0)
7373
i18n (~> 0.7)
7474
minitest (~> 5.1)
7575
tzinfo (~> 1.1)
76-
rails (5.0.0.beta3)
77-
actioncable (= 5.0.0.beta3)
78-
actionmailer (= 5.0.0.beta3)
79-
actionpack (= 5.0.0.beta3)
80-
actionview (= 5.0.0.beta3)
81-
activejob (= 5.0.0.beta3)
82-
activemodel (= 5.0.0.beta3)
83-
activerecord (= 5.0.0.beta3)
84-
activesupport (= 5.0.0.beta3)
76+
rails (5.0.0.beta4)
77+
actioncable (= 5.0.0.beta4)
78+
actionmailer (= 5.0.0.beta4)
79+
actionpack (= 5.0.0.beta4)
80+
actionview (= 5.0.0.beta4)
81+
activejob (= 5.0.0.beta4)
82+
activemodel (= 5.0.0.beta4)
83+
activerecord (= 5.0.0.beta4)
84+
activesupport (= 5.0.0.beta4)
8585
bundler (>= 1.3.0, < 2.0)
86-
railties (= 5.0.0.beta3)
86+
railties (= 5.0.0.beta4)
8787
sprockets-rails (>= 2.0.0)
88-
railties (5.0.0.beta3)
89-
actionpack (= 5.0.0.beta3)
90-
activesupport (= 5.0.0.beta3)
88+
railties (5.0.0.beta4)
89+
actionpack (= 5.0.0.beta4)
90+
activesupport (= 5.0.0.beta4)
9191
method_source
9292
rake (>= 0.8.7)
9393
thor (>= 0.18.1, < 2.0)
@@ -154,11 +154,13 @@ GEM
154154
rb-inotify (>= 0.9)
155155
loofah (2.0.3)
156156
nokogiri (>= 1.5.9)
157-
mail (2.6.3)
158-
mime-types (>= 1.16, < 3)
157+
mail (2.6.4)
158+
mime-types (>= 1.16, < 4)
159159
metaclass (0.0.4)
160160
method_source (0.8.2)
161-
mime-types (2.99.1)
161+
mime-types (3.0)
162+
mime-types-data (~> 3.2015)
163+
mime-types-data (3.2016.0221)
162164
mini_portile2 (2.0.0)
163165
minitest (5.3.3)
164166
mocha (0.14.0)

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.0.beta3
1+
5.0.0.beta4

actioncable/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 5.0.0.beta4 (April 27, 2016) ##
2+
13
* WebSocket protocol negotiation.
24

35
Introduces an Action Cable protocol version that moves independently

actioncable/lib/action_cable/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta3"
11+
PRE = "beta4"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

actionmailer/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 5.0.0.beta4 (April 27, 2016) ##
2+
13
* Disallow calling `#deliver_later` after making local modifications to
24
the message which would be lost when the delivery job is enqueued.
35

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta3"
11+
PRE = "beta4"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

actionpack/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 5.0.0.beta4 (April 27, 2016) ##
2+
13
* Routing: Refactor `:action` default handling to ensure that path
24
parameters are not mutated during route generation.
35

actionpack/lib/action_pack/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta3"
11+
PRE = "beta4"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

actionview/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 5.0.0.beta4 (April 27, 2016) ##
2+
13
* `date_select` helper `:with_css_classes` option now accepts a hash of strings
24
for `:year`, `:month`, `:day`, `:hour`, `:minute`, `:second` that will extend
35
the select type with the given css class value.

actionview/lib/action_view/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta3"
11+
PRE = "beta4"
1212

1313
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
1414
end

0 commit comments

Comments
 (0)