~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2013-05-19 14:29:37 UTC
  • mfrom: (6437.63.9 2.5)
  • mto: (6437.63.10 2.5)
  • mto: This revision was merged to the branch mainline in revision 6575.
  • Revision ID: john@arbash-meinel.com-20130519142937-21ykz2n2y2f22za9
Merge in the actual 2.5 branch. It seems I failed before

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
8
 
bzr 2.5.1
 
8
bzr 2.5.2
9
9
#########
10
10
 
11
 
:2.5.1: NOT RELEASED YET
 
11
:2.5.2: NOT RELEASED YET
12
12
 
13
13
External Compatibility Breaks
14
14
*****************************
32
32
.. Fixes for situations where bzr would previously crash or give incorrect
33
33
   or undesirable results.
34
34
 
 
35
* ``bzr config`` properly handles aliases and references in the
 
36
  ``--directory`` parameter (Vincent Ladeuil, Wouter van Heyst, #947049)
 
37
 
 
38
* Lightweight checkouts of remote repositories had a bug with how they
 
39
  extracted texts from the repository. (Just an ordering constraint on how
 
40
  they consumed the stream.) (John Arbash Meinel, #1046284)
 
41
 
 
42
* ``osutils.send_all`` now detects if we get a series of zero bytes sent,
 
43
  and fails with a ECONNRESET. It seems if paramiko gets disconnected, it
 
44
  will get into a state where it returns 0 bytes sent, but doesn't raise
 
45
  an error. This change allows us to get a couple hiccups of no content
 
46
  sent, but if it is consistent, we will consider it to be a failure.
 
47
  (John Arbash Meinel, #1047309)
 
48
 
 
49
* Revert use of --no-tty when gpg signing commits. (Jelmer Vernooij, #1014570)
 
50
 
 
51
* Some small bug fixes wrt lightweight checkouts and remote repositories.
 
52
  A test permutation was added that runs all working tree tests against a
 
53
  lightweight checkout. (John Arbash Meinel, #1046697)
 
54
 
 
55
Documentation
 
56
*************
 
57
 
 
58
.. Improved or updated documentation.
 
59
 
 
60
API Changes
 
61
***********
 
62
 
 
63
.. Changes that may require updates in plugins or other code that uses
 
64
   bzrlib.
 
65
 
 
66
Internals
 
67
*********
 
68
 
 
69
.. Major internal changes, unlikely to be visible to users or plugin 
 
70
   developers, but interesting for bzr developers.
 
71
 
 
72
Testing
 
73
*******
 
74
 
 
75
.. Fixes and changes that are only relevant to bzr's test framework and 
 
76
   suite.  This can include new facilities for writing tests, fixes to 
 
77
   spurious test failures and changes to the way things should be tested.
 
78
 
 
79
 
 
80
bzr 2.5.1
 
81
#########
 
82
 
 
83
:2.5.1: 2012-05-22
 
84
 
 
85
This is a bugfix release. Most of the bugs dealt with https and colocated
 
86
branches glitches. Upgrading is recommended for all users of earlier 2.5
 
87
releases.
 
88
 
 
89
External Compatibility Breaks
 
90
*****************************
 
91
 
 
92
None.
 
93
 
 
94
New Features
 
95
************
 
96
 
 
97
None.
 
98
 
 
99
Improvements
 
100
************
 
101
 
 
102
* ``bzr rmbranch`` now supports removing colocated branches.
 
103
  (Jelmer Vernooij, #920653)
 
104
 
 
105
* ``bzr rmbranch`` no longer removes active branches unless ``--force``
 
106
  is specified. (Jelmer Vernooij, #922953)
 
107
 
 
108
Bug Fixes
 
109
*********
 
110
 
35
111
* Connecting with HTTPS via HTTP now correctly uses the host name of the
36
112
  destination rather than the proxy when checking certificates.
37
113
  (Martin Packman, #944696)
38
114
 
 
115
* Fixed merge tool availability checking and invocation to search the
 
116
  Windows App Path registry in addition to the PATH. (Gordon Tyler, #939605)
 
117
 
 
118
* Fixed problem with getting errors about failing to open /dev/tty when using
 
119
  Bazaar Explorer to sign commits. (Mark Grandi, #847388)
 
120
 
39
121
* Fix UnicodeEncodeError when translated progress task messages contain
40
122
  non-ascii text. (Martin Packman, #966934)
41
123
 
42
 
* Fixed merge tool availability checking and invocation to search the
43
 
  Windows App Path registry in addition to the PATH. (Gordon Tyler, #939605)
44
 
 
45
124
* Make sure configuration options can provide their own help topic.
46
125
  (Jelmer Vernooij, #941672)
47
126
 
57
136
API Changes
58
137
***********
59
138
 
60
 
.. Changes that may require updates in plugins or other code that uses
61
 
   bzrlib.
62
 
 
63
 
Internals
64
 
*********
65
 
 
66
 
.. Major internal changes, unlikely to be visible to users or plugin 
67
 
   developers, but interesting for bzr developers.
 
139
None.
68
140
 
69
141
Testing
70
142
*******
71
143
 
72
 
.. Fixes and changes that are only relevant to bzr's test framework and 
73
 
   suite.  This can include new facilities for writing tests, fixes to 
74
 
   spurious test failures and changes to the way things should be tested.
75
 
 
76
144
* Add support for pyftpdlib >= 0.7.0 and drop support for previous pyftpdlib
77
145
  versions. (Vincent Ladeuil, #956027)
78
146
 
1094
1162
  operations that use it, like merge, can now create trees without a root.
1095
1163
  (Aaron Bentley)
1096
1164
 
1097
 
* Fixed problem with getting errors about failing to open /dev/tty when using
1098
 
  Bazaar Explorer to sign commits. (Mark Grandi, #847388)
1099
 
 
1100
1165
Documentation
1101
1166
*************
1102
1167