Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Fixed
are parsed properly.

Contributed by Bradley Bishop (@bishopbm1 Encore Technologies)
* Fix a regression when updated ``dnspython`` pip dependency resulted in
st2 services unable to connect to mongodb remote host (bug fix) #4997

Removed
~~~~~~~
Expand Down
2 changes: 2 additions & 0 deletions fixed-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# Note: amqp is used by kombu
amqp==2.5.2
apscheduler==3.6.3
# NOTE: 2.0 version breaks pymongo work with hosts
dnspython>=1.16.0,<2.0.0
cryptography==2.8
# Note: 0.20.0 removed select.poll() on which some of our code and libraries we
# depend on rely
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ apscheduler==3.6.3
argcomplete
bcrypt==3.1.7
cryptography==2.8
dnspython<2.0.0,>=1.16.0
eventlet==0.25.1
flex==6.14.0
git+https://github.com/StackStorm/logshipper.git@stackstorm_patched#egg=logshipper
Expand Down
1 change: 1 addition & 0 deletions st2common/in-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Remeber to list implicit packages here, otherwise version won't be fixated!
apscheduler
dnspython
python-dateutil
eventlet
# used by eventlet
Expand Down
1 change: 1 addition & 0 deletions st2common/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
amqp==2.5.2
apscheduler==3.6.3
cryptography==2.8
dnspython<2.0.0,>=1.16.0
eventlet==0.25.1
flex==6.14.0
git+https://github.com/StackStorm/[email protected]#egg=orquesta
Expand Down