~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Andrew Starr-Bochicchio
  • Date: 2014-03-30 17:59:29 UTC
  • mto: This revision was merged to the branch mainline in revision 6592.
  • Revision ID: a.starr.b@gmail.com-20140330175929-rd97jstcbau2j1gy
Use LooseVersion from distutils to check Cython version in order to handle non-integers in the version string.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. toctree::
6
6
   :maxdepth: 1
7
7
 
8
 
bzr 2.7.1
 
8
bzr 2.7b1
9
9
#########
10
10
 
11
 
:2.7.1: NOT RELEASED YET
12
 
 
 
11
:2.7b1: NOT RELEASED YET
13
12
 
14
13
External Compatibility Breaks
15
14
*****************************
16
15
 
17
 
None.
 
16
.. These may require users to change the way they use Bazaar.
18
17
 
19
18
New Features
20
19
************
21
20
 
22
 
None.
 
21
.. New commands, options, etc that users may wish to try out.
23
22
 
24
23
Improvements
25
24
************
26
25
 
27
 
None.
28
 
 
 
26
.. Improvements to existing commands, especially improved performance 
 
27
   or memory usage, or better results.
29
28
 
30
29
Bug Fixes
31
30
*********
32
31
 
33
 
* Complete monkey-patching of re.finditer or LazyRegexps leak.
34
 
  (Vincent Ladeuil, #1644003)
 
32
.. Fixes for situations where bzr would previously crash or give incorrect
 
33
   or undesirable results.
35
34
 
36
 
* Cope with paramiko making argument to SFTPFile.prefetch() mandatory.
37
 
  (Jelmer Vernooij, #1579093)
 
35
* Option names are now checked to be valid [dotted] python identifiers. Also
 
36
  ignore invalid references (i.e. using invalid option names) while
 
37
  expanding option values. (Vincent Ladeuil, #1235099)
38
38
 
39
39
Documentation
40
40
*************
41
41
 
42
 
* Clarify pypi uploads for releases. (Vincent Ladeuil, #1542903)
43
 
 
44
 
API Changes
45
 
***********
46
 
 
47
 
None.
48
 
 
49
 
Internals
50
 
*********
51
 
 
52
 
None.
53
 
 
54
 
Changed Behaviour
55
 
*****************
56
 
 
57
 
None.
58
 
 
59
 
Testing
60
 
*******
61
 
 
62
 
* Recent versions of pycurl started being stricter about the proxy url,
63
 
  using 'http+pycurl:' is not allowed anymore and should just be 'http:'
64
 
  (Vincent Ladeuil, #1645017).
65
 
 
66
 
 
67
 
bzr 2.7.0
68
 
#########
69
 
 
70
 
:2.7.0: 2016-02-01
71
 
 
72
 
External Compatibility Breaks
73
 
*****************************
74
 
 
75
 
None.
76
 
 
77
 
New Features
78
 
************
79
 
 
80
 
None.
81
 
 
82
 
Improvements
83
 
************
84
 
 
85
 
* bzrlib.patches.parse_patches can optionally return a list of 'dirty'
86
 
  patch headers (prefixed with '===').
87
 
  (Kit Randel, #1400567)
88
 
 
89
 
Bug Fixes
90
 
*********
91
 
 
92
 
* 'acceptable_keys' from 'bazaar.conf' is now properly handled.
93
 
  (Vincent Ladeuil, #1249732)
94
 
 
95
 
* Option names are now checked to be valid identifiers (including embedded
96
 
  dots or hyphens). Also ignore invalid references (i.e. using invalid
97
 
  option names) while expanding option values. (Vincent Ladeuil, #1235099)
98
 
 
99
 
* Fix pyrex version checking to be more robust.
100
 
  (Andrew Starr-Bochicchio, #1030521 )
101
 
 
102
 
* Forbid more operations for ReadonlyTransportDecorator so no more write
103
 
  methods can be used my mistake.  (Vincent Ladeuil, #150196)
104
 
 
105
 
 
106
 
API Changes
107
 
***********
108
 
 
109
 
None.
110
 
 
111
 
Internals
112
 
*********
113
 
 
114
 
* Make all transport put_bytes() raises TypeError instead of AssertionError
115
 
  or UnicodeEncodeError when given unicode strings rather than bytes.
116
 
  (Vincent Ladeuil, #106898)
117
 
 
118
 
* Use ssl.match_hostname from the python ssl module and stop carrying a
119
 
  specific version that has become obsolete. (Vincent Ladeuil, #1538480)
120
 
 
121
 
Changed Behaviour
122
 
*****************
123
 
 
124
 
* Also honor $XDG_CONFIG_HOME specification on Mac OS X platform.
125
 
  (Fabien Meghazi)
126
 
 
127
 
Testing
128
 
*******
129
 
 
130
 
* Fix gpgme test failure starting on wily. (Vincent Ladeuil)
131
 
     
132
 
* Fix racy http tests (TestBadStatusServer is so simple, it exposes a race
133
 
  in python 2.7.9. This happens only when both the http server and client
134
 
  are run in the same process.). Only tests are affected.
135
 
  (Vincent Ladeuil, #1451448)
136
 
     
137
 
* Fix warnings on stderr caused by the atexit handler triggering for the
138
 
  wrong reason: the 'config' command should explicitly save the changes when
139
 
  modifying or removing an option and not rely on the atexit
140
 
  handler. (Vincent Ladeuil, #1331999)
141
 
 
142
 
* Handle (minor) incompatible change in python 2.7.6 leading to test
143
 
  failures. Only tests are affected. (Vincent Ladeuil, #1303879)
 
42
.. Improved or updated documentation.
 
43
 
 
44
API Changes
 
45
***********
 
46
 
 
47
.. Changes that may require updates in plugins or other code that uses
 
48
   bzrlib.
 
49
 
 
50
Internals
 
51
*********
 
52
 
 
53
.. Major internal changes, unlikely to be visible to users or plugin 
 
54
   developers, but interesting for bzr developers.
 
55
 
 
56
Testing
 
57
*******
 
58
 
 
59
.. Fixes and changes that are only relevant to bzr's test framework and 
 
60
   suite.  This can include new facilities for writing tests, fixes to 
 
61
   spurious test failures and changes to the way things should be tested.
144
62
 
145
63
* Remove wrong assumption about how TCP server and client interact when run
146
64
  inside the same process. (Vincent Ladeuil, #1269886).
147
65
 
148
 
* Rename assertWarns in bt.test_config so it doesn't clash with the
149
 
  assertWarns introduced in recent python (Vincent Ladeuil, #1514210)
150
 
    
151
66
* Restrict access to '.netrc' in tests or recent python (2.7.5-8) will
152
67
  complain. (Vincent Ladeuil, #1233413)
153
68
 
154
 
* Skip windows-only tests that start failing with python 2.7.9, there is no
155
 
  way to fix them without testing on windows itself.
156
 
  (Vincent Ladeuil, #1451448)
157
 
     
158
 
* Take python 2.7.6 late (better than never) bugfix in ntpath.py into
159
 
  account. Only tests are affected (Vincent Ladeuil, #1303879).
 
69
..
 
70
   vim: tw=74 ft=rst ff=unix