~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2011-09-08 11:01:15 UTC
  • mfrom: (6123.1.16 gpg-typo)
  • Revision ID: pqm@cupuasso-20110908110115-gbb9benwkdksvzk5
(jelmer) Fix a typo (invalid format identifier) in an error message in
 bzrlib.gpg. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
8
 
bzr 2.4.2
9
 
#########
10
 
 
11
 
:2.4.2: NOT RELEASED YET
12
 
 
13
 
External Compatibility Breaks
14
 
*****************************
15
 
 
16
 
.. These may require users to change the way they use Bazaar.
17
 
 
18
 
New Features
19
 
************
20
 
 
21
 
.. New commands, options, etc that users may wish to try out.
22
 
 
23
 
Improvements
24
 
************
25
 
 
26
 
.. Improvements to existing commands, especially improved performance 
27
 
   or memory usage, or better results.
28
 
 
29
 
* Fixed a bug where ``bzr tags -r x..y`` loaded the branch history once for
30
 
  every revision in the range; it's now much faster. (Vincent Ladeuil, #857335)
31
 
 
32
 
Bug Fixes
33
 
*********
34
 
 
35
 
* Fixed an infinite loop when creating a repo at the root of the filesystem, 
36
 
  i.e. "/", due to posixpath.normpath() not collapsing 2 leading slashes into 
37
 
  one, thus respecting the POSIX standard, but making relpath() loop infinitely.
38
 
  (Florian Vichot, #861008)
39
 
 
40
 
* Fixed loading of external merge tools from config to properly decode
41
 
  command-lines which contain embedded quotes. (Gordon Tyler, #828803)
42
 
 
43
 
* Prevent several kinds of OverflowError and other fallout from failing to fit
44
 
  stat fields into four bytes in dirstate pack_stat implementations.
45
 
  (Martin Packman, #683191 #706957)
46
 
 
47
 
* Return early from create_delta_index_from_delta given tiny inputs. This
48
 
  avoids raising a spurious MemoryError on certain platforms such as AIX.
49
 
  (John Arbash Meinel, #856731)
50
 
  
51
 
Documentation
52
 
*************
53
 
 
54
 
.. Improved or updated documentation.
55
 
 
56
 
API Changes
57
 
***********
58
 
 
59
 
.. Changes that may require updates in plugins or other code that uses
60
 
   bzrlib.
61
 
 
62
 
Internals
63
 
*********
64
 
 
65
 
.. Major internal changes, unlikely to be visible to users or plugin 
66
 
   developers, but interesting for bzr developers.
67
 
 
68
 
Testing
69
 
*******
70
 
 
71
 
.. Fixes and changes that are only relevant to bzr's test framework and 
72
 
   suite.  This can include new facilities for writing tests, fixes to 
73
 
   spurious test failures and changes to the way things should be tested.
74
 
 
75
 
 
76
8
bzr 2.4.1
77
9
#########
78
10
 
79
 
:2.4.1: 2011-09-08
80
 
 
81
 
This is a bugfix release. Upgrading is recommended for all users of earlier
82
 
2.4 releases.
83
 
 
84
 
It includes fixes from previous stable releases and address some issues with
85
 
the test suite.
86
 
 
 
11
:2.4.1: NOT RELEASED YET
87
12
 
88
13
External Compatibility Breaks
89
14
*****************************