~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Parth Malwankar
  • Date: 2010-05-06 11:22:28 UTC
  • mfrom: (5214 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5241.
  • Revision ID: parth.malwankar@gmail.com-20100506112228-oswa6eknx7rmztyv
merged in changes from trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
Compatibility Breaks
14
14
********************
15
15
 
 
16
* ``bzr`` does not try to guess the username as ``username@hostname``
 
17
  and requires it to be explictly set. This can be set using ``bzr
 
18
  whoami``.
 
19
  (Parth Malwankar, #549310)
 
20
 
16
21
New Features
17
22
************
18
23
 
30
35
  pack operation.
31
36
  (Parth Malwankar, #304320)
32
37
 
 
38
* New command line option ``--authors`` to ``bzr log`` allows users to
 
39
  select which of the apparent authors and committer should be
 
40
  included in the log. Defaults depend on format. (Martin von Gagern, #513322)
 
41
 
 
42
* Support ``--directory`` option for a number of additional commands:
 
43
  added, annotate, bind, cat, cat-revision, clean-tree, deleted,
 
44
  export, ignore, ignored, lookup-revision, ls, modified, nick,
 
45
  re-sign, unbind, unknowns.
 
46
  (Martin von Gagern, #527878)
 
47
 
33
48
Bug Fixes
34
49
*********
35
50
 
38
53
  better with sudo.
39
54
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
40
55
 
 
56
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
 
57
  support of bzr-externals and scmproj plugins.
 
58
  (Alexander Belchenko, bug #572098)
 
59
 
 
60
* ``bzr ignore`` will no longer add duplicate patterns to .bzrignore.
 
61
  (Gordon Tyler, #572092)
 
62
 
41
63
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
42
64
  are part of Y ancestry but not part of X ancestry (aka the graph
43
65
  difference).
44
66
  (Vincent Ladeuil, #320119)
45
67
 
 
68
* ``bzr rm`` should not refuse to delete directories which contained a file
 
69
  which has been moved elsewhere in the tree after the previous commit.
 
70
  (Marius Kruger, Daniel Watkins, #129880)
 
71
 
46
72
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
47
73
  (Vincent Ladeuil, #566670)
48
74
 
67
93
  more comprehensible.
68
94
  (Martin Pool, #491763)
69
95
 
 
96
* Unicode characters in aliases are now handled correctly and do not cause
 
97
  UnicodeEncodeError exception. (Parth Malwankar, #529930)
 
98
 
 
99
* Unicode commit messages that are the same as a file name no longer cause
 
100
  UnicodeEncodeError. ``ui.text.show_warning`` now handles unicode
 
101
  messages.
 
102
  (Parth Malwankar, #563646)
 
103
 
70
104
Improvements
71
105
************
72
106
 
100
134
  implementations.
101
135
  (Martin Pool)
102
136
 
 
137
* ``Repository.refresh_data`` may now be called in a write group on
 
138
  pack-based repositories.  Older repositories will still raise an error
 
139
  in this case.  Subclasses of ``Repository`` can still override
 
140
  ``Repository._refresh_data``, but are now responsible for raising
 
141
  ``bzrlib.repository.IsInWriteGroupError`` if they do not support
 
142
  ``refresh_data`` during a write group.
 
143
  (Andrew Bennetts, #574236)
 
144
 
103
145
Internals
104
146
*********
105
147