~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin von Gagern
  • Date: 2011-06-01 12:53:56 UTC
  • mto: This revision was merged to the branch mainline in revision 6009.
  • Revision ID: martin.vgagern@gmx.net-20110601125356-lwozv2vecea6hxfz
Change from no_decorate to classify as name for the argument.

The command line switch remains as --no-classify, to keep backwards
compatibility.  Users are free to include --no-classify in an alias, and
still use --classify to change back.

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