Skip to content

Commit

Permalink
update to Django 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Jul 16, 2024
1 parent b68b13f commit c1920be
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: 'mongodb-forks/django'
ref: 'mongodb-5.0.x'
ref: 'mongodb-5.1.x'
path: 'django_repo'
- name: Install system packages for Django's Python test dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion django_mongodb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "5.0a0"
__version__ = "5.1a0"

# Check Django compatibility before other imports which may fail if the
# wrong version of Django is installed.
Expand Down
8 changes: 7 additions & 1 deletion django_mongodb/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
"lookup.tests.LookupTests.test_lookup_collision",
"expressions.test_queryset_values.ValuesExpressionsTests.test_values_list_expression",
"expressions.test_queryset_values.ValuesExpressionsTests.test_values_list_expression_flat",
"expressions.tests.IterableLookupInnerExpressionsTests.test_expressions_in_lookups_join_choice",
"expressions.tests.IterableLookupInnerExpressionsTests.test_expressions_range_lookups_join_choice",
"expressions_case.tests.CaseExpressionTests.test_join_promotion",
"expressions_case.tests.CaseExpressionTests.test_join_promotion_multiple_annotations",
"ordering.tests.OrderingTests.test_order_by_grandparent_fk_with_expression_in_default_ordering",
Expand All @@ -107,6 +107,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
# Querying the reverse side of a foreign key for None returns no
# results: https://github.com/mongodb-labs/django-mongodb/issues/76
"one_to_one.tests.OneToOneTests.test_filter_one_to_one_relations",
# $concat only supports strings, not int
"db_functions.text.test_concat.ConcatTests.test_concat_non_str",
}
# $bitAnd, #bitOr, and $bitXor are new in MongoDB 6.3.
_django_test_expected_failures_bitwise = {
Expand Down Expand Up @@ -164,6 +166,8 @@ def django_test_expected_failures(self):
"expressions.tests.BasicExpressionsTests.test_object_update_unsaved_objects",
"expressions.tests.BasicExpressionsTests.test_order_of_operations",
"expressions.tests.BasicExpressionsTests.test_parenthesis_priority",
"expressions.tests.BasicExpressionsTests.test_slicing_of_f_expressions_charfield",
"expressions.tests.BasicExpressionsTests.test_slicing_of_f_expressions_textfield",
"expressions.tests.BasicExpressionsTests.test_update",
"expressions.tests.BasicExpressionsTests.test_update_with_fk",
"expressions.tests.BasicExpressionsTests.test_update_with_none",
Expand Down Expand Up @@ -306,6 +310,7 @@ def django_test_expected_failures(self):
"expressions.tests.BasicExpressionsTests.test_boolean_expression_in_Q",
"expressions.tests.BasicExpressionsTests.test_case_in_filter_if_boolean_output_field",
"expressions.tests.BasicExpressionsTests.test_exists_in_filter",
"expressions.tests.BasicExpressionsTests.test_slicing_of_outerref",
"expressions.tests.BasicExpressionsTests.test_subquery",
"expressions.tests.ExistsTests.test_filter_by_empty_exists",
"expressions.tests.ExistsTests.test_negated_empty_exists",
Expand Down Expand Up @@ -405,6 +410,7 @@ def django_test_expected_failures(self):
},
"Test inspects query for SQL": {
"lookup.tests.LookupTests.test_in_ignore_none",
"lookup.tests.LookupTests.test_lookup_direct_value_rhs_unwrapped",
"lookup.tests.LookupTests.test_textfield_exact_null",
},
"Test executes raw SQL.": {
Expand Down

0 comments on commit c1920be

Please sign in to comment.