~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

(gz) Remove bzrlib/util/elementtree/ package (Martin Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
 
8
bzr 2.3.5
 
9
#########
 
10
 
 
11
:2.3.5: 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
* Cope cleanly with buggy HTTP proxies that close the socket in the middle
 
36
  of a multipart response.  (Martin Pool, #198646).
 
37
 
 
38
* Fix "Unprintable exception" error when a RetryWithNewPacks error is
 
39
  displayed.  (Andrew Bennetts)
 
40
 
 
41
Documentation
 
42
*************
 
43
 
 
44
.. Improved or updated documentation.
 
45
 
 
46
API Changes
 
47
***********
 
48
 
 
49
.. Changes that may require updates in plugins or other code that uses
 
50
   bzrlib.
 
51
 
 
52
Internals
 
53
*********
 
54
 
 
55
.. Major internal changes, unlikely to be visible to users or plugin 
 
56
   developers, but interesting for bzr developers.
 
57
 
 
58
Testing
 
59
*******
 
60
 
 
61
.. Fixes and changes that are only relevant to bzr's test framework and 
 
62
   suite.  This can include new facilities for writing tests, fixes to 
 
63
   spurious test failures and changes to the way things should be tested.
 
64
 
 
65
 
8
66
bzr 2.3.4
9
67
#########
10
68
 
11
69
:Codename: One and counting
12
 
:2.3.4: NOT RELEASED YET
 
70
:2.3.4: 2011-07-14
 
71
 
 
72
This is a bugfix release. Upgrading is recommended for all users of earlier
 
73
2.3 releases.
 
74
 
 
75
This mainly fixes bug #786980 which blocked the SRU process for Ubuntu Natty.
13
76
 
14
77
External Compatibility Breaks
15
78
*****************************
27
90
.. Improvements to existing commands, especially improved performance 
28
91
   or memory usage, or better results.
29
92
 
 
93
* Tweak an RPC implementation for ``Repository.get_parent_map``, it was
 
94
  doing an inefficient ``small_set.difference_update(large_set)`` when we
 
95
  can do ``small_set = small_set.difference(large_set)``. This speeds up
 
96
  discovery time by about 10%. (John Arbash Meinel)
 
97
 
30
98
Bug Fixes
31
99
*********
32
100
 
33
101
.. Fixes for situations where bzr would previously crash or give incorrect
34
102
   or undesirable results.
35
103
 
 
104
* Accept some differences for ``bound_location`` from the config files that
 
105
  were leading to a 'ReadOnlyError: A write attempt was made in a read only
 
106
  transaction' error.  (Vincent Ladeuil, #786980)
 
107
 
 
108
* Don't fail with traceback if `bzr serve` is running as a service on Windows,
 
109
  and there is no USERNAME, nor BZR_EMAIL or other whoami-related environment
 
110
  variables set. (Alexander Belchenko, Bug #660174)
 
111
 
36
112
Documentation
37
113
*************
38
114
 
40
116
 
41
117
* Updated the "Using stacked branches" section of the user guide to
42
118
  describe committing to stacked branches and expanded its discussion of
43
 
  pushing a stcked branch.  (Andrew Bennetts)
 
119
  pushing a stacked branch.  (Andrew Bennetts)
44
120
 
45
121
API Changes
46
122
***********
61
137
   suite.  This can include new facilities for writing tests, fixes to 
62
138
   spurious test failures and changes to the way things should be tested.
63
139
 
 
140
* Remove the deprecation decorators for ``failUnlessExists`` and
 
141
  ``failIfExists``. The deprecation "will" occur in 2.4, not
 
142
  before. Providing the wrappers is enough as far as 2.3 is concerned.
 
143
  (Vincent Ladeuil #794960)
64
144
 
65
145
bzr 2.3.3
66
146
#########