File tree Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 11
11
tags :
12
12
- ' v[0-9]+\.[0-9]+\.[0-9]+*'
13
13
env :
14
- MONGODB_3_6 : 3.6.14
15
- MONGODB_4_0 : 4.0.23
16
- MONGODB_4_2 : 4.2
14
+ MONGODB_3_6 : 3.6.23
15
+ MONGODB_4_0 : 4.0.28
17
16
MONGODB_4_4 : 4.4
17
+ MONGODB_5_0 : " 5.0"
18
18
19
19
PYMONGO_3_4 : 3.4
20
20
PYMONGO_3_6 : 3.6
21
21
PYMONGO_3_9 : 3.9
22
22
PYMONGO_3_11 : 3.11
23
23
PYMONGO_3_12 : 3.12
24
24
PYMONGO_4_0 : 4.0
25
+ PYMONGO_4_3 : 4.3.2
25
26
26
27
MAIN_PYTHON_VERSION : 3.7
27
28
53
54
- python-version : 3.7
54
55
MONGODB : $MONGODB_3_6
55
56
PYMONGO : $PYMONGO_3_9
56
- - python-version : 3.7
57
- MONGODB : $MONGODB_4_2
58
- PYMONGO : $PYMONGO_3_9
59
57
- python-version : 3.7
60
58
MONGODB : $MONGODB_4_4
61
59
PYMONGO : $PYMONGO_3_11
65
63
- python-version : 3.9
66
64
MONGODB : $MONGODB_4_4
67
65
PYMONGO : $PYMONGO_4_0
66
+ - python-version : " 3.10"
67
+ MONGODB : $MONGODB_5_0
68
+ PYMONGO : $PYMONGO_4_3
68
69
steps :
69
70
- uses : actions/checkout@v2
70
71
- name : Set up Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ if [[ "$MONGODB" == *"4.2"* ]]; then
9
9
mongo_build=mongodb-linux-x86_64-ubuntu1804-v${MONGODB} -latest
10
10
elif [[ " $MONGODB " == * " 4.4" * ]]; then
11
11
mongo_build=mongodb-linux-x86_64-ubuntu1804-v${MONGODB} -latest
12
+ elif [[ " $MONGODB " == * " 5.0" * ]]; then
13
+ mongo_build=mongodb-linux-x86_64-ubuntu1804-v${MONGODB} -latest
12
14
fi
13
15
14
16
wget http://fastdl.mongodb.org/linux/$mongo_build .tgz
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ an `API reference <https://mongoengine-odm.readthedocs.io/apireference.html>`_.
31
31
32
32
Supported MongoDB Versions
33
33
==========================
34
- MongoEngine is currently tested against MongoDB v3.6, v4.0, v4.2 and v4.4 . Future versions
34
+ MongoEngine is currently tested against MongoDB v3.6, v4.0, v4.4 and v5.0 . Future versions
35
35
should be supported as well, but aren't actively tested at the moment. Make
36
36
sure to open an issue or submit a pull request if you experience any problems
37
37
with a more recent MongoDB versions.
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Development
9
9
- (Fill this out as you fix issues and develop your features).
10
10
- Support MONGODB-AWS authentication mechanism (with `authmechanismproperties `) #2507
11
11
- Turning off dereferencing for the results of distinct query. #2663
12
+ - Add tests against Mongo 5.0 in pipeline
12
13
13
14
Changes in 0.24.2
14
15
=================
Original file line number Diff line number Diff line change 11
11
mg311: pymongo>=3.11,<3.12
12
12
mg312: pymongo>=3.12,<3.13
13
13
mg4: pymongo>=4.0,<4.1
14
+ mg432: pymongo>=4.3,<4.4
14
15
setenv =
15
16
PYTHON_EGG_CACHE = {envdir}/python-eggs
You can’t perform that action at this time.
0 commit comments