~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2016-02-01 19:56:05 UTC
  • mfrom: (6615.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20160201195605-o7rl92wf6uyum3fk
(vila) Open trunk again as 2.8b1 (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
####################
 
2
Bazaar Release Notes
 
3
####################
 
4
 
 
5
.. toctree::
 
6
   :maxdepth: 1
 
7
 
 
8
bzr 2.7.0
 
9
#########
 
10
 
 
11
:2.7.0: 2016-02-01
 
12
 
 
13
External Compatibility Breaks
 
14
*****************************
 
15
 
 
16
None.
 
17
 
 
18
New Features
 
19
************
 
20
 
 
21
None.
 
22
 
 
23
Improvements
 
24
************
 
25
 
 
26
* bzrlib.patches.parse_patches can optionally return a list of 'dirty'
 
27
  patch headers (prefixed with '===').
 
28
  (Kit Randel, #1400567)
 
29
 
 
30
Bug Fixes
 
31
*********
 
32
 
 
33
* 'acceptable_keys' from 'bazaar.conf' is now properly handled.
 
34
  (Vincent Ladeuil, #1249732)
 
35
 
 
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)
 
39
 
 
40
* Fix pyrex version checking to be more robust.
 
41
  (Andrew Starr-Bochicchio, #1030521 )
 
42
 
 
43
* Forbid more operations for ReadonlyTransportDecorator so no more write
 
44
  methods can be used my mistake.  (Vincent Ladeuil, #150196)
 
45
 
 
46
 
 
47
API Changes
 
48
***********
 
49
 
 
50
None.
 
51
 
 
52
Internals
 
53
*********
 
54
 
 
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)
 
61
 
 
62
Changed Behaviour
 
63
*****************
 
64
 
 
65
* Also honor $XDG_CONFIG_HOME specification on Mac OS X platform.
 
66
  (Fabien Meghazi)
 
67
 
 
68
Testing
 
69
*******
 
70
 
 
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
     
 
78
* Fix warnings on stderr caused by the atexit handler triggering for the
 
79
  wrong reason: the 'config' command should explicitly save the changes when
 
80
  modifying or removing an option and not rely on the atexit
 
81
  handler. (Vincent Ladeuil, #1331999)
 
82
 
 
83
* Handle (minor) incompatible change in python 2.7.6 leading to test
 
84
  failures. Only tests are affected. (Vincent Ladeuil, #1303879)
 
85
 
 
86
* Remove wrong assumption about how TCP server and client interact when run
 
87
  inside the same process. (Vincent Ladeuil, #1269886).
 
88
 
 
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
* Restrict access to '.netrc' in tests or recent python (2.7.5-8) will
 
93
  complain. (Vincent Ladeuil, #1233413)
 
94
 
 
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).