~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-06-30 18:28:17 UTC
  • mfrom: (5967.10.2 test-cat)
  • Revision ID: pqm@pqm.ubuntu.com-20110630182817-83a5q9r9rxfkdn8r
(mbp) don't use subprocesses for testing cat (Martin Pool)

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