~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-21 17:54:58 UTC
  • mfrom: (4948.5.7 ignore-exclusion)
  • Revision ID: pqm@pqm.ubuntu.com-20100121175458-17l0cvckbrf93eea
(John Whitley) implement ! and !! to exclude files from ignore rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. contents:: List of Releases
6
6
   :depth: 1
7
7
 
8
 
bzr 2.2.0b1
9
 
###########
10
 
 
11
 
:Codename: ???
12
 
:2.2.0b1: Not released yet
13
 
 
14
 
Compatibility Breaks
15
 
********************
16
 
 
17
 
* Deleted very old hidden commands ``versionedfile-list``,
18
 
  ``weave-plan-merge``, ``weave-merge-text``.
19
 
  (Martin Pool)
20
 
 
21
 
* ``Repository.get_inventory_sha1()`` and ``Repository.get_revision_xml()`` 
22
 
  have been removed. (Jelmer Vernooij)
23
 
 
24
 
* ``Repository.get_revision_inventory()`` has been removed in favor of
25
 
  ``Repository.get_inventory()``. (Jelmer Vernooij)
26
 
 
27
 
* All test servers have been moved out of the bzrlib.transport hierarchy to
28
 
  bzrlib.tests.test_server *except* for MemoryServer, ChrootServer and
29
 
  PathFilteringServer. ``bzrlib`` users may encounter test failures that can
30
 
  be fixed by updating the related imports from ``bzrlib.transport.xxx`` to
31
 
  ``bzrlib.tests.test_server``.
32
 
  (Vincent Ladeuil)
33
 
 
34
 
New Features
35
 
************
36
 
 
37
 
* If the Apport crash-reporting tool is available, bzr crashes are now
38
 
  stored into the ``/var/crash`` apport spool directory, and the user is
39
 
  invited to report them to the developers from there, either
40
 
  automatically or by running ``apport-bug``.  No information is sent
41
 
  without specific permission from the user.  (Martin Pool, #515052)
42
 
 
43
 
* Parsing of command lines, for example in ``diff --using``, no longer
44
 
  treats backslash as an escape character on Windows.   (Gordon Tyler,
45
 
  #392248)
46
 
 
47
 
* Tree-shape conflicts can be resolved by providing ``--take-this`` and
48
 
  ``--take-other`` to the ``bzr resolve`` command. Just marking the conflict
49
 
  as resolved is still accessible via the ``--done`` default action.
50
 
  (Vincent Ladeuil)
51
 
 
52
 
* Merges can be proposed on Launchpad with the new lp-propose-merge command.
53
 
  (Aaron Bentley, Jonathan Lange)
54
 
 
55
 
Bug Fixes
56
 
*********
57
 
 
58
 
* Added docstring for ``Tree.iter_changes``
59
 
  (John Arbash Meinel, #304182)
60
 
 
61
 
* Allow exporting a single file using ``bzr export``.
62
 
  (Michal Junák, #511987)
63
 
 
64
 
* Avoid infinite recursion when probing for apport.
65
 
  (Vincent Ladeuil, #516934)
66
 
 
67
 
* Avoid ``malloc(0)`` in ``patiencediff``, which is non-portable.
68
 
  (Martin Pool, #331095)
69
 
 
70
 
* ``bzr add`` will not add conflict related files unless explicitly required.
71
 
  (Vincent Ladeuil, #322767, #414589)
72
 
 
73
 
* ``bzr remove-tree`` can now remove multiple working trees.
74
 
  (Jared Hance, Andrew Bennetts, #253137)
75
 
 
76
 
* Network transfer amounts and rates are now displayed in SI units according
77
 
  to the Ubuntu Units Policy <https://wiki.ubuntu.com/UnitsPolicy>.
78
 
  (Gordon Tyler, #514399)
79
 
 
80
 
* Support kind markers for socket and fifo filesystem objects. This
81
 
  prevents ``bzr status --short`` from crashing when those files are
82
 
  present.  (John Arbash Meinel, #303275)
83
 
 
84
 
* ``bzr upgrade`` now names backup directory as ``backup.bzr.~N~`` instead
85
 
  of ``backup.bzr``. This directory is ignored by bzr commands such as
86
 
  ``add``.
87
 
  (Parth Malwankar, #335033, #300001)
88
 
 
89
 
API Changes
90
 
***********
91
 
 
92
 
* New ``bzrlib.initialize`` is recommended for programs using bzrlib to 
93
 
  run when starting up; it sets up several things that previously needed
94
 
  to be done separately.
95
 
  (Martin Pool, #507710)
96
 
 
97
 
* Remove unused ``CommandFailed`` exception.
98
 
  (Martin Pool)
99
 
 
100
 
Internals
101
 
*********
102
 
 
103
 
* ``bzrlib.commands.run_bzr`` is more extensible: callers can supply the
104
 
  functions to load or disable plugins if they wish to use a different
105
 
  plugin mechanism; the --help, --version and no-command name code paths
106
 
  now use the generic pluggable command lookup infrastructure.
107
 
  (Robert Collins)
108
 
 
109
 
Testing
110
 
*******
111
 
 
112
 
* New `bzrlib.tests.test_import_tariff` can make assertions about what
113
 
  Python modules are loaded, to guard against startup time or library
114
 
  dependency regressions.
115
 
  (Martin Pool)
116
 
 
117
 
* Stop sending apport crash files to ``.cache`` in the directory from
118
 
  which ``bzr selftest`` was run.  (Martin Pool, #422350)
119
 
 
120
 
bzr 2.1.1
121
 
#########
122
 
 
123
 
:2.1.1: not released yet
124
 
 
125
 
Bug Fixes
126
 
*********
127
 
 
128
 
* Register SIGWINCH handler only when creating a ``TextUIFactory``; avoids
129
 
  problems importing bzrlib from a non-main thread.
130
 
  (Elliot Murphy, #521989)
131
 
 
132
 
* Standardize the error handling when creating a new ``StaticTuple``
133
 
  (problems will raise TypeError). (Matt Nordhoff, #457979)
134
 
 
135
 
* Merge correctly when this_tree is not a WorkingTree.  (Aaron Bentley)
136
 
 
137
 
Documentation
138
 
*************
139
 
 
140
 
* Added What's New in Bazaar 2.1 document. (Ian Clatworthy)
141
 
 
142
 
bzr 2.1.0
143
 
#########
144
 
 
145
 
:Codename: Strasbourg
146
 
:2.1.0: 2010-02-11
147
 
 
148
 
This release marks our second long-term-stable series. The Bazaar team
149
 
has decided that we will continue to make bugfix-only 2.0.x and 2.1.x
150
 
releases, along with 2.2 development releases. 
151
 
 
152
 
This is a fairly incremental update, focusing on polish and bugfixing.
153
 
There are no changes for supported disk formats. Key updates include
154
 
reduced memory consumption for many operations, a new per-file merge
155
 
hook, ignore patterns can now include '!' to exclude files, globbing
156
 
support for all commands on Windows, and support for addressing home
157
 
directories via ``bzr+ssh://host/~/`` syntax.
158
 
 
159
 
Users are encouraged to upgrade from the 2.0 stable series.
160
 
 
161
 
Bug Fixes
162
 
*********
163
 
 
164
 
* Don't require testtools to use sftp.
165
 
  (Vincent Ladeuil, #516183)
166
 
 
167
 
* Fix "AttributeError in Inter1and2Helper" during fetch.
168
 
  (Martin Pool, #513432)
169
 
 
170
 
* ``bzr update`` performs the two merges in a more logical order and will stop
171
 
  when it encounters conflicts.  
172
 
  (Gerard Krol, #113809)
173
 
 
174
 
* Fix ``log`` to better check ancestors even if merged revisions are involved.
175
 
  (Vincent Ladeuil, #476293)
176
 
 
177
 
* Give a better error message when doing ``bzr bind`` in an already bound
178
 
  branch.  (Neil Martinsen-Burrell, #513063)
179
 
 
180
 
* Ignore ``KeyError`` from ``remove_index`` during ``_abort_write_group``
181
 
  in a pack repository, which can happen harmlessly if the abort occurs during
182
 
  finishing the write group.  Also use ``bzrlib.cleanup`` so that any
183
 
  other errors that occur while aborting the individual packs won't be
184
 
  hidden by secondary failures when removing the corresponding indices.
185
 
  (Andrew Bennetts, #423015)
186
 
 
187
 
* Set the mtime of files exported to a directory by ``bzr export`` all to
188
 
  the same value to avoid confusing ``make`` and other date-based build
189
 
  systems. (Robert Collins, #515631)
190
 
 
191
 
Improvements
192
 
************
193
 
 
194
 
* Fetching into experimental formats will now print a warning. (Jelmer
195
 
  Vernooij)
196
 
 
197
 
API Changes
198
 
***********
199
 
 
200
 
* ``Repository.deserialise_inventory`` has been renamed to 
201
 
  ``Repository._deserialise_inventory`` to indicate it is private.
202
 
  (Jelmer Vernooij)
203
 
 
204
 
* ``Repository.get_inventory_xml`` has been renamed to 
205
 
  ``Repository._get_inventory_xml`` to indicate it is private. 
206
 
  (Jelmer Vernooij)
207
 
 
208
 
* ``Repository.serialise_inventory`` has been renamed to 
209
 
  ``Repository._serialise_inventory`` to indicate it is private.
210
 
 
211
 
* Using the ``bzrlib.chk_map`` module from within multiple threads at the
212
 
  same time was broken due to race conditions with a module level page
213
 
  cache. This shows up as a KeyError in the ``bzrlib.lru_cache`` code with
214
 
  ``bzrlib.chk_map`` in the backtrace, and can be triggered without using
215
 
  the same high level objects such as ``bzrlib.repository.Repository``
216
 
  from different threads. chk_map now uses a thread local cache which may
217
 
  increase memory pressure on processes using threads.
218
 
  (Robert Collins, John Arbash Meinel, #514090)
219
 
 
220
 
* The new ``merge_file_content`` should now be ok with tests to avoid
221
 
  regressions.
222
 
  (Vincent Ladeuil, #515597)
223
 
 
224
 
Internals
225
 
*********
226
 
 
227
 
* Use ``bzrlib.cleanup`` rather than less robust ``try``/``finally``
228
 
  blocks in several places in ``bzrlib.merge``.  This avoids masking prior
229
 
  errors when errors like ``ImmortalPendingDeletion`` occur during cleanup
230
 
  in ``do_merge``.
231
 
  (Andrew Bennetts, #517275)
232
 
 
233
 
API Changes
234
 
***********
235
 
 
236
 
* The ``remove_index`` method of
237
 
  ``bzrlib.repofmt.pack_repo.AggregateIndex`` no longer takes a ``pack``
238
 
  argument.  This argument was always ignored.
239
 
  (Andrew Bennetts, #423015)
240
 
 
241
 
bzr 2.1.0rc2
242
 
############
243
 
 
244
 
:Codename: after the bubbles
245
 
:2.1.0rc2: 2010-01-29
246
 
 
247
 
This is a quick-turn-around to update a small issue with our new per-file
248
 
merge hook. We expect no major changes from this to the final 2.1.0.
249
 
 
250
 
API Changes
251
 
***********
252
 
 
253
 
* The new ``merge_file_content`` hook point has been altered to provide a
254
 
  better API where state for extensions can be stored rather than the
255
 
  too-simple function based approach. This fixes a performance regression
256
 
  where branch configuration would be parsed per-file during merge. As
257
 
  part of this the included news_merger has been refactored into a base
258
 
  helper class ``bzrlib.merge.ConfigurableFileMerger``.
259
 
  (Robert Collins, John Arbash Meinel, #513822)
260
 
 
261
 
 
262
 
bzr 2.1.0rc1
263
 
############
 
8
bzr 2.1.0rc1 (not released yet)
 
9
###############################
264
10
 
265
11
:Codename: the 'new' stable
266
 
:2.1.0rc1: 2009-01-21
267
 
 
268
 
This is the first stable release candidate for Bazaar's 2.1 series. From
269
 
this point onwards, the 2.1 series will be considered stable (as the 2.0
270
 
series) and only bugfixes are expected to be incorporated. The dozen or so
271
 
bugfixes in the 2.0.4 release are also included in this release (along
272
 
with more than 15 more bugfixes). Some of the interesting features are
273
 
support for per-file merge hooks, ``bzr unshelve --preview``, support
274
 
for using ! in ignore files to exclude files from being ignored, a small
275
 
memory leak was squashed, and many ``ObjectNotLocked`` errors were fixed.
276
 
This looks to be a very good start for a new stable series.
277
 
 
 
12
:2.1.0rc1: 2009-01-06 (expected)
 
13
 
 
14
Compatibility Breaks
 
15
********************
278
16
 
279
17
New Features
280
18
************
281
19
 
 
20
* New ignore patterns.  Patterns prefixed with '!' are exceptions to 
 
21
  ignore patterns and take precedence over regular ignores.  Such 
 
22
  exceptions are used to specify files that should be versioned which 
 
23
  would otherwise be ignored.  Patterns prefixed with '!!' act as regular 
 
24
  ignore patterns, but have highest precedence, even over the '!' 
 
25
  exception patterns. (John Whitley, #428031)
 
26
 
282
27
* Add bug information to log output when available.
283
28
  (Neil Martinsen-Burrell, Guillermo Gonzalez, #251729)
284
29
 
310
55
  transferred for the current command. This information is always logged
311
56
  to ``.bzr.log`` for later inspection. (John Arbash Meinel)
312
57
 
313
 
* New ignore patterns.  Patterns prefixed with '!' are exceptions to 
314
 
  ignore patterns and take precedence over regular ignores.  Such 
315
 
  exceptions are used to specify files that should be versioned which 
316
 
  would otherwise be ignored.  Patterns prefixed with '!!' act as regular 
317
 
  ignore patterns, but have highest precedence, even over the '!' 
318
 
  exception patterns. (John Whitley, #428031)
319
 
 
320
58
* The ``supress_warnings`` configuration option has been introduced to disable
321
59
  various warnings (it currently only supports the ``format_deprecation``
322
60
  warning). The new option can be set in any of the following locations:
334
72
  the timestamp of a file, if the revision it was introduced in is a
335
73
  ghost. (Jelmer Vernooij, #295611)
336
74
 
 
75
* ``bzr export dir`` now requests all file content as a record stream,
 
76
  rather than requsting the file content one file-at-a-time. This can make
 
77
  exporting over the network significantly faster (54min => 9min in one
 
78
  case). (John Arbash Meinel, #343218)
 
79
 
 
80
* ``bzr serve`` no longer slowly leaks memory. The compiled
 
81
  ``bzrlib.bencode.Encoder()`` class was using ``__del__`` to cleanup and
 
82
  free resources, and it should have been using ``__dealloc__``.
 
83
  This will likely have an impact on any other process that is serving for
 
84
  an extended period of time.  (John Arbash Meinel, #494406)
 
85
 
337
86
* ``bzr switch -b`` can now create branches that are located using directory
338
87
  services such as ``lp:``, even when the branch name doesn't contain a
339
88
  '/'.  (Neil Martinsen-Burrell, #495263)
341
90
* ``bzr unshelve`` has improved messages about what it is doing.
342
91
  (Neil Martinsen-Burrell, #496917)
343
92
 
344
 
* Concurrent autopacking is more resilient to already-renamed pack files.
345
 
  If we find that a file we are about to obsolete is already obsoleted, we
346
 
  do not try to rename it, and we leave the file in ``obsolete_packs``.
347
 
  The code is also fault tolerant if a file goes missing, assuming that
348
 
  another process already removed the file.
349
 
  (John Arbash Meinel, Gareth White, #507557)
 
93
* Check for SIGINT (Ctrl-C) and other signals immediately if ``readdir``
 
94
  returns ``EINTR`` by calling ``PyErr_CheckSignals``.  This affected the
 
95
  optional ``_readdir_pyx`` extension.  (Andrew Bennetts, #495023)
350
96
 
351
97
* Fix "Too many concurrent requests" in reconcile when network connection
352
98
  fails.  (Andrew Bennetts, #503878)
361
107
* FTP transports support Unicode paths by encoding/decoding them as utf8.
362
108
  (Vincent Ladeuil, #472161)
363
109
 
 
110
* Give a clearer message if the lockdir disappears after being apparently
 
111
  successfully taken.  (Martin Pool, #498378)
 
112
 
364
113
* Listen to the SIGWINCH signal to update the terminal width.
365
114
  (Vincent Ladeuil, #316357)
366
115
 
372
121
  depended on this behaviour.
373
122
  (Martin Pool, #499757)
374
123
 
 
124
* The 2a format wasn't properly restarting autopacks when something
 
125
  changed underneath it (like another autopack). Now concurrent
 
126
  autopackers will properly succeed. (John Arbash Meinel, #495000)
 
127
 
375
128
* When operations update the working tree, all affected files should end
376
129
  up with the same mtime. (eg. when versioning a generated file, if you
377
130
  update the source and the generated file together, the generated file
442
195
  deprecation thunk, but not all. (John Arbash Meinel)
443
196
 
444
197
* Merger classes (such as ``Merge3Merger``) now expect a ``this_branch``
445
 
  parameter in their constructors, and provide ``this_branch`` as an
 
198
  parameter in their constructora, and provide ``this_branch`` as an
446
199
  attribute. (Andrew Bennetts)
447
200
  
448
201
* The Branch hooks pre_change_branch_tip no longer masks exceptions raised
495
248
  tests that 'failed' - they're all just failures.
496
249
  (Martin Pool)
497
250
 
498
 
 
499
 
bzr 2.0.5 (not released yet)
 
251
bzr 2.0.4 (not released yet)
500
252
############################
501
253
 
502
254
:Codename:
503
 
:2.0.5:
504
 
 
505
 
Bug Fixes
506
 
*********
507
 
 
508
 
* Handle renames correctly when there are files or directories that 
509
 
  differ only in case.  (Chris Jones, Martin Pool, #368931)
510
 
 
511
 
* If ``bzr push --create-prefix`` triggers an unexpected ``NoSuchFile``
512
 
  error, report that error rather than failing with an unhelpful
513
 
  ``UnboundLocalError``.
514
 
  (Andrew Bennetts, #423563)
515
 
 
516
 
* Running ``bzr`` command without any arguments now shows bzr
517
 
  version number along with rest of the help text.
518
 
  (Parth Malwankar, #369501)
519
 
 
520
 
Documentation
521
 
*************
522
 
 
523
 
* Added ``location-alias`` help topic.
524
 
  (Andrew Bennetts, #337834)
525
 
 
526
 
bzr 2.0.4
527
 
#########
528
 
 
529
 
:Codename: smooth sailing
530
 
:2.0.4: 2010-01-21
531
 
 
532
 
The fourth bugfix-only release in the 2.0 series contains more than a
533
 
dozen bugfixes relative to 2.0.3. The primary focus is on handling
534
 
interruptions and concurrent operations more cleanly, there is also a fair
535
 
improvement to ``bzr export`` when exporting a remote branch.
536
 
 
 
255
:2.0.4: smooth sailing
 
256
 
 
257
Compatibility Breaks
 
258
********************
 
259
 
 
260
New Features
 
261
************
537
262
 
538
263
Bug Fixes
539
264
*********
597
322
  the right time will get propagated, rather than silently failing to move
598
323
  the block pointer. (John Arbash Meinel, Gareth White, #495023)
599
324
 
 
325
Improvements
 
326
************
 
327
 
 
328
Documentation
 
329
*************
 
330
 
 
331
API Changes
 
332
***********
 
333
 
 
334
Internals
 
335
*********
 
336
 
600
337
Testing
601
338
*******
602
339
 
665
402
  and issues a warning.
666
403
  (Gioele Barabucci, #73073)
667
404
 
668
 
* ``bzr ignore /`` no longer causes an IndexError. (Gorden Tyler, #456036)
 
405
* ``bzr ignore /`` no longer causes an IndexError. (Gorder Tyler, #456036)
669
406
 
670
407
* ``bzr log -n0 -rN`` should not return revisions beyond its merged revisions.
671
408
  (#325618, #484109, Marius Kruger)
847
584
 
848
585
* Fix for shell completion and short options.  (Benoît PIERRE)
849
586
 
850
 
* Fix ``bzr --profile-imports`` with Python 2.6.  (Martin Pool)
851
 
 
852
587
* Hooks daughter classes should always call the base constructor.
853
588
  (Alexander Belchenko, Vincent Ladeuil, #389648) 
854
589
 
12036
11771
 
12037
11772
 
12038
11773
..
12039
 
   vim: tw=74 ft=rst ff=unix encoding=utf-8
 
11774
   vim: tw=74 ft=rst ff=unix