~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.5.txt

  • Committer: Launchpad Translations on behalf of bzr-core
  • Date: 2012-07-21 04:30:31 UTC
  • mto: (6581.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6582.
  • Revision ID: launchpad_translations_on_behalf_of_bzr-core-20120721043031-pjhomz88j0qw381z
Launchpad automatic translations update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
8
 
bzr 2.5b2
 
8
bzr 2.5.1
9
9
#########
10
10
 
11
 
:2.5b2: NOT RELEASED YET
 
11
:2.5.1: NOT RELEASED YET
12
12
 
13
13
External Compatibility Breaks
14
14
*****************************
32
32
.. Fixes for situations where bzr would previously crash or give incorrect
33
33
   or undesirable results.
34
34
 
35
 
* Redirects between http and https no longer discard path information
36
 
  in some cases. (Jelmer Vernooij, #853765)
37
 
 
38
 
* ``WorkingTree.get_file_mtime`` now raises NoSuchId if a file id is
39
 
  specified that is unknown. (Jelmer Vernooij, #847435)
40
 
 
41
35
Documentation
42
36
*************
43
37
 
55
49
.. Major internal changes, unlikely to be visible to users or plugin 
56
50
   developers, but interesting for bzr developers.
57
51
 
 
52
Testing
 
53
*******
 
54
 
 
55
.. Fixes and changes that are only relevant to bzr's test framework and 
 
56
   suite.  This can include new facilities for writing tests, fixes to 
 
57
   spurious test failures and changes to the way things should be tested.
 
58
 
 
59
 
 
60
bzr 2.5.0
 
61
#########
 
62
 
 
63
:Codename: Phillip
 
64
:2.5.0: 2012-02-24
 
65
 
 
66
This release marks the start of a new long-term-stable series. From here, we
 
67
will only make bugfix releases on the 2.5 series (2.5.1, etc, and support it
 
68
until April 2017), while 2.6 will become our new development series.
 
69
 
 
70
This is a bugfix and polish release over the 2.4 series, with a large number
 
71
of bugs fixed (~170 for the 2.5 series alone). The 2.5 series provides a
 
72
faster smart protocol implementation for many operations, basic support for
 
73
colocated branches. We have started translating bzr with the 2.5 series:
 
74
https://translations.launchpad.net/bzr, more than 20 languages have already
 
75
been registered but these are the early days, contributions welcome.
 
76
 
 
77
Only a few bugfixes have been included since 2.5b6 so all known fixed bugs
 
78
are included here.
 
79
 
 
80
Users are encouraged to upgrade from the other stable series.
 
81
 
 
82
 
 
83
External Compatibility Breaks
 
84
*****************************
 
85
 
 
86
None.
 
87
 
 
88
New Features
 
89
************
 
90
 
 
91
None.
 
92
 
 
93
Improvements
 
94
************
 
95
 
 
96
* The names of colocated branches are used as branch nicks if no nick is
 
97
  specified. (Aaron Bentley)
 
98
 
 
99
Bug Fixes
 
100
*********
 
101
 
 
102
* Show locks in ``bzr info`` on control directories without a
 
103
  repository. (Jelmer Vernooij, #936767)
 
104
 
 
105
* Disable ssl certificate verification on osx and windows until a native
 
106
  access to the the root certificates is provided there.
 
107
  (Vincent Ladeuil, #929179)
 
108
 
 
109
Testing
 
110
*******
 
111
 
 
112
* Stop depending on the particular CPython ordering of dictionary keys
 
113
  when testing the result of BzrDir.get_branches.
 
114
  (Wouter van Heyst)
 
115
 
 
116
bzr 2.5b6
 
117
#########
 
118
 
 
119
:2.5b6: 2012-02-02
 
120
 
 
121
This is the sixth (and last (really)) beta of the 2.5 series, leading to a
 
122
2.5.0 release in March 2012. Beta releases are suitable for everyday use
 
123
but may cause some incompatibilities with plugins.
 
124
 
 
125
This introduces the support for colocated branches into the '2a' format in a
 
126
backward compatible way, fix more glitches in the colocated UI, verify https
 
127
certificates for the urllib https client implementation, fix some more
 
128
unicode issues and more.
 
129
 
 
130
All bugs fixed in previous series known at the time of this release are
 
131
included.
 
132
 
 
133
External Compatibility Breaks
 
134
*****************************
 
135
 
 
136
None.
 
137
 
 
138
New Features
 
139
************
 
140
 
 
141
* Support for colocated branches is now available in the default
 
142
  format ("2a"). (Jelmer Vernooij)
 
143
 
 
144
Improvements
 
145
************
 
146
 
 
147
* ``bzr switch -b`` in a standalone tree will now create a colocated branch.
 
148
  (Jelmer Vernooij, #918197)
 
149
 
 
150
* ``bzr info`` now reports when there are present (but unused) colocated
 
151
  branches. (Jelmer Vernooij, #891646)
 
152
 
 
153
* Checkouts can now be into target directories that already have
 
154
  a control directory (but no branch or working tree).
 
155
  (Jelmer Vernooij, #913980)
 
156
 
 
157
* Checkouts of colocated branches are now always lightweight.
 
158
  (Jelmer Vernooij, #918828)
 
159
 
 
160
* Colocated branches can now have names including forward slashes, to
 
161
  allow for namespaces. (Jelmer Vernooij, #907980)
 
162
 
 
163
* New HPSS call for ``BzrDir.get_branches``. (Jelmer Vernooij, #894460)
 
164
 
 
165
Bug Fixes
 
166
*********
 
167
 
 
168
* ``bzr branch`` now fetches revisions when branching into an empty
 
169
  control directory. (Jelmer Vernooij, #905594)
 
170
 
 
171
* A sane default is provided for ``ssl.ca_certs`` which should points to the
 
172
  Certificate Authority bundle for supported platforms.
 
173
  (Vincent Ladeuil, #920455)
 
174
 
 
175
* ``bzr branch`` generates correct target branch locations again if not
 
176
  specified. (Jelmer Vernooij, #919218)
 
177
 
 
178
* ``bzr send`` works on treeless branches again.
 
179
  (Jelmer Vernooij, #921591)
 
180
 
 
181
* ``bzr version`` no longer throws a UnicodeDecodeError if the .bzr.log path
 
182
  contains non-ascii characters. (Martin Packman, #312841)
 
183
 
 
184
* Support scripts that don't call bzrlib.initialize() but still call run_bzr().
 
185
  (Vincent Ladeuil, #917733)
 
186
 
 
187
* Test for equality instead of object identity where ROOT_PARENT is concerned.
 
188
  (Wouter van Heyst, #881142)
 
189
 
 
190
* urllib-based HTTPS client connections now verify the server certificate
 
191
  validity as well as the hostname.
 
192
  (Jelmer Vernooij, Vincent Ladeuil, #651161)
 
193
 
 
194
 
 
195
API Changes
 
196
***********
 
197
 
 
198
* ``config.config_dir`` and related functions now always return paths as
 
199
  unicode. (Martin Packman, #825826)
 
200
 
 
201
* ``ControlDir`` now has a new method ``set_branch_reference`` which can
 
202
  be used for setting branch references. (Jelmer Vernooij)
 
203
 
 
204
* ``ControlDir.destroy_branch`` now raises ``NotBranchError`` rather than
 
205
  ``NoSuchFile`` if the branch didn't exist. (Jelmer Vernooij, #921693)
 
206
 
 
207
Internals
 
208
*********
 
209
 
 
210
* A new matcher ``RevisionHistoryMatches`` has been added. (Jelmer Vernooij)
 
211
 
 
212
* Add new module ``bzrlib.url_policy_open``. (Jelmer Vernooij, #850843)
 
213
 
 
214
* ``MutableTree`` has two new hooks ``pre_transform`` and
 
215
  ``post_transform`` that are called for tree transform operations.
 
216
  (Jelmer Vernooij, #912084)
 
217
 
 
218
 
 
219
Testing
 
220
*******
 
221
 
 
222
* Be more careful about closing open files for pypy interoperability.
 
223
  (Wouter van Heyst)
 
224
 
 
225
bzr 2.5b5
 
226
#########
 
227
 
 
228
:2.5b5: 2012-01-12
 
229
 
 
230
This is the fifth (and last) beta of the 2.5 series, leading to a 2.5.0
 
231
release in February 2012. Beta releases are suitable for everyday use but
 
232
may cause some incompatibilities with plugins.
 
233
 
 
234
This release includes many improvements in the smart server, UI polish for
 
235
the colocated branches, enhancements to the config framework and more
 
236
internal uses, bug fixes related to unicode and locale support and more.
 
237
 
 
238
All bug fixed in previous series known at the time of this release are
 
239
included.
 
240
 
 
241
External Compatibility Breaks
 
242
*****************************
 
243
 
 
244
* The '.bzr/branch/email' file is no longer read to determine the users'
 
245
  identity. Instead, the 'email' setting in '.bzr/branch/branch.conf'
 
246
  should be used. (Jelmer Vernooij, #903894)
 
247
 
 
248
New Features
 
249
************
 
250
 
 
251
* "bzr mkdir" now includes -p (--parents) option for recursively adding
 
252
  parent directories.
 
253
  (Jared Hance, Jelmer Vernooij, #253529)
 
254
 
 
255
* ``config.Option`` can now declare ``override_from_env``, a list of
 
256
  environment variables which, when set, that takes precedence over values
 
257
  defined in configuration files. (Vincent Ladeuil, #907279)
 
258
 
 
259
Improvements
 
260
************
 
261
 
 
262
* New HPSS call for ``Repository.reconcile``. (Jelmer Vernooij, #894455)
 
263
 
 
264
* Merge now has two new hooks ``pre_merge`` and ``post_merge``
 
265
  that are called before and after a merge and can make
 
266
  additional modifications to the trees involved.
 
267
  (Jelmer Vernooij, #906877)
 
268
 
 
269
* Override the value returned by ``sys.getfilesystemencoding()`` for the bzr
 
270
  script to utf-8 when it would otherwise be ascii on a posix system. This
 
271
  will mean bzr works with non-ascii files when no locale or an incorrect
 
272
  locale is set. (Martin Packman, #794353)
 
273
 
 
274
* ``bzr branches`` now indicates the active colocated branch.
 
275
  (Jelmer Vernooij, #891667)
 
276
 
 
277
* ``bzr push`` now suggests using :parent if there is a parent location
 
278
  set. (Jelmer Vernooij)
 
279
 
 
280
* ``bzr send`` now only opens a single connection, rather than two,
 
281
  to the target branch.  (Jelmer Vernooij)
 
282
 
 
283
Bug Fixes
 
284
*********
 
285
 
 
286
* Allow configuration option default value to be a python callable at
 
287
  registration. (Vincent Ladeuil, #832064)
 
288
 
 
289
* ``bzr config`` will now display the section ``[DEFAULT]`` used in
 
290
  ``bazaar.conf``. (Vincent Ladeuil, #907268)
 
291
 
 
292
* Configuration stores can now provides a specific quoting mechanism. This
 
293
  is required to workaround ``configobj`` conflating quoting and list values
 
294
  automatic conversion. (Vincent Ladeuil, #906897)
 
295
 
 
296
* Create obsolete_packs directory when repacking if it does not
 
297
  exist. (Jonathan Riddell, Jelmer Vernooij, #314314)
 
298
 
 
299
* Fallback to the slower ``bzr log`` implementation when displaying a range
 
300
  of revisions whose ancestry is not obviously on the same developement
 
301
  line. (Vincent Ladeuil, #904744)
 
302
 
 
303
* Make lazy imports resilient when resolved concurrently from multiple
 
304
  threads. Now the stand-in object will behave as a proxy for the real object
 
305
  after the initial access, rather than throwing. Assigning the object to
 
306
  multiple names should still be avoided. (Martin von Gagern, #396819)
 
307
 
 
308
* Not setting ``gpg_signing_key`` or setting it to ``default`` will use the
 
309
  user email (obtained from the ``email`` configuration option or its
 
310
  default value). (Vincent Ladeuil, Jelmer Vernooij, #904550)
 
311
 
 
312
* Prevent spurious InconsistentDelta error when committing a move of a
 
313
  non-ascii directory with contents. (Rory Yorke, #185211)
 
314
 
 
315
* Properly ignore '\n' in an option reference since this cannot be part of a
 
316
  config option identifier. (Vincent Ladeuil, #902125)
 
317
 
 
318
* Make sure that the bzr probers are always registered when
 
319
  bzrlib.workingtree is imported. (Jelmer Vernooij, #905218)
 
320
 
 
321
* Report mistake trying to move a removed file with a non-ascii name without
 
322
  UnicodeEncodeError being raised. (Martin Packman, #898541)
 
323
 
 
324
* Safely unquote configuration values in weird edge cases (a section seen as
 
325
  a dictionary which is not a supported use case for the configuration
 
326
  stacks). (Vincent Ladeuil, #908050)
 
327
 
 
328
* Stop altering ``sys.platform`` on OSX when initialising the locale.
 
329
  (Martin Packman, #570495)
 
330
 
 
331
* Uncommit no longer removes tags if they are part of the working
 
332
  trees pending merges. (Jelmer Vernooij, #905462)
 
333
 
 
334
API Changes
 
335
***********
 
336
 
 
337
* ``Config.signature_needed``, ``Config.signing_policy``,
 
338
  ``Config.gpg_signing_key``, ``Config.gpg_signing_command``,
 
339
  ``Config.checking_policy`` and ``Config.post_commit`` are now deprecated.
 
340
  (Jelmer Vernooij)
 
341
 
 
342
* ``Repository.get_commit_builder`` now takes a ``config_stack``
 
343
  rather than a ``config`` argument. (Jelmer Vernooij)
 
344
 
 
345
* Scripts using bzrlib should now ensure setlocale is called on posix
 
346
  platforms if they need a non-ascii user encoding. (Martin Packman)
 
347
 
 
348
* Send formats now accept a new optional argument ``submit_branch``,
 
349
  which can be None or a Branch object for the submit branch location.
 
350
  (Jelmer Vernooij)
 
351
 
 
352
* ``VersionedFileRepository.add_revision`` no longer takes a ``config``
 
353
  argument. (Jelmer Vernooij)
 
354
 
 
355
Internals
 
356
*********
 
357
 
 
358
* Add HPSS call for ``Branch.get_checkout_format``. (Jelmer Vernooij, #894459)
 
359
 
 
360
* Add HPSS call for ``Repository.pack``. (Jelmer Vernooij, #894461)
 
361
 
 
362
* Add HPSS calls for ``Repository.iter_files_bytes``, speeding up
 
363
  several commands including ``bzr export`` and ``bzr co --lightweight``.
 
364
  (Jelmer Vernooij, #608640)
 
365
 
 
366
* All bzr control directories, branch formats, repository formats and
 
367
  working tree formats now support feature flags, which are
 
368
  serialized in their respective format files. See
 
369
  ``doc/developers/feature-flags.txt`` for details.
 
370
  (Jelmer Vernooij)
 
371
 
 
372
* ``bzrlib.urlutils`` now includes ``quote`` and ``unquote`` functions,
 
373
  rather than importing them from ``urllib``. This prevents loading
 
374
  of the ``socket``, ``ssl`` and ``urllib`` modules for
 
375
  local bzr operations. (Jelmer Vernooij)
 
376
 
 
377
* Configuration options can be SI units by using ``int_SI_from_unicode`` as
 
378
  their ``convert_from_unicode`` helper. (Vincent Ladeuil)
 
379
 
 
380
* Configuration stacks can now use ``StartingPathMatcher`` to select the
 
381
  sections matching a location while respecting the order chosen by the user
 
382
  in the configuration file: from generic sections to specific
 
383
  sections. (Vincent Ladeuil, #832046).
 
384
 
 
385
* Configuration stores can now save incremental changes by using
 
386
  ``save_changes()`` instead of ``save()``. This reduces the number or
 
387
  required input/outputs and allows stores to be shared between
 
388
  stacks. (Vincent Ladeuil)
 
389
 
 
390
* ControlDir now has a get_branches method that returns a dictionary
 
391
  whose keys are the names of the branches and whose values are the
 
392
  branches themselves. The active branch uses the key None.
 
393
  (Neil Martinsen-Burrell)
 
394
 
 
395
* Helper ``osutils.path_from_environ`` added for extracting a unicode path
 
396
  from an environment variable. (Martin Packman, #832028)
 
397
 
 
398
* Helper ``win32utils.get_environ_unicode`` added for avoiding encoding
 
399
  problems with ``os.environ.get`` use. (Martin Packman, #262874) 
 
400
 
 
401
* Lazy imports can now only be absolute. (Jelmer Vernooij)
 
402
 
 
403
* Merge3Mergers now have an optional ``other_branch`` argument
 
404
  which contains the branch from which the ``other_tree``
 
405
  was obtained, if any. (Jelmer Vernooij)
 
406
 
 
407
* MutableTree now has a hook ``post_build_tree`` which is called after
 
408
  a new mutable tree has been created. (Jelmer Vernooij, #912765)
 
409
 
 
410
* New HPSS call ``BzrDir.checkout_metadir``. (Jelmer Vernooij, #894459)
 
411
 
 
412
* New HPSS call ``VersionedFileRepository.get_inventories``,
 
413
  speeding up various commands including ``bzr export``,
 
414
  ``bzr checkout`` and ``bzr cat``. (Jelmer Vernooij, #608640)
 
415
 
 
416
* The ``ConfigCommandLineStore`` is now supported by ``bzr config`` and is
 
417
  seen as single no-name section of configuration options. (Vincent Ladeuil)
 
418
 
 
419
Testing
 
420
*******
 
421
 
 
422
* New matcher ``ContainsNoVfsCalls`` which filters a list of HPSS
 
423
  calls for VFS requests. (Jelmer Vernooij)
 
424
 
 
425
* New ``MemoryStack`` class allows for diskless tests and locally injected
 
426
  configuration stacks.  Lower level tests for predefined set of options can
 
427
  be written without setting up configuration files. (Vincent Ladeuil)
 
428
 
 
429
 
 
430
bzr 2.5b4
 
431
#########
 
432
 
 
433
:2.5b4: 2011-12-08
 
434
 
 
435
This is the fourth beta of the 2.5 series, leading to a 2.5.0 release in
 
436
February 2012. Beta releases are suitable for everyday use but may cause
 
437
some incompatibilities with plugins.
 
438
 
 
439
This release includes many improvements in the smart server, UI polish for
 
440
the colocated branches, optimizations for revision specifiers to avoid
 
441
history sized operations, enhancements to the config framework, bug fixes
 
442
related to unicode paths and more.
 
443
 
 
444
All bug fixed in previous series known at the time of this release are
 
445
included.
 
446
 
 
447
External Compatibility Breaks
 
448
*****************************
 
449
 
 
450
None.
 
451
 
 
452
New Features
 
453
************
 
454
 
 
455
* Provides a ``po_merge`` plugin to automatically merge ``.po`` files with
 
456
  ``msgmerge``. See ``bzr help po_merge`` for details.
 
457
  (Vincent Ladeuil, #884270)
 
458
 
 
459
Improvements
 
460
************
 
461
 
 
462
* ``bzr branch --stacked`` now only makes a single connection to the remote
 
463
  server rather than three. (Jelmer Vernooij, #444293)
 
464
 
 
465
* ``bzr export --uncommitted`` will export the uncommitted tree.
 
466
  (Jelmer Vernooij, #555613)
 
467
 
 
468
* ``bzr rmbranch`` can now remove colocated branches.
 
469
  (Jelmer Vernooij, #831464)
 
470
 
 
471
* ``bzr status`` no longer shows shelves if files are specified.
 
472
  (Francis Devereux)
 
473
 
 
474
* ``bzr switch`` now accepts colocated branch names to switch to.
 
475
  (Jelmer Vernooij, #826814)
 
476
 
 
477
* Plugins can now register additional "location aliases".
 
478
  (Jelmer Vernooij)
 
479
 
 
480
* Revision specifiers will now only browse as much history as they
 
481
  need to, rather than grabbing the whole history unnecessarily in some
 
482
  cases. (Jelmer Vernooij)
 
483
 
 
484
* When using ``bzr switch`` to switch to a sibling of the current
 
485
  branch, the relative branch name should no longer be url-encoded.
 
486
  (Jelmer Vernooij)
 
487
 
 
488
Bug Fixes
 
489
*********
 
490
 
 
491
* A new section local option ``basename`` is available to help support some
 
492
  ``bzr-pipeline`` workflows and more generally help mapping local paths to
 
493
  remote ones. See ``bzr help configuration`` for more details.
 
494
  (Vincent Ladeuil, #843211)
 
495
 
 
496
* Add HPSS call for looking up revision numbers from revision ids on
 
497
  remote repositories. (Jelmer Vernooij, #640253)
 
498
 
 
499
* Add HPSS call for retrieving file contents from remote repositories.
 
500
  Should improve performance for lightweight checkouts and exports of
 
501
  from remote repositories.  (Jelmer Vernooij, #368717, #762330, #608640)
 
502
 
 
503
* Allow lazy compiled patterns from ``bzrlib.lazy_regex`` to be
 
504
  pickled. (Jelmer Vernooij, #893149)
 
505
 
 
506
* ``bzr info`` no longer shows empty output if only a control
 
507
  directory is present. (Jelmer Vernooij, #159098)
 
508
 
 
509
* Cope with missing revision ids being specified to
 
510
  ``Repository.gather_stats`` HPSS call. (Jelmer Vernooij, #411290)
 
511
 
 
512
* Fix test failures on windows related to locations.conf handling.
 
513
  (Vincent Ladeuil, #892992)
 
514
 
 
515
* Fixed parsing of the timestamp given to ``commit --commit-time``. Now
 
516
  prohibits several invalid strings, reads the correct number of seconds,
 
517
  and gives a better error message if the time zone offset is not given.
 
518
  (Matt Giuca, #892657)
 
519
 
 
520
* Give meaningful file/line references when reporting deprecation warnings
 
521
  for _CompatabilityThunkFeature based test features.
 
522
  (Vincent Ladeuil, #897718)
 
523
 
 
524
* Make reporting of mistakes involving unversioned files with non-ascii
 
525
  filenames work again without 'Unprintable exception' being shown.
 
526
  (Martin Packman, #898408)
 
527
 
 
528
* Provide names for lazily registered hooks. 
 
529
  (Neil Martinsen-Burrell, #894609)
 
530
 
 
531
* Raise BadIndexKey exception in btree_index when a key is too large, fixing 
 
532
  an infinite recursion issue. (Shannon Weyrick, #720853)
 
533
 
 
534
* Resolve regression from colocated branch path handling, by ensuring that
 
535
  unreserved characters are unquoted in URLs. (Martin Packman, #842223)
 
536
 
 
537
* Split segments from URLs for colocated branches without assuming the
 
538
  combined form is valid. (Martin Packman, #842233)
 
539
 
 
540
* Support looking up revision numbers by revision id in empty branches.
 
541
  (Jelmer Vernooij, #535031)
 
542
 
 
543
* Support verifying signatures on remote repositories.
 
544
  (Jelmer Vernooij, #889694)
 
545
 
 
546
* Teach the bzr client how to reconnect if we get ``ConnectionReset``
 
547
  while making an RPC request. This doesn't handle all possible network
 
548
  disconnects, but it should at least handle when the server is asked to
 
549
  shutdown gracefully. (John Arbash Meinel, #819604)
 
550
 
 
551
* When a remote format is unknown, bzr will now print a single-line error
 
552
  message rather than a backtrace. (Jelmer Vernooij, #687226)
 
553
 
 
554
API Changes
 
555
***********
 
556
 
 
557
* ``BzrDir.open_branch`` and ``BranchFormat.open`` now take an optional
 
558
  ``possible_transports`` argument. (Jelmer Vernooij)
 
559
 
 
560
* New method ``Transport.set_segment_parameter``.  (Jelmer Vernooij)
 
561
 
 
562
* ``Repository.verify_revision`` has been renamed to
 
563
  ``Repository.verify_revision_signature``. (Jelmer Vernooij)
 
564
 
 
565
* ``RevisionSpec.wants_revision_history`` now defaults to ``False`` and
 
566
  is deprecated. The ``revs`` argument of
 
567
  ``RevisionInfo.from_revision_id`` is now deprecated. (Jelmer Vernooij)
 
568
 
 
569
* ``Tree.get_file_by_path`` is now deprecated. Use ``Tree.get_file`` instead.
 
570
  (Jelmer Vernooij, #666897)
 
571
 
 
572
* Some global options for use with commands have been removed, construct
 
573
  an ``Option`` with the name instead. (Martin Packman)
 
574
 
 
575
* The unused exception ``HistoryMissing`` has been removed.
 
576
  (Jelmer Vernooij)
 
577
 
 
578
Internals
 
579
*********
 
580
 
 
581
* Add HPSS call for ``Repository.pack``. (Jelmer Vernooij, #894461)
 
582
 
 
583
* ``bzr config`` uses the new configuration implementation.
 
584
  (Vincent Ladeuil)
 
585
 
 
586
* Custom HPSS error handlers can now be installed in the smart server client
 
587
  using the ``error_translators`` and ``no_context_error_translators``
 
588
  registries. (Jelmer Vernooij)
 
589
 
 
590
* New HPSS calls ``Repository.has_signature_for_revision_id``,
 
591
  ``Repository.make_working_trees``, ``BzrDir.destroy_repository``,
 
592
  ``BzrDir.has_workingtree``, ``Repository.get_physical_lock_status``,
 
593
  ``Branch.get_physical_lock_status``,
 
594
  ``Branch.put_config_file``, ``Branch.break_lock``,
 
595
  ``BzrDir.destroy_branch``, ``Repository.break_lock``,
 
596
  ``VersionedFileRepository.get_serializer_format``,
 
597
  ``Repository.all_revision_ids``, ``Repository.start_write_group``,
 
598
  ``Repository.commit_write_group``, ``Repository.abort_write_group``
 
599
  ``Repository.check_write_group``, ``Repository.iter_revisions``,
 
600
  ``Repository.add_signature_revision_text`` and
 
601
  ``Repository.get_revision_signature_text``.
 
602
  (Jelmer Vernooij)
 
603
 
 
604
* ``RemoteBranch.get_config_stack`` and ``RemoteBzrDir.get_config_stack``
 
605
  will now use HPSS calls where possible. (Jelmer Vernooij)
 
606
 
 
607
* The registry of merge types has been moved to ``merge`` from ``option`` but
 
608
  ``merge.get_merge_type_registry`` remains as an accessor. (Martin Packman)
 
609
 
 
610
Testing
 
611
*******
 
612
 
 
613
* Avoid failures in test_transform when OS error messages are localised.
 
614
  (Martin Packman, #891582)
 
615
 
 
616
* Tests are now subject to a time limit: by default 300s, and 120s when
 
617
  run from 'make check', controlled by the `selftest.timeout`
 
618
  configuration option.  This is currently not supported on Windows.
 
619
  (Martin Pool)
 
620
 
 
621
bzr 2.5b3
 
622
#########
 
623
 
 
624
:2.5b3: 2011-11-10
 
625
 
 
626
This is the third beta of the 2.5 series, leading to a 2.5.0 release in
 
627
February 2012. Beta releases are suitable for everyday use but may cause
 
628
some incompatibilities with plugins.
 
629
 
 
630
This release includes log options for ``push`` and ``pull``, more UI polish
 
631
for colocated branches, a better and more coherent implementation for UI
 
632
dialogs, enhancements to the config framework and more.
 
633
 
 
634
This release includes all bug fixed in previous series known at the time of
 
635
this release.
 
636
 
 
637
External Compatibility Breaks
 
638
*****************************
 
639
 
 
640
None
 
641
 
 
642
New Features
 
643
************
 
644
 
 
645
* The ``log_format`` configuration can be used with ``-Olog_format=line`` to
 
646
  change the format ``push`` and ``pull`` use to display the
 
647
  revisions. I.e.: ``bzr pull -v -Olog_format=short`` will use the ``short``
 
648
  format instead of the default ``long`` one. (Vincent Ladeuil, #861472)
 
649
 
 
650
* The new config scheme allows an alternative syntax for the 'appenpath'
 
651
  policy relying on option expansion and defining a new 'relpath' option
 
652
  local to a section. Instead of using '<option>:policy=appendpath', the
 
653
  option value can de defined as 'option=xxxx/{relpath}'.
 
654
  (Vincent Ladeuil, #832013)
 
655
 
 
656
Improvements
 
657
************
 
658
 
 
659
* ``bzr info -v`` now shows the number of colocated branches
 
660
  for control directories that support them.
 
661
  (Jelmer Vernooij, #863285)
 
662
 
 
663
* ``bzr version-info`` now takes a ``--revision`` argument.
 
664
  (Jelmer Vernooij, #238705)
 
665
 
 
666
* ``bzr revno`` now takes a ``--revision`` argument.
 
667
  (Jelmer Vernooij, #870649)
 
668
 
 
669
* ``bzr serve`` now can serve from URLs rather than just from the
 
670
  file system. I.e.: ``bzr serve -d lp:bzr`` or
 
671
  ``bzr serve -d file:///data/bzr`` (Jelmer Vernooij)
 
672
 
 
673
* all input prompts are now char-based when possible, and can be forced to
 
674
  line-based mode by setting the ``BZR_TEXTUI_INPUT`` environment variable
 
675
  to 'line-based'. This replace the previous shelf UI only patch using
 
676
  ``INSIDE_EMACS``. (Benoît Pierre)
 
677
 
 
678
Bug Fixes
 
679
*********
 
680
 
 
681
* ``bzr info`` now shows the master branch location too for
 
682
  treeless local branches. (Jelmer Vernooij, #258355)
 
683
 
 
684
* ``bzr mkdir --quiet`` now does not print a line for every created
 
685
  directory. (Martin von Gagern, #869915)
 
686
 
 
687
* ``bzr mv`` does not crash when attempting to move the root of a
 
688
  branch. (Jonathan Riddell, #809728)
 
689
 
 
690
* ``bzr shelve`` now use ``UIFactory.choose`` for input handling, making
 
691
  it usable when creating a custom ``UIFactory`` implementation. (Benoît
 
692
  Pierre)
 
693
 
 
694
* ``bzr clean-tree`` now use ``UIFactory.get_boolean`` for confirmation
 
695
  prompt, making it usable when using a custom ``UIFactory``
 
696
  implementation. (Benoît Pierre)
 
697
 
 
698
* If sending a crash through Apport fails report the Apport failure to
 
699
  bzr.log rather than stderr. (Jonathan Riddell, #766735)
 
700
 
 
701
* ``bzr upgrade`` no longer treats 'already up-to-date' exceptions as
 
702
  errors. (Benoît Pierre, #716560).
 
703
 
 
704
* ``bzr version-info`` no longer populates the clean state for custom
 
705
  templates unless {clean} is explicitly asked for.
 
706
  (Lawrence Mitchell, #882541)
 
707
 
 
708
* Fix finding the CPU count when using Python >= 2.6 on BSD-based systems.
 
709
  (Jelmer Vernooij, #887151)
 
710
 
 
711
* ``WorkingTree.clone()`` now supports its ``revision_id`` being set
 
712
  to the null revision. (Jelmer Vernooij, #876423)
 
713
 
 
714
* ``WorkingTree.pull`` can now pull ``NULL_REVISION``.
 
715
  (Jelmer Vernooij, #887556)
 
716
 
 
717
API Changes
 
718
***********
 
719
 
 
720
* ``Branch.revision_history`` is now deprecated. (Jelmer Vernooij, #799519)
 
721
 
 
722
* Methods ``add`` and ``items`` of ``LRUCache`` and ``LRUSizeCache`` are
 
723
  deprecated. Use normal dict-style access instead. (Martin Packman)
 
724
 
 
725
* New flag ``RepositoryFormat.supports_unreferenced_revisions`` which
 
726
  indicates whether revisions can be present in a repository without
 
727
  being referenced from e.g. a branch history at the same time.
 
728
  (Jelmer Vernooij)
 
729
 
 
730
* ``UIFactory.choose`` has been added: prompt the user for a list of
 
731
  choices. (Benoît Pierre)
 
732
 
 
733
Internals
 
734
*********
 
735
 
 
736
* ``ControlDirFormat`` now has a new method ``supports_transport``
 
737
  which format implementations can use whether or not they can access
 
738
  a control dir over a particular transport. (Jelmer Vernooij)
 
739
 
 
740
* ``BranchBuilder.build_commit`` now take ``parent_ids`` and
 
741
  ``allow_leftmost_as_ghost`` arguments.  (Jelmer Vernooij)
 
742
 
 
743
Testing
 
744
*******
 
745
 
 
746
* Ensure TestCase instances are deallocated immediately after running where
 
747
  possible. This greatly reduces the peak resource needs of a full test suite
 
748
  run. The new ``-Euncollected_cases`` selftest flag will add failures if any
 
749
  case which persists pasts its expected lifetime. (Martin Packman, #613247)
 
750
 
 
751
* Report exceptions from child processes during fork instead of swallowing the
 
752
  error and reporting that everything went okay. (Martin Packman, #804130)
 
753
 
 
754
 
 
755
bzr 2.5b2
 
756
#########
 
757
 
 
758
This is the second beta of the 2.5 series, leading to a 2.5.0 release in
 
759
February 2012. Beta releases are suitable for everyday use but may cause some
 
760
incompatibilities with plugins.
 
761
 
 
762
This release includes more filtering options for ``bzr log``, idle
 
763
connections handling for ``bzr serve``, a ``development-colo`` experimental
 
764
format to flesh out the colocated branches UI, better support for foreign
 
765
formats, enhancements to the config framework and more.
 
766
 
 
767
This release includes all bug fixed in previous series known at the time of
 
768
this release.
 
769
 
 
770
:2.5b2: 2011-10-06
 
771
 
 
772
External Compatibility Breaks
 
773
*****************************
 
774
 
 
775
None
 
776
 
 
777
New Features
 
778
************
 
779
 
 
780
* A new ``-O`` standard option (common to all commands) have been added. It
 
781
  provides a value for a config option in the ``-Oname=value`` form that
 
782
  takes precedence over all definitions found in config files.  It can be
 
783
  used multiple times to override different options.
 
784
  (Vincent Ladeuil, #491196)
 
785
 
 
786
* ``bzr log`` now has an option called ``--omit-merges`` to omit
 
787
  those commits that merged branches, i.e. those having more than one
 
788
  parent.
 
789
  In order to avoid confusion, the previous command line option
 
790
  ``--include-merges`` has been renamed to ``--include-merged``.
 
791
  The old name of the command line option will still be accepted.
 
792
  The name change also affects ``bzr missing``.
 
793
  (Martin von Gagern)
 
794
 
 
795
* ``bzr serve`` will now disconnect clients if they have not issued an RPC
 
796
  request after 5minutes. On POSIX platforms, this will also happen for
 
797
  ``bzr serve --inet``. This can be overridden with the configuration
 
798
  variable ``serve.client_timeout`` or in the command line parameter
 
799
  ``bzr serve --client-timeout=X``. Further, it is possible to request
 
800
  ``bzr serve [--inet]`` to shutdown gracefully by sending SIGHUP. It will
 
801
  finish the current request, and then close the connection.
 
802
  (John Arbash Meinel, #824797, #795025)
 
803
 
 
804
* The new experimental format ``development-colo`` supports colocated
 
805
  branches. This format will eventually be merged back into the ``2a``
 
806
  format when it has stabilized and there is adequate UI support for
 
807
  colocated branches.
 
808
  (Jelmer Vernooij, #831481)
 
809
 
 
810
Improvements
 
811
************
 
812
 
 
813
* Fixed a bug where ``bzr tags -r x..y`` loaded the branch history once for
 
814
  every revision in the range; it's now much faster. (Vincent Ladeuil, #857335)
 
815
 
 
816
* ``bzr info -v`` can now be run against branches that don't support
 
817
  ``last_revision_info``, in which case the branch information will simply
 
818
  not be displayed. (Jelmer Vernooij)
 
819
 
 
820
Bug Fixes
 
821
*********
 
822
 
 
823
* ``bzr shelve`` can now be used in emacs shells as the input handling is
 
824
  turned into a line-based one when ``INSIDE_EMACS`` is set (which is the
 
825
  case for all recent emacs versions). (Vincent Ladeuil, #856261)
 
826
 
 
827
* ``bzr tags`` can now be used against remote repositories that do
 
828
  not provide access to the revision graph. (Jelmer Vernooij, #858942)
 
829
 
 
830
* ``bzr update PATH`` will stop if you seem to be asking it to update
 
831
  anything less than a whole tree, because that's not supported by ``bzr``'s
 
832
  concept that the whole tree has a single basis revision.  Previously, it
 
833
  would go ahead and update the whole tree, which was surprising.
 
834
  (Martin Pool, #557886)
 
835
 
 
836
* Don't crash if ``bzrlib.initialize()`` has not been called while accessing
 
837
  configs.  (Vincent Ladeuil, #863401)
 
838
 
 
839
* Redirects between http and https no longer discard path information
 
840
  in some cases. (Jelmer Vernooij, #853765)
 
841
 
 
842
* The ``--overwrite`` argument to ``bzr push`` and ``bzr pull`` no longer
 
843
  reports all tags as changed. (Jelmer Vernooij, #845396)
 
844
 
 
845
* ``WorkingTree.get_file_mtime`` now raises NoSuchId if a file id is
 
846
  specified that is unknown. (Jelmer Vernooij, #847435)
 
847
 
 
848
 
 
849
API Changes
 
850
***********
 
851
 
 
852
* ``Branch.get_revision_delta`` has been deprecated. Use
 
853
  ``Repository.get_revision_delta`` instead. (Jelmer Vernooij, #859712)
 
854
 
 
855
* Plugins that implement custom protocols for ``bzr serve`` should now
 
856
  also take an argument ``timeout``. This is used by the the bzr protocol
 
857
  to close a connection if a client has been idle for more than X seconds.
 
858
  (Default 5minutes). (John Arbash Meinel)
 
859
 
 
860
* ``Repository.fileids_altered_by_revision_ids`` has been moved to
 
861
  ``VersionedFileRepository`` and is no longer part of the standard
 
862
  ``Repository`` interface. (Jelmer Vernooij)
 
863
 
 
864
* The argument ``include_merges`` to ``missing.find_unmerged`` has
 
865
  been renamed to ``include_merged``. The old name is still supported
 
866
  for now but will cause a deprecation warning. (Martin von Gagern)
 
867
 
 
868
* The new method ``ControlDirFormat.is_initializable()`` returns a boolean
 
869
  indicating whether or not it is possible to use any of the
 
870
  initialization methods of that format to create a new control dir.
 
871
  (Jelmer Vernooij)
 
872
 
 
873
Internals
 
874
*********
 
875
 
58
876
* ``Branch`` objects can now use a config stack with the newly introduced
59
877
  ``get_config_stack()``. Both ``get_config`` and ``get_config_stack`` can
60
878
  be used for the same branch but it's recommended to stick to one for a
63
881
Testing
64
882
*******
65
883
 
66
 
.. Fixes and changes that are only relevant to bzr's test framework and 
67
 
   suite.  This can include new facilities for writing tests, fixes to 
68
 
   spurious test failures and changes to the way things should be tested.
 
884
* Test scripts can now use ``bzr shelve`` and provide their input as
 
885
  complete lines. (Vincent Ladeuil, #856261)
 
886
 
 
887
* Really corrupt the pack file without depending on a special length or value.
 
888
  (Vincent Ladeuil, #807032)
69
889
 
70
890
 
71
891
bzr 2.5b1
74
894
:2.5b1: 2011-09-15
75
895
 
76
896
This is the first beta of the 2.5 series, leading up to a 2.5.0
77
 
release in February 2012.  Beta releases are suitable for everyday use
78
 
but may cause some incompatibilities with plugins.  Some plugins may need
79
 
small updates to work with 2.5b1.
 
897
release in February 2012.
 
898
 
 
899
This release includes better support for gpg signing, better support for
 
900
i18n (mostly command help and error messages), more options to filter ``bzr
 
901
log`` output, more support for colocated branches ("location,branch=XXX"
 
902
syntax), better feedback on updated tags for various commands, faster
 
903
branching into an empty repository, enhancements to the config framework and
 
904
more.
 
905
 
 
906
Beta releases are suitable for everyday use but may cause some
 
907
incompatibilities with plugins.  Some plugins may need small updates to work
 
908
with 2.5b1.
80
909
 
81
910
External Compatibility Breaks
82
911
*****************************
138
967
  while ``--match-message, --match-author, --match-committer`` and
139
968
  ``--match-bugs`` match each of those fields. (Jacek Sieka)
140
969
 
141
 
* ``bzr log`` now has an option called ``--omit-merges`` to ommit
142
 
  those commits that merged branches, i.e. those having more than one
143
 
  parent.
144
 
  In order to avoid confusion, the previous command line option
145
 
  ``--include-merges`` has been renamed to ``--include-merged``.
146
 
  The old name of the command line option will still be accepted.
147
 
  The name change also affects ``bzr missing``.
148
 
  (Martin von Gagern)
149
 
 
150
970
* ``config.Option`` can now declare ``default_from_env``, a list of
151
971
  environment variables to get a default value from. (Vincent Ladeuil)
152
972
 
164
984
  (Jonathan Riddell, #804254)
165
985
 
166
986
* Translations are now enabled for command help, errors and globally
167
 
  for any message using gettext given on output.  (Jonathan Riddell,
 
987
  for any message using ``gettext`` given on output.  (Jonathan Riddell,
168
988
  INADA Naoki, #83941)
169
989
 
170
990
Improvements
205
1025
  if no bug tracker was specified on the command line.
206
1026
  (Jelmer Vernooij, #334860)
207
1027
 
208
 
* Use gettext.NullTranslations in i18n to allow use of i18n even when
 
1028
* Use ``gettext.NullTranslations`` in i18n to allow use of i18n even when
209
1029
  translations are not turned on. (Jonathan Riddell)
210
1030
 
211
1031
Bug Fixes
334
1154
  and ``_path`` attributes. Proxies are provided for the moment but
335
1155
  may be removed in the future. (Jelmer Vernooij)
336
1156
 
337
 
* The argument ``include_merges`` to ``missing.find_unmerged`` has
338
 
  been renamed to ``include_merged``. The old name is still supported
339
 
  for now but will cause a deprecation warning. (Martin von Gagern)
340
 
 
341
 
 
342
1157
Internals
343
1158
*********
344
1159