~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-11-05 17:39:54 UTC
  • mfrom: (5524.1.2 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20101105173954-s66k204jmq4ts8l1
(vila) Open trunk again as 2.3dev4 (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.3b4
 
9
#########
 
10
 
 
11
:Codename: Nirvana
 
12
:2.3.b4: NOT RELEASED YET
 
13
 
 
14
External Compatibility Breaks
 
15
*****************************
 
16
 
 
17
.. These may require users to change the way they use Bazaar.
 
18
 
 
19
New Features
 
20
************
 
21
 
 
22
.. New commands, options, etc that users may wish to try out.
 
23
 
 
24
Improvements
 
25
************
 
26
 
 
27
.. Improvements to existing commands, especially improved performance 
 
28
   or memory usage, or better results.
 
29
 
 
30
Bug Fixes
 
31
*********
 
32
 
 
33
.. Fixes for situations where bzr would previously crash or give incorrect
 
34
   or undesirable results.
 
35
 
 
36
Documentation
 
37
*************
 
38
 
 
39
.. Improved or updated documentation.
 
40
 
 
41
API Changes
 
42
***********
 
43
 
 
44
.. Changes that may require updates in plugins or other code that uses
 
45
   bzrlib.
 
46
 
 
47
Internals
 
48
*********
 
49
 
 
50
.. Major internal changes, unlikely to be visible to users or plugin 
 
51
   developers, but interesting for bzr developers.
 
52
 
 
53
Testing
 
54
*******
 
55
 
 
56
.. Fixes and changes that are only relevant to bzr's test framework and 
 
57
   suite.  This can include new facilities for writing tests, fixes to 
 
58
   spurious test failures and changes to the way things should be tested.
 
59
 
 
60
 
8
61
bzr 2.3b3
9
62
#########
10
63
 
11
 
:2.3b3: NOT RELEASED YET
 
64
:2.3b3: 2010-11-05
12
65
 
13
66
External Compatibility Breaks
14
67
*****************************
38
91
  default format for new branches created with ``bzr init``.
39
92
  (Neil Martinsen-Burrell, #484101)
40
93
 
41
 
Improvements
42
 
************
43
 
 
44
94
Bug Fixes
45
95
*********
46
96
 
49
99
* ``bzr status -r X..Y`` was failing because RevisionTree didn't implement
50
100
  ``get_shelf_manager``. (John Arbash Meinel, #662053)
51
101
 
 
102
* Correctly add directory contents when the name was previously added as a
 
103
  normal file, rather than throwing ``AttributeError: children`` during
 
104
  smart_add. (Martin [gz], #251864)
 
105
 
 
106
* Correctly handle the ``--directory`` option for all code paths of
 
107
  ``resolve`` and ``shelve``, this was previously ignored when paths were
 
108
  provided as parameters. When both are provided, ``--directory`` becomes
 
109
  the base directory for the other paths. (Vincent Ladeuil, #670851)
 
110
 
52
111
* Correctly set the Content-Type  header when http POSTing to comply
53
 
  with stricter web frameworks. (Vincent Ladeuil, #655100)
 
112
  with stricter web frameworks. (Vincent Ladeuil, #665100)
54
113
 
55
114
* Don't force openssh to use protocol=2, since that is now the default.
56
115
  (Neil Martinsen-Burrell, #561061)
61
120
 
62
121
* Make ``bzr tag --quiet`` really quiet. (Neil Martinsen-Burrell, #239523)
63
122
 
 
123
* Missing files (files bzr add'ed and then OS deleted) are now shown in ``bzr
 
124
  status`` output. (Rory Yorke, #134168)
 
125
 
 
126
* ``NotBranchError`` no longer allows errors from calling
 
127
  ``bzrdir.open_repository()`` to propagate.  This is unhelpful at best,
 
128
  and at worst can trigger infinite loops in callers.  (Andrew Bennetts)
 
129
  
 
130
* Windows installers no longer requires the Microsoft vcredist to be
 
131
  installed. (Martin [gz], Gary van der Merwe, #632465)
 
132
 
64
133
Documentation
65
134
*************
66
135
 
72
141
 
73
142
* Document the comment character in the .bzrignore file, including a
74
143
  workaround for ignore patterns that begin with #.
75
 
  (Neil Martinsen-Burrell, #621515)
 
144
  (Neil Martinsen-Burrell, #631515)
76
145
 
77
146
API Changes
78
147
***********
109
178
  get rid of some 'bytes left on the HTTP socket' useless log messages.
110
179
  (Vincent Ladeuil, #655557)
111
180
 
 
181
* ``bzrlib.tests.per_workingtree.TestCaseWithWorkingTree.make_branch_builder``
 
182
  respects its ``relpath`` parameter. (Vincent Ladeuil)
112
183
 
113
184
bzr 2.3b2
114
185
#########