~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: 2010-12-02 17:28:40 UTC
  • mfrom: (5555.1.2 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20101202172840-i4wtlbm8vt4wi1j0
(vila) Open trunk again as 2.3dev5 (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
 
8
bzr 2.3b5
 
9
#########
 
10
 
 
11
:2.3.b5: 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
Documentation
 
36
*************
 
37
 
 
38
.. Improved or updated documentation.
 
39
 
 
40
API Changes
 
41
***********
 
42
 
 
43
.. Changes that may require updates in plugins or other code that uses
 
44
   bzrlib.
 
45
 
 
46
Internals
 
47
*********
 
48
 
 
49
.. Major internal changes, unlikely to be visible to users or plugin 
 
50
   developers, but interesting for bzr developers.
 
51
 
 
52
Testing
 
53
*******
 
54
 
 
55
.. Fixes and changes that are only relevant to bzr's test framework and 
 
56
   suite.  This can include new facilities for writing tests, fixes to 
 
57
   spurious test failures and changes to the way things should be tested.
 
58
 
 
59
 
8
60
bzr 2.3b4
9
61
#########
10
62
 
26
78
External Compatibility Breaks
27
79
*****************************
28
80
 
29
 
.. These may require users to change the way they use Bazaar.
30
 
 
31
81
  (none)
32
82
 
33
83
Improvements
34
84
************
35
85
 
36
 
.. Improvements to existing commands, especially improved performance 
37
 
   or memory usage, or better results.
38
 
 
39
86
* Bazaar now caches a branch's tags while that branch is read-locked.
40
87
  This removes 1 network roundtrip from most interactions with a remote
41
88
  branch.  (Andrew Bennetts)
55
102
Bug Fixes
56
103
*********
57
104
 
58
 
.. Fixes for situations where bzr would previously crash or give incorrect
59
 
   or undesirable results.
60
 
 
61
105
* Better message if there is an error while setting ownership of
62
106
  ``.bazaar`` directory. (Parth Malwankar, #657553)
63
107
 
87
131
Internals
88
132
*********
89
133
 
90
 
.. Major internal changes, unlikely to be visible to users or plugin 
91
 
   developers, but interesting for bzr developers.
92
 
 
93
134
* ``BranchBuilder.build_snapshot`` now accepts parent_ids == [].
94
135
  This can be used to create a new root in the graph. (Gary van der Merwe)
95
136
 
101
142
Testing
102
143
*******
103
144
 
104
 
.. Fixes and changes that are only relevant to bzr's test framework and 
105
 
   suite.  This can include new facilities for writing tests, fixes to 
106
 
   spurious test failures and changes to the way things should be tested.
107
 
 
108
145
* Add a null_output_matches_anything keyword argument with default False to
109
146
  bzrlib.tests.script.ScriptRunner.run_script to specify that the command
110
147
  output should not be checked (as opposed to expecting an empty output).