/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 doc/en/release-notes/bzr-2.4.txt

  • Committer: Jelmer Vernooij
  • Date: 2011-11-25 17:54:52 UTC
  • mfrom: (6303 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6321.
  • Revision ID: jelmer@samba.org-20111125175452-v0uwwxqcp97tzuzv
Merge bzr.dev.

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.3
 
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
Bug Fixes
 
30
*********
 
31
 
 
32
.. Fixes for situations where bzr would previously crash or give incorrect
 
33
   or undesirable results.
 
34
 
 
35
* During merges, when two entries end up using the same path for two
 
36
  different file-ids (the same file being 'bzr added' in two different
 
37
  branches) , 'duplicate' conflicts are created instead of 'content'
 
38
  ones. This was previously leading to a 'Malformed tramsform' exception.
 
39
  (Vincent Ladeuil, #880701)
 
40
 
 
41
* 'Malformed transform' exceptions are now recognized as internal errors
 
42
  instead of user errors and report a traceback. This will reduce user
 
43
  confusion as there is generally nothing users can do about them.
 
44
  (Vincent Ladeuil, #880701)
 
45
 
 
46
Documentation
 
47
*************
 
48
 
 
49
.. Improved or updated documentation.
 
50
 
 
51
API Changes
 
52
***********
 
53
 
 
54
.. Changes that may require updates in plugins or other code that uses
 
55
   bzrlib.
 
56
 
 
57
Internals
 
58
*********
 
59
 
 
60
.. Major internal changes, unlikely to be visible to users or plugin 
 
61
   developers, but interesting for bzr developers.
 
62
 
 
63
Testing
 
64
*******
 
65
 
 
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.
 
69
 
 
70
 
8
71
bzr 2.4.2
9
72
#########
10
73
 
11
 
:2.4.2: NOT RELEASED YET
 
74
:2.4.2: 2011-10-27
 
75
 
 
76
This is a bugfix release. Most of the bugs dealt with portability
 
77
issues. Upgrading is recommended for all users of earlier 2.4 releases.
12
78
 
13
79
External Compatibility Breaks
14
80
*****************************
15
81
 
16
 
.. These may require users to change the way they use Bazaar.
 
82
None.
17
83
 
18
84
New Features
19
85
************
20
86
 
21
 
.. New commands, options, etc that users may wish to try out.
 
87
None.
22
88
 
23
89
Improvements
24
90
************
25
91
 
26
 
.. Improvements to existing commands, especially improved performance 
27
 
   or memory usage, or better results.
28
 
 
29
92
* Fixed a bug where ``bzr tags -r x..y`` loaded the branch history once for
30
93
  every revision in the range; it's now much faster. (Vincent Ladeuil, #857335)
31
94
 
59
122
Documentation
60
123
*************
61
124
 
62
 
.. Improved or updated documentation.
 
125
* Corrected documentation for ``bzr serve`` in the Admin Guide.
 
126
  (Morten Bøgeskov, Martin Pool, #832576)
63
127
 
64
128
API Changes
65
129
***********
66
130
 
67
 
.. Changes that may require updates in plugins or other code that uses
68
 
   bzrlib.
 
131
None.
69
132
 
70
133
Internals
71
134
*********
72
135
 
73
 
.. Major internal changes, unlikely to be visible to users or plugin 
74
 
   developers, but interesting for bzr developers.
 
136
No changes.
75
137
 
76
138
Testing
77
139
*******
78
140
 
79
 
.. Fixes and changes that are only relevant to bzr's test framework and 
80
 
   suite.  This can include new facilities for writing tests, fixes to 
81
 
   spurious test failures and changes to the way things should be tested.
 
141
* Accept both old and new style testtools output in selftest tests.
 
142
  (Jelmer Vernooij, Martin Packman, #815423)
82
143
 
83
144
* Fix the race for TestingThreadingTCPServer in
84
145
  test_server_crash_while_responding. (Vincent Ladeuil, #869366)