Skip to content

Commit

Permalink
Update for 1.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
stennie committed Dec 27, 2019
1 parent 3d0d760 commit 777c143
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,42 @@
Changes to mtools
=================

version 1.6.0
~~~~~~~~~~~~~
Now supporting Python 3.6+ (only)

* Add support for Python 3.7 and 3.8
* Remove support for Python 2.7
* Update requirements to modern package versions
* Require minimum dependency versions rather than exact
* mlaunch: mlaunch with no options should show --help (#749)
* mlaunch: Fix --storageEngine confusingly reported as ignored in sharded
deployments (#730)
* mlaunch: Fix unquoted --wiredTigerEngineConfigString parameter (#683)
* mloginfo: mloginfo with no options should show usage info (#751)
* mloginfo: Fix for --queries gives AttributeError if there is a field called
"query" in the log (#741)
* mloginfo: Fix --queries gives `TypeError` for some logs (#697)
* mloginfo: Add --checkpoints to show slow WiredTiger checkpoints if
available (#707)
* mloginfo: Improve --queries to show allowDiskUse for aggregations if
available (#708)
* mloginfo: Add --clients to show client summary info (#540)
* mloginfo: Add --cursors to show cursor information if available (#710)
* mloginfo: Add --storagestats to display storage statistics (#711)
* mloginfo: Add --transactions to display slow transactions if available (#704)
* mloginfo: Include queries without durations in the query count (#680)
* mplotqueries: Fix --group-limit throws error in Python 3.x (#688)
* mplotqueries: Add --dns to display slow DNS Resolutions if available (#706)
* mplotqueries: Add --oplog to display slow oplog entries if available (#705)
* Update mention of oldest non-EOL MongoDB server version (3.6 as of Jan 2020)
* util/logfile.py: Reading log from stdin hits error on str.decode() in
Python 3 (#658)

Thanks to @stennie, @kallimachos, @kevinadi, @savinay-vijay, @mitesh-gosavi,
@HenryGP, @sindbach, @garycahill, @karlvr, and @josemonteiro
for contributions to this release.

version 1.5.3
~~~~~~~~~~~~~
* mlaunch: Quote mongos --logpath (to handle paths with spaces)
Expand Down
2 changes: 1 addition & 1 deletion mtools/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/python
"""Mtools version."""

__version__ = '1.6.0-dev'
__version__ = '1.6.0'

0 comments on commit 777c143

Please sign in to comment.