~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: 2015-07-31 01:04:41 UTC
  • mto: This revision was merged to the branch mainline in revision 6606.
  • Revision ID: a.starr.b@gmail.com-20150731010441-3domwjjtnjijxlr2
Use hexlify() from binascii directly as paramiko removed hexify().

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.0
 
8
bzr 2.7b1
9
9
#########
10
10
 
11
 
:2.7.0: 2016-02-01
 
11
:2.7b1: NOT RELEASED YET
12
12
 
13
13
External Compatibility Breaks
14
14
*****************************
15
15
 
16
 
None.
 
16
.. These may require users to change the way they use Bazaar.
17
17
 
18
18
New Features
19
19
************
20
20
 
21
 
None.
 
21
.. New commands, options, etc that users may wish to try out.
22
22
 
23
23
Improvements
24
24
************
25
25
 
 
26
.. Improvements to existing commands, especially improved performance 
 
27
   or memory usage, or better results.
 
28
 
26
29
* bzrlib.patches.parse_patches can optionally return a list of 'dirty'
27
30
  patch headers (prefixed with '===').
28
31
  (Kit Randel, #1400567)
30
33
Bug Fixes
31
34
*********
32
35
 
 
36
.. Fixes for situations where bzr would previously crash or give incorrect
 
37
   or undesirable results.
 
38
 
33
39
* 'acceptable_keys' from 'bazaar.conf' is now properly handled.
34
40
  (Vincent Ladeuil, #1249732)
35
41
 
36
 
* Option names are now checked to be valid identifiers (including embedded
37
 
  dots or hyphens). Also ignore invalid references (i.e. using invalid
38
 
  option names) while expanding option values. (Vincent Ladeuil, #1235099)
 
42
* Option names are now checked to be valid [dotted] python identifiers. Also
 
43
  ignore invalid references (i.e. using invalid option names) while
 
44
  expanding option values. (Vincent Ladeuil, #1235099)
39
45
 
40
46
* Fix pyrex version checking to be more robust.
41
47
  (Andrew Starr-Bochicchio, #1030521 )
42
48
 
43
 
* Forbid more operations for ReadonlyTransportDecorator so no more write
44
 
  methods can be used my mistake.  (Vincent Ladeuil, #150196)
 
49
Documentation
 
50
*************
45
51
 
 
52
.. Improved or updated documentation.
46
53
 
47
54
API Changes
48
55
***********
49
56
 
50
 
None.
 
57
.. Changes that may require updates in plugins or other code that uses
 
58
   bzrlib.
51
59
 
52
60
Internals
53
61
*********
54
62
 
55
 
* Make all transport put_bytes() raises TypeError instead of AssertionError
56
 
  or UnicodeEncodeError when given unicode strings rather than bytes.
57
 
  (Vincent Ladeuil, #106898)
58
 
 
59
 
* Use ssl.match_hostname from the python ssl module and stop carrying a
60
 
  specific version that has become obsolete. (Vincent Ladeuil, #1538480)
 
63
.. Major internal changes, unlikely to be visible to users or plugin 
 
64
   developers, but interesting for bzr developers.
61
65
 
62
66
Changed Behaviour
63
67
*****************
68
72
Testing
69
73
*******
70
74
 
71
 
* Fix gpgme test failure starting on wily. (Vincent Ladeuil)
72
 
     
73
 
* Fix racy http tests (TestBadStatusServer is so simple, it exposes a race
74
 
  in python 2.7.9. This happens only when both the http server and client
75
 
  are run in the same process.). Only tests are affected.
76
 
  (Vincent Ladeuil, #1451448)
77
 
     
 
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
 
78
79
* Fix warnings on stderr caused by the atexit handler triggering for the
79
80
  wrong reason: the 'config' command should explicitly save the changes when
80
81
  modifying or removing an option and not rely on the atexit
83
84
* Handle (minor) incompatible change in python 2.7.6 leading to test
84
85
  failures. Only tests are affected. (Vincent Ladeuil, #1303879)
85
86
 
 
87
* Take python 2.7.6 late (better than never) bugfix in ntpath.py into
 
88
  account. Only tests are affected (Vincent Ladeuil, #1303879).
 
89
 
86
90
* Remove wrong assumption about how TCP server and client interact when run
87
91
  inside the same process. (Vincent Ladeuil, #1269886).
88
92
 
89
 
* Rename assertWarns in bt.test_config so it doesn't clash with the
90
 
  assertWarns introduced in recent python (Vincent Ladeuil, #1514210)
91
 
    
92
93
* Restrict access to '.netrc' in tests or recent python (2.7.5-8) will
93
94
  complain. (Vincent Ladeuil, #1233413)
94
95
 
95
 
* Skip windows-only tests that start failing with python 2.7.9, there is no
96
 
  way to fix them without testing on windows itself.
97
 
  (Vincent Ladeuil, #1451448)
98
 
     
99
 
* Take python 2.7.6 late (better than never) bugfix in ntpath.py into
100
 
  account. Only tests are affected (Vincent Ladeuil, #1303879).
 
96
..
 
97
   vim: tw=74 ft=rst ff=unix