/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2010-05-06 23:54:05 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506235405-wii4elupfhzl3jvy
Add __str__ to the new helper classes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
  ``Repository`` objects; they now return ``branch.BranchWriteLockResult``
18
18
  and ``repository.RepositoryWriteLockResult`` objects. This makes
19
19
  changing the API in future easier and permits some cleaner calling code.
20
 
  The lock_read method has also changed from having no defined return
21
 
  value to returning ``LogicalLockResult`` objects.
22
20
  (Robert Collins)
23
21
 
24
 
* ``bzr`` does not try to guess the username as ``username@hostname``
25
 
  and requires it to be explictly set. This can be set using ``bzr
26
 
  whoami``.
27
 
  (Parth Malwankar, #549310)
28
 
 
29
22
New Features
30
23
************
31
24
 
43
36
  pack operation.
44
37
  (Parth Malwankar, #304320)
45
38
 
46
 
* New command line option ``--authors`` to ``bzr log`` allows users to
47
 
  select which of the apparent authors and committer should be
48
 
  included in the log. Defaults depend on format. (Martin von Gagern, #513322)
49
 
 
50
 
* Support ``--directory`` option for a number of additional commands:
51
 
  added, annotate, bind, cat, cat-revision, clean-tree, deleted,
52
 
  export, ignore, ignored, lookup-revision, ls, modified, nick,
53
 
  re-sign, unbind, unknowns.
54
 
  (Martin von Gagern, #527878)
55
 
 
56
39
Bug Fixes
57
40
*********
58
41
 
61
44
  better with sudo.
62
45
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
63
46
 
64
 
* ``bzr clean-tree`` should not delete nested bzrdirs. Required for proper
65
 
  support of bzr-externals and scmproj plugins.
66
 
  (Alexander Belchenko, bug #572098)
67
 
 
68
 
* ``bzr ignore`` will no longer add duplicate patterns to .bzrignore.
69
 
  (Gordon Tyler, #572092)
70
 
 
71
47
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
72
48
  are part of Y ancestry but not part of X ancestry (aka the graph
73
49
  difference).
74
50
  (Vincent Ladeuil, #320119)
75
51
 
76
 
* ``bzr rm`` should not refuse to delete directories which contained a file
77
 
  which has been moved elsewhere in the tree after the previous commit.
78
 
  (Marius Kruger, Daniel Watkins, #129880)
79
 
 
80
52
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
81
53
  (Vincent Ladeuil, #566670)
82
54
 
90
62
  versions before 1.6.
91
63
  (Andrew Bennetts, #528041)
92
64
 
93
 
* Heavyweight checkout operation now shows a message to the user indicating
94
 
  history is being copied.
95
 
  (Parth Malwankar, #538868)
96
 
 
97
65
* Reduce peak memory by one copy of compressed text.
98
66
  (John Arbash Meinel, #566940)
99
67
 
101
69
  more comprehensible.
102
70
  (Martin Pool, #491763)
103
71
 
104
 
* Unicode characters in aliases are now handled correctly and do not cause
105
 
  UnicodeEncodeError exception. (Parth Malwankar, #529930)
106
 
 
107
 
* Unicode commit messages that are the same as a file name no longer cause
108
 
  UnicodeEncodeError. ``ui.text.show_warning`` now handles unicode
109
 
  messages.
110
 
  (Parth Malwankar, #563646)
111
 
 
112
 
* Using bzr with `lp:` urls behind an http proxy should work.
113
 
  (Robert Collins, #558343)
114
 
 
115
72
Improvements
116
73
************
117
74
 
123
80
  (case-sensitive) as false.
124
81
  (Brian de Alwis, Vincent Ladeuil)
125
82
 
126
 
* ``bzr ls`` now supports short options for existing long options.
127
 
  ``-k/--kind``, ``-i/--ignored``, ``-u/--unknown`` and ``-0/--null``.
128
 
  (Parth Malwankar, #181124)
129
 
 
130
83
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
131
84
  be interpreted as a boolean.
132
85
  (Vincent Ladeuil)
156
109
  on the result of the lock_write. ``repository.RepositoryWriteLockResult``
157
110
  and ``branch.BranchWriteLockResult`` document this. (Robert Collins)
158
111
 
159
 
* ``Repository.refresh_data`` may now be called in a write group on
160
 
  pack-based repositories.  Older repositories will still raise an error
161
 
  in this case.  Subclasses of ``Repository`` can still override
162
 
  ``Repository._refresh_data``, but are now responsible for raising
163
 
  ``bzrlib.repository.IsInWriteGroupError`` if they do not support
164
 
  ``refresh_data`` during a write group.
165
 
  (Andrew Bennetts, #574236)
166
 
 
167
112
Internals
168
113
*********
169
114
 
303
248
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
304
249
  ``get_trees_and_branches_to_diff_locked`` instead.
305
250
  (Andrew Bennetts)
306
 
 
307
 
* ``TreeTransform.commit`` supports the full set of commit parameters, and
308
 
  auto-determines branch nick if not supplied.  (Aaron Bentley)
309
251
  
310
252
Internals
311
253
*********