1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove deprecated support to passing a class to :class_name on associations

This commit is contained in:
Rafael Mendonça França 2017-08-23 16:07:48 -04:00
parent 8f5b34df81
commit e65aff7069
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948
5 changed files with 10 additions and 25 deletions

View file

@ -1,3 +1,7 @@
* Remove deprecated support to passing a class to `:class_name` on associations.
*Rafael Mendonça França*
* Remove deprecated argument `default` from `index_name_exists?`.
*Rafael Mendonça França*

View file

@ -1848,7 +1848,7 @@ module ActiveRecord
builder = Builder::HasAndBelongsToMany.new name, self, options
join_model = ActiveSupport::Deprecation.silence { builder.through_model }
join_model = builder.through_model
const_set join_model.name, join_model
private_constant join_model.name
@ -1877,7 +1877,7 @@ module ActiveRecord
hm_options[k] = options[k] if options.key? k
end
ActiveSupport::Deprecation.silence { has_many name, scope, hm_options, &extension }
has_many name, scope, hm_options, &extension
_reflections[name.to_s].parent_reflection = habtm_reflection
end
end

View file

@ -431,14 +431,7 @@ module ActiveRecord
@association_scope_cache = Concurrent::Map.new
if options[:class_name] && options[:class_name].class == Class
ActiveSupport::Deprecation.warn(<<-MSG.squish)
Passing a class to the `class_name` is deprecated and will raise
an ArgumentError in Rails 5.2. It eagerloads more classes than
necessary and potentially creates circular dependencies.
Please pass the class name as a string:
`#{macro} :#{name}, class_name: '#{options[:class_name]}'`
MSG
raise ArgumentError, "A class was passed to `:class_name` but we are expecting a string."
end
end

View file

@ -88,12 +88,6 @@ class DeveloperWithSymbolClassName < Developer
has_and_belongs_to_many :projects, class_name: :ProjectWithSymbolsForKeys
end
ActiveSupport::Deprecation.silence do
class DeveloperWithConstantClassName < Developer
has_and_belongs_to_many :projects, class_name: ProjectWithSymbolsForKeys
end
end
class DeveloperWithExtendOption < Developer
module NamedExtension
def category
@ -954,13 +948,6 @@ class HasAndBelongsToManyAssociationsTest < ActiveRecord::TestCase
end
end
def test_with_constant_class_name
assert_nothing_raised do
developer = DeveloperWithConstantClassName.new
developer.projects
end
end
def test_alternate_database
professor = Professor.create(name: "Plum")
course = Course.create(name: "Forensics")

View file

@ -432,9 +432,10 @@ class ReflectionTest < ActiveRecord::TestCase
end
def test_class_for_class_name
assert_deprecated do
assert_predicate ActiveRecord::Reflection.create(:has_many, :clients, nil, { class_name: Client }, Firm), :validate?
error = assert_raises(ArgumentError) do
ActiveRecord::Reflection.create(:has_many, :clients, nil, { class_name: Client }, Firm)
end
assert_equal "A class was passed to `:class_name` but we are expecting a string.", error.message
end
def test_join_table