/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-11 08:44:59 UTC
  • mfrom: (5221 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100511084459-pb0uinna9zs3wu59
Merge trunk - resolve conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
Compatibility Breaks
14
14
********************
15
15
 
 
16
* An API break has been made to the lock_write method of ``Branch`` and
 
17
  ``Repository`` objects; they now return ``branch.BranchWriteLockResult``
 
18
  and ``repository.RepositoryWriteLockResult`` objects. This makes
 
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
  (Robert Collins)
 
23
 
 
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
 
16
29
New Features
17
30
************
18
31
 
30
43
  pack operation.
31
44
  (Parth Malwankar, #304320)
32
45
 
 
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
 
33
56
Bug Fixes
34
57
*********
35
58
 
38
61
  better with sudo.
39
62
  (Martin <gzlist@googlemail.com>, Parth Malwankar, #376388)
40
63
 
 
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
 
41
71
* ``bzr log --exclude-common-ancestry -r X..Y`` displays the revisions that
42
72
  are part of Y ancestry but not part of X ancestry (aka the graph
43
73
  difference).
44
74
  (Vincent Ladeuil, #320119)
45
75
 
 
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
 
46
80
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
47
81
  (Vincent Ladeuil, #566670)
48
82
 
56
90
  versions before 1.6.
57
91
  (Andrew Bennetts, #528041)
58
92
 
 
93
* Heavyweight checkout operation now shows a message to the user indicating
 
94
  history is being copied.
 
95
  (Parth Malwankar, #538868)
 
96
 
59
97
* Reduce peak memory by one copy of compressed text.
60
98
  (John Arbash Meinel, #566940)
61
99
 
63
101
  more comprehensible.
64
102
  (Martin Pool, #491763)
65
103
 
 
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
 
66
115
Improvements
67
116
************
68
117
 
74
123
  (case-sensitive) as false.
75
124
  (Brian de Alwis, Vincent Ladeuil)
76
125
 
 
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
 
77
130
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
78
131
  be interpreted as a boolean.
79
132
  (Vincent Ladeuil)
96
149
  implementations.
97
150
  (Martin Pool)
98
151
 
 
152
* Lock methods on ``Tree``, ``Branch`` and ``Repository`` are now
 
153
  expected to return an object which can be used to unlock them. This reduces
 
154
  duplicate code when using cleanups. The previous 'tokens's returned by
 
155
  ``Branch.lock_write`` and ``Repository.lock_write`` are now attributes
 
156
  on the result of the lock_write. ``repository.RepositoryWriteLockResult``
 
157
  and ``branch.BranchWriteLockResult`` document this. (Robert Collins)
 
158
 
 
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
 
99
167
Internals
100
168
*********
101
169
 
 
170
* ``log._get_info_for_log_files`` now takes an add_cleanup callable.
 
171
  (Robert Collins)
 
172
 
102
173
* ``_remember_remote_is_before`` no longer raises AssertionError when
103
174
  suboptimal network behaviour is noticed; instead it just mutters to the
104
175
  log file (and warns the user if they have set the ``hpss`` debug flag).
232
303
* ``bzrlib.diff.get_trees_and_branches_to_diff`` is deprecated.  Use
233
304
  ``get_trees_and_branches_to_diff_locked`` instead.
234
305
  (Andrew Bennetts)
 
306
 
 
307
* ``TreeTransform.commit`` supports the full set of commit parameters, and
 
308
  auto-determines branch nick if not supplied.  (Aaron Bentley)
235
309
  
236
310
Internals
237
311
*********