~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.4.txt

(jameinel) TreeTransform.create_file and new_file can be passed sha1,
 which will trigger a call to Tree._observed_sha1,
 caching the sha and stat information. (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
.. Fixes for situations where bzr would previously crash or give incorrect
43
43
   or undesirable results.
44
44
 
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)
49
49
 
50
 
 * Lazy hooks are now reset between test runs. (Jelmer Vernooij, #745566)
 
50
* Lazy hooks are now reset between test runs. (Jelmer Vernooij, #745566)
51
51
 
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)
56
56
 
 
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)
 
62
 
57
63
Documentation
58
64
*************
59
65