/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

merge bzr.dev r4221

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
  must now be explicitly added tree references.  At the commandline, use
17
17
  join --reference instead of add.  (Aaron Bentley)
18
18
 
 
19
* The ``--long`` log format (the default) no longer shows merged
 
20
  revisions implicitly, making it consistent with the ``short`` and
 
21
  ``line`` log formats.  To see merged revisions for just a given
 
22
  revision, use ``bzr log -n0 -rX``. To see every merged revision,
 
23
  use ``bzr log -n0``.  (Ian Clatworthy)
 
24
 
19
25
New Features
20
26
************
21
27
 
88
94
  implemented using a new ``Repository.insert_stream_locked`` RPC.
89
95
  (Andrew Bennetts, Robert Collins)
90
96
 
 
97
* The "ignoring files outside view: .." message has been re-worded
 
98
  to "Ignoring files outside view. View is .." to reduce confusion
 
99
  about what was being considered and what was being ignored.
 
100
  (Ian Clatworthy)
 
101
 
 
102
* The ``long`` log formatter now shows [merge] indicators. If
 
103
  only one level of revisions is displayed and merges are found,
 
104
  the ``long`` and ``short`` log formatters now tell the user
 
105
  how to see the hidden merged revisions.  (Ian Clatworthy)
 
106
 
91
107
* Tildes are no longer escaped. No more %7Euser/project/branch!
92
108
  (Jonathan Lange)
93
109
 
136
152
* Shelve can now shelve changes to a symlink target.
137
153
  (James Westby, #341558)
138
154
 
 
155
* The help for the ``info`` command has been corrected.
 
156
  (Ian Clatworthy, #351931)
 
157
 
 
158
* Upgrade will now use a sensible default format if the source repository
 
159
  uses rich roots.  (Jelmer Vernooij, #252908)
 
160
 
139
161
Documentation
140
162
*************
141
163
 
152
174
* APIs deprecated in 1.6 and previous verisons of bzr are now removed.
153
175
  (Martin Pool)
154
176
 
 
177
* ``CommitReporter`` is no longer called with ``unchanged`` status during
 
178
  commit - this was a full-tree overhead that bzr no longer performs.
 
179
  (Robert Collins)
 
180
 
155
181
* New API ``Inventory.filter()`` added that filters an inventory by
156
182
  a set of file-ids so that only those fileids, their parents and
157
183
  their children are included.  (Ian Clatworthy)
178
204
  module documentation for ``bzrlib.smart.request`` for details.
179
205
  (Andrew Bennetts, Robert Collins)
180
206
 
 
207
* ``Tree.get_symlink_target`` now always returns a unicode string result
 
208
  or None. Previously it would return the bytes from reading the link
 
209
  which could be in any arbitrary encoding. (Robert Collins)
 
210
 
181
211
Testing
182
212
*******
183
213
 
230
260
  make visible data inserted into the repository by a smart server
231
261
  fetch operation. (Robert Collins, Andrew Bennetts)
232
262
 
 
263
* ``register_filter_stack_map`` now takes an optional fallback parameter,
 
264
  a callable to invoke if a preference has a value not in the map
 
265
  of filter stacks. This enhancement allows, for example,  bzr-svn to
 
266
  handle existing svn properties that define a list of keywords to be
 
267
  expanded.  (Ian Clatworthy)
 
268
 
233
269
* ``RemoteRepository`` will now negatively cache missing revisions during
234
270
  ``get_parent_map`` while read-locked. Write-locks are unaffected.
235
271
  (Robert Collins, Andrew Bennetts)