Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align mongodb4.4 #28

Draft
wants to merge 35 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
71af58a
positional mismatch on 4.4
davidlatwe Apr 27, 2021
991072a
positional non located match on 4.4
davidlatwe Apr 27, 2021
c947bba
fix deprecation warnings
davidlatwe Apr 28, 2021
084b0f9
set 4.4 as compat version
davidlatwe Apr 28, 2021
7ba6a9c
check positional key position
davidlatwe Apr 28, 2021
39c3ba1
update compat attributes
davidlatwe Apr 28, 2021
03f5061
check field not end with "."
davidlatwe Apr 28, 2021
fe7fe31
fix typo from c947bbaa
davidlatwe Apr 28, 2021
bd89b6f
Merge branch 'master' into align-mongodb4.4
davidlatwe May 29, 2021
5a7b9a6
testing mongodb 4.4
davidlatwe May 29, 2021
8e86856
Merge branch 'master' into align-mongodb4.4
davidlatwe Jun 5, 2021
7b50a9e
Merge branch 'master' into align-mongodb4.4
davidlatwe Jun 20, 2021
894e92a
flake8: bump max-complexity
davidlatwe Jun 20, 2021
725b30f
Merge branch 'master' into align-mongodb4.4
davidlatwe Jun 20, 2021
18fa399
project: fix regression
davidlatwe Jun 20, 2021
151c90e
tests: update projection test specific for 4.4
davidlatwe Jun 20, 2021
853286b
Merge branch 'master' into align-mongodb4.4
davidlatwe Jun 26, 2021
6b445e2
Merge branch 'master' into align-mongodb4.4
davidlatwe Jul 2, 2021
ce6a36c
add projection path collision check
davidlatwe Jul 7, 2021
2a99bdd
add $mod remainder check
davidlatwe Jul 7, 2021
318389b
Merge branch 'master' into align-mongodb4.4
davidlatwe Jul 7, 2021
c7a3261
flake8: bump max-complexity, again
davidlatwe Jul 7, 2021
7cdc500
flake8: fix indent (E126)
davidlatwe Jul 7, 2021
3fd4fd9
Merge branch 'master' into align-mongodb4.4
davidlatwe Jan 21, 2023
c3a2faa
Cleanup after master merged
davidlatwe Jan 21, 2023
55224a2
Add mongodb 5.0, 6.0
davidlatwe Jan 22, 2023
0735ebf
Add mongoengine to test; Drop Python 3.6
davidlatwe Jan 22, 2023
fcaa688
Update poetry.lock
davidlatwe Jan 22, 2023
0c3862d
Update poetry.lock
davidlatwe Jan 22, 2023
fe4d6b4
Merge branch 'master' into align-mongodb4.4
davidlatwe Feb 3, 2023
0ba3d5d
Fix query mod regression
davidlatwe Feb 3, 2023
aef4af7
Exclude poetry-version from matrix
davidlatwe Feb 3, 2023
e83e863
Add test cases
davidlatwe Feb 3, 2023
016b62a
Cleanup
davidlatwe Feb 3, 2023
71f8283
Fix warnings in test
davidlatwe Feb 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
flake8: bump max-complexity, again
 ./montydb/engine/project.py:134:5:
 C901 'Projector.parser' is too complex (32)

 :(
  • Loading branch information
davidlatwe committed Jul 7, 2021
commit c7a32614f648613a7f71cf09c328e9dc7e4fd256
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Lint with flake8
run: |
# Ideally max-complexity should be set to 10
flake8 . --count --ignore=F841,W503 --max-complexity=29 --max-line-length=88 --statistics
flake8 . --count --ignore=F841,W503 --max-complexity=32 --max-line-length=88 --statistics

- name: Find typos with codespell
run: codespell --ignore-words-list=nd,nin
Expand Down