]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
deprecation warnings: strings in loader options, join, with_parent
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 20 Oct 2021 16:50:53 +0000 (12:50 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 25 Oct 2021 16:09:41 +0000 (12:09 -0400)
commit92aa35e7fc737de58c25d6c22bf1c48f6c4c714b
treef3c46d6d198441bb7f8ca7e8a7b2322b26491782
parent605d0d905855684bfe4409532af98f336ae38f82
deprecation warnings: strings in loader options, join, with_parent

Repairs one in-library deprecation warning regarding
mapper propagation of options

raises maxfail to 250, as 25 is too low when we are trying
to address many errors at once.   the 25 was originally
due to the fact that our fixtures would be broken after
that many failures in most cases, which today should not
be the case nearly as often.

Change-Id: I26affddf42e2cae2aaf9561633e9b8cd431eb189
35 files changed:
lib/sqlalchemy/ext/associationproxy.py
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/strategy_options.py
lib/sqlalchemy/testing/warnings.py
setup.cfg
test/ext/test_associationproxy.py
test/ext/test_horizontal_shard.py
test/orm/inheritance/test_assorted_poly.py
test/orm/inheritance/test_basic.py
test/orm/inheritance/test_polymorphic_rel.py
test/orm/inheritance/test_relationship.py
test/orm/inheritance/test_single.py
test/orm/test_ac_relationships.py
test/orm/test_assorted_eager.py
test/orm/test_cache_key.py
test/orm/test_composites.py
test/orm/test_default_strategies.py
test/orm/test_deferred.py
test/orm/test_deprecations.py
test/orm/test_eager_relations.py
test/orm/test_expire.py
test/orm/test_froms.py
test/orm/test_generative.py
test/orm/test_joins.py
test/orm/test_lazy_relations.py
test/orm/test_mapper.py
test/orm/test_merge.py
test/orm/test_of_type.py
test/orm/test_options.py
test/orm/test_pickled.py
test/orm/test_query.py
test/orm/test_relationships.py
test/orm/test_selectin_relations.py
test/orm/test_subquery_relations.py
test/orm/test_unitofwork.py