~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Update release-notes

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 
45
45
 * Lazy hooks are now reset between test runs. (Jelmer Vernooij, #745566)
46
46
 
47
 
* ``TreeTransform.create_file`` can trigger calls to ``_observed_sha1``
48
 
  for content that it creates. This means that ``merge`` and ``checkout``
49
 
  should be able to cache the sha values, and avoid re-reading the files
50
 
  on the next ``bzr status`` that gets run. (John Arbash Meinel, #740932)
 
47
* ``TreeTransform.create_file/new_file`` can now take an optional ``sha1``
 
48
  parameter. If supplied, when the transform is applied, it will then call
 
49
  ``self._tree._observed_sha1`` for those files. This lets us update the
 
50
  hash-cache for content that we create, preventing us from re-reading the
 
51
  content in the next ``bzr status``.  (John Arbash Meinel, #740932)
51
52
 
52
53
Documentation
53
54
*************