Skip to content

Commit a2bd669

Browse files
committedMar 13, 2019
Merge tag 'v6.0.0.beta3'
v6.0.0.beta3 release
2 parents 1dc4d49 + 7c87fd5 commit a2bd669

File tree

38 files changed

+156
-36
lines changed

38 files changed

+156
-36
lines changed
 

‎RAILS_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.0.0.beta2
1+
6.0.0.beta3

‎actioncable/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* PostgreSQL subscription adapters now support `channel_prefix` option in cable.yml

‎actioncable/lib/action_cable/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎actioncable/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rails/actioncable",
3-
"version": "6.0.0-beta2",
3+
"version": "6.0.0-beta3",
44
"description": "WebSocket framework for Ruby on Rails.",
55
"main": "app/assets/javascripts/action_cable.js",
66
"files": [

‎actionmailbox/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* Allow skipping incineration of processed emails.

‎actionmailbox/lib/action_mailbox/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎actionmailer/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* No changes.

‎actionmailer/lib/action_mailer/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎actionpack/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* Make debug exceptions works in an environment where ActiveStorage is not loaded.

‎actionpack/lib/action_dispatch/http/mime_negotiation.rb

+5
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ def formats
7979
else
8080
[Mime[:html]]
8181
end
82+
83+
v = v.select do |format|
84+
format.symbol || format.ref == "*/*"
85+
end
86+
8287
set_header k, v
8388
end
8489
end

‎actionpack/lib/action_dispatch/middleware/session/cookie_store.rb

+4-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ module Session
2424
#
2525
# Rails.application.config.session_store :cookie_store, key: '_your_app_session'
2626
#
27-
# By default, your secret key base is derived from your application name in
28-
# the test and development environments. In all other environments, it is stored
29-
# encrypted in the <tt>config/credentials.yml.enc</tt> file.
27+
# In the development and test environments your application's secret key base is
28+
# generated by Rails and stored in a temporary file in <tt>tmp/development_secret.txt</tt>.
29+
# In all other environments, it is stored encrypted in the
30+
# <tt>config/credentials.yml.enc</tt> file.
3031
#
3132
# If your application was not updated to Rails 5.2 defaults, the secret_key_base
3233
# will be found in the old <tt>config/secrets.yml</tt> file.

‎actionpack/lib/action_pack/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎actionpack/test/controller/mime/respond_to_test.rb

+6-4
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def using_non_conflicting_nested_js_then_js
125125
def custom_type_handling
126126
respond_to do |type|
127127
type.html { render body: "HTML" }
128-
type.custom("application/crazy-xml") { render body: "Crazy XML" }
128+
type.custom("application/fancy-xml") { render body: "Fancy XML" }
129129
type.all { render body: "Nothing" }
130130
end
131131
end
@@ -314,12 +314,14 @@ def setup
314314
@request.host = "www.example.com"
315315
Mime::Type.register_alias("text/html", :iphone)
316316
Mime::Type.register("text/x-mobile", :mobile)
317+
Mime::Type.register("application/fancy-xml", :fancy_xml)
317318
end
318319

319320
def teardown
320321
super
321322
Mime::Type.unregister(:iphone)
322323
Mime::Type.unregister(:mobile)
324+
Mime::Type.unregister(:fancy_xml)
323325
end
324326

325327
def test_html
@@ -489,10 +491,10 @@ def test_synonyms
489491
end
490492

491493
def test_custom_types
492-
@request.accept = "application/crazy-xml"
494+
@request.accept = "application/fancy-xml"
493495
get :custom_type_handling
494-
assert_equal "application/crazy-xml", @response.content_type
495-
assert_equal "Crazy XML", @response.body
496+
assert_equal "application/fancy-xml", @response.content_type
497+
assert_equal "Fancy XML", @response.body
496498

497499
@request.accept = "text/html"
498500
get :custom_type_handling

‎actionpack/test/controller/new_base/content_negotiation_test.rb

+12-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,19 @@ class TestContentNegotiation < Rack::TestCase
2020
assert_body "Hello world */*!"
2121
end
2222

23-
test "Not all mimes are converted to symbol" do
23+
test "A js or */* Accept header will return HTML" do
24+
get "/content_negotiation/basic/hello", headers: { "HTTP_ACCEPT" => "text/javascript, */*" }
25+
assert_body "Hello world text/html!"
26+
end
27+
28+
test "A js or */* Accept header on xhr will return HTML" do
29+
get "/content_negotiation/basic/hello", headers: { "HTTP_ACCEPT" => "text/javascript, */*" }, xhr: true
30+
assert_body "Hello world text/javascript!"
31+
end
32+
33+
test "Unregistered mimes are ignored" do
2434
get "/content_negotiation/basic/all", headers: { "HTTP_ACCEPT" => "text/plain, mime/another" }
25-
assert_body '[:text, "mime/another"]'
35+
assert_body '[:text]'
2636
end
2737
end
2838
end

‎actiontext/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* No changes.

‎actiontext/lib/action_text/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎actiontext/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rails/actiontext",
3-
"version": "6.0.0-beta2",
3+
"version": "6.0.0-beta3",
44
"description": "Edit and display rich text in Rails applications",
55
"main": "app/javascript/actiontext/index.js",
66
"files": [

‎actionview/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* ActionView::Template.finalize_compiled_template_methods is deprecated with

‎actionview/lib/action_view/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎actionview/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rails/ujs",
3-
"version": "6.0.0-beta2",
3+
"version": "6.0.0-beta3",
44
"description": "Ruby on Rails unobtrusive scripting adapter",
55
"main": "lib/assets/compiled/rails-ujs.js",
66
"files": [

‎activejob/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* No changes.

‎activejob/lib/active_job/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎activemodel/CHANGELOG.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
11
* Change how validation error translation strings are fetched: The new behavior
22
will first try the more specific keys, including doing locale fallback, then try
33
the less specific ones.
4-
4+
55
For example, this is the order in which keys will now be tried for a `blank`
66
error on a `product`'s `title` attribute with current locale set to `en-US`:
7-
7+
88
en-US.activerecord.errors.models.product.attributes.title.blank
99
en-US.activerecord.errors.models.product.blank
1010
en-US.activerecord.errors.messages.blank
11-
11+
1212
en.activerecord.errors.models.product.attributes.title.blank
1313
en.activerecord.errors.models.product.blank
1414
en.activerecord.errors.messages.blank
15-
15+
1616
en-US.errors.attributes.title.blank
1717
en-US.errors.messages.blank
18-
18+
1919
en.errors.attributes.title.blank
2020
en.errors.messages.blank
21-
21+
2222
*Hugo Vacher*
2323

24+
25+
## Rails 6.0.0.beta3 (March 11, 2019) ##
26+
27+
* No changes.
28+
29+
2430
## Rails 6.0.0.beta2 (February 25, 2019) ##
2531

2632
* Fix date value when casting a multiparameter date hash to not convert

‎activemodel/lib/active_model/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎activerecord/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@
7070
*Juani Villarejo*
7171
7272
73+
## Rails 6.0.0.beta3 (March 11, 2019) ##
74+
75+
* No changes.
76+
77+
7378
## Rails 6.0.0.beta2 (February 25, 2019) ##
7479
7580
* Fix prepared statements caching to be enabled even when query caching is enabled.

‎activerecord/lib/active_record/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎activestorage/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* No changes.

‎activestorage/lib/active_storage/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎activestorage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rails/activestorage",
3-
"version": "6.0.0-beta2",
3+
"version": "6.0.0-beta3",
44
"description": "Attach cloud and local files in Rails applications",
55
"main": "app/assets/javascripts/activestorage.js",
66
"files": [

‎activesupport/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@
2727
*DHH*
2828

2929

30+
## Rails 6.0.0.beta3 (March 11, 2019) ##
31+
32+
* No changes.
33+
34+
3035
## Rails 6.0.0.beta2 (February 25, 2019) ##
3136

3237
* New autoloading based on [Zeitwerk](https://github.com/fxn/zeitwerk).

‎activesupport/lib/active_support/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎guides/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* No changes.

‎railties/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 6.0.0.beta3 (March 11, 2019) ##
2+
3+
* No changes.
4+
5+
16
## Rails 6.0.0.beta2 (February 25, 2019) ##
27

38
* Fix non-symbol access to nested hashes returned from `Rails::Application.config_for`

‎railties/lib/rails/application.rb

+17-2
Original file line numberDiff line numberDiff line change
@@ -415,8 +415,8 @@ def secrets
415415
# then credentials.secret_key_base, and finally secrets.secret_key_base. For most applications,
416416
# the correct place to store it is in the encrypted credentials file.
417417
def secret_key_base
418-
if Rails.env.test? || Rails.env.development?
419-
secrets.secret_key_base || Digest::MD5.hexdigest(self.class.name)
418+
if Rails.env.development? || Rails.env.test?
419+
secrets.secret_key_base ||= generate_development_secret
420420
else
421421
validate_secret_key_base(
422422
ENV["SECRET_KEY_BASE"] || credentials.secret_key_base || secrets.secret_key_base
@@ -581,6 +581,21 @@ def validate_secret_key_base(secret_key_base)
581581

582582
private
583583

584+
def generate_development_secret
585+
if secrets.secret_key_base.nil?
586+
key_file = Rails.root.join("tmp/development_secret.txt")
587+
588+
if !File.exist?(key_file)
589+
random_key = SecureRandom.hex(64)
590+
File.binwrite(key_file, random_key)
591+
end
592+
593+
secrets.secret_key_base = File.binread(key_file)
594+
end
595+
596+
secrets.secret_key_base
597+
end
598+
584599
def build_request(env)
585600
req = super
586601
env["ORIGINAL_FULLPATH"] = req.fullpath

‎railties/lib/rails/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

‎railties/test/application/configuration_test.rb

+21-1
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,27 @@ def index
596596
assert_equal "some_value", verifier.verify(message)
597597
end
598598

599+
test "application will generate secret_key_base in tmp file if blank in development" do
600+
app_file "config/initializers/secret_token.rb", <<-RUBY
601+
Rails.application.credentials.secret_key_base = nil
602+
RUBY
603+
604+
app "development"
605+
606+
assert_not_nil app.secrets.secret_key_base
607+
assert File.exist?(app_path("tmp/development_secret.txt"))
608+
end
609+
610+
test "application will not generate secret_key_base in tmp file if blank in production" do
611+
app_file "config/initializers/secret_token.rb", <<-RUBY
612+
Rails.application.credentials.secret_key_base = nil
613+
RUBY
614+
615+
assert_raises ArgumentError do
616+
app "production"
617+
end
618+
end
619+
599620
test "raises when secret_key_base is blank" do
600621
app_file "config/initializers/secret_token.rb", <<-RUBY
601622
Rails.application.credentials.secret_key_base = nil
@@ -619,7 +640,6 @@ def index
619640

620641
test "application verifier can build different verifiers" do
621642
make_basic_app do |application|
622-
application.credentials.secret_key_base = "b3c631c314c0bbca50c1b2843150fe33"
623643
application.config.session_store :disabled
624644
end
625645

‎railties/test/isolation/abstract_unit.rb

+1
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ def self.name; "RailtiesTestApp"; end
226226
@app.config.session_store :cookie_store, key: "_myapp_session"
227227
@app.config.active_support.deprecation = :log
228228
@app.config.log_level = :info
229+
@app.secrets.secret_key_base = "b3c631c314c0bbca50c1b2843150fe33"
229230

230231
yield @app if block_given?
231232
@app.initialize!

‎version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module VERSION
1010
MAJOR = 6
1111
MINOR = 0
1212
TINY = 0
13-
PRE = "beta2"
13+
PRE = "beta3"
1414

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

0 commit comments

Comments
 (0)
Please sign in to comment.