diff --git a/docs/changelog.rst b/docs/changelog.rst index fbadf2411d..58ca4b7daf 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -22,6 +22,42 @@ Anyone who uses the :py:class:`report_to_master :py:class:`slave_report ` events, needs to make sure that any data that is attached to the slave reports is serializable by msgpack. +requests updated to version 1.2 +------------------------------- + +Locust updated `requests `_ to the latest major release. + +.. note:: + + Requests 1.0 introduced some major API changes. Please check if you + are using any internal features and check the documentation: + `Migrating to 1.x `_ + + +Big refactoring of request statistics code +------------------------------------------ + +Refactored :py:class:`RequestStats`. + +* Created :py:class:`StatsEntry` which represents a single stats entry (URL). + +Previously the :py:class:`RequestStats` was actually doing two different things: + +* It was holding track of the aggregated stats from all requests +* It was holding the stats for single stats entries. + +Now RequestStats should be instantiated and holds the global stats, as well as a dict of StatsEntry instances which holds the stats for single stats entries (URLs) + + +Other changes +------------- + +* You can now specify the port on which to run the web host +* Various code cleanups +* Updated gevent/zmq libraries +* Switched to unittest2 discovery + + 0.6.2 =====