42
42
.. Fixes for situations where bzr would previously crash or give incorrect
43
43
or undesirable results.
45
* ``bzrlib.log._DEFAULT_REQUEST_PARAMS`` is no longer accidentally
46
mutated by ``bzrlib.log._apply_log_request_defaults``. In practice
47
these default values aren't relied on very often so this probably
48
wasn't causing any trouble. (Andrew Bennetts)
45
* ``bzrlib.log._DEFAULT_REQUEST_PARAMS`` is no longer accidentally
46
mutated by ``bzrlib.log._apply_log_request_defaults``. In practice
47
these default values aren't relied on very often so this probably
48
wasn't causing any trouble. (Andrew Bennetts)
50
* Lazy hooks are now reset between test runs. (Jelmer Vernooij, #745566)
50
* Lazy hooks are now reset between test runs. (Jelmer Vernooij, #745566)
52
52
* Standalone bzr.exe installation on Windows: user can put additional python
53
53
libraries into ``site-packages`` subdirectory of the installation directory,
54
54
this might be required for "installing" extra dependencies for some plugins.
55
55
(Alexander Belchenko, #743256)
57
* ``TreeTransform.create_file/new_file`` can now take an optional ``sha1``
58
parameter. If supplied, when the transform is applied, it will then call
59
``self._tree._observed_sha1`` for those files. This lets us update the
60
hash-cache for content that we create, preventing us from re-reading the
61
content in the next ``bzr status``. (John Arbash Meinel, #740932)