~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2016-01-21 17:48:07 UTC
  • mto: This revision was merged to the branch mainline in revision 6613.
  • Revision ID: v.ladeuil+lp@free.fr-20160121174807-g4ybpaij9ln5wj6a
Make all transport put_bytes() raises TypeError when given unicode strings rather than bytes.

There was a mix of AssertionError or UnicodeEncodeError.

Also deleted test_put_file_unicode() which was bogus, files contain bytes not unicode strings.

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.7b1
 
9
#########
 
10
 
 
11
:2.7b1: NOT RELEASED YET
 
12
 
 
13
External Compatibility Breaks
 
14
*****************************
 
15
 
 
16
.. These may require users to change the way they use Bazaar.
 
17
 
 
18
New Features
 
19
************
 
20
 
 
21
.. New commands, options, etc that users may wish to try out.
 
22
 
 
23
Improvements
 
24
************
 
25
 
 
26
.. Improvements to existing commands, especially improved performance 
 
27
   or memory usage, or better results.
 
28
 
 
29
* bzrlib.patches.parse_patches can optionally return a list of 'dirty'
 
30
  patch headers (prefixed with '===').
 
31
  (Kit Randel, #1400567)
 
32
 
 
33
Bug Fixes
 
34
*********
 
35
 
 
36
.. Fixes for situations where bzr would previously crash or give incorrect
 
37
   or undesirable results.
 
38
 
 
39
* 'acceptable_keys' from 'bazaar.conf' is now properly handled.
 
40
  (Vincent Ladeuil, #1249732)
 
41
 
 
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)
 
45
 
 
46
* Fix pyrex version checking to be more robust.
 
47
  (Andrew Starr-Bochicchio, #1030521 )
 
48
 
 
49
Documentation
 
50
*************
 
51
 
 
52
.. Improved or updated documentation.
 
53
 
 
54
API Changes
 
55
***********
 
56
 
 
57
.. Changes that may require updates in plugins or other code that uses
 
58
   bzrlib.
 
59
 
 
60
Internals
 
61
*********
 
62
 
 
63
.. Major internal changes, unlikely to be visible to users or plugin 
 
64
   developers, but interesting for bzr developers.
 
65
 
 
66
* Make all transport put_bytes() raises TypeError instead of AssertionError
 
67
  or UnicodeEncodeError when given unicode strings rather than bytes.
 
68
  (Vincent Ladeuil, #106898)
 
69
 
 
70
Changed Behaviour
 
71
*****************
 
72
 
 
73
* Also honor $XDG_CONFIG_HOME specification on Mac OS X platform.
 
74
  (Fabien Meghazi)
 
75
 
 
76
Testing
 
77
*******
 
78
 
 
79
.. Fixes and changes that are only relevant to bzr's test framework and 
 
80
   suite.  This can include new facilities for writing tests, fixes to 
 
81
   spurious test failures and changes to the way things should be tested.
 
82
 
 
83
* Fix racy http tests (TestBadStatusServer is so simple, it exposes a race
 
84
  in python 2.7.9. This happens only when both the http server and client
 
85
  are run in the same process.). Only tests are affected.
 
86
  (Vincent Ladeuil, #1451448)
 
87
     
 
88
* Fix warnings on stderr caused by the atexit handler triggering for the
 
89
  wrong reason: the 'config' command should explicitly save the changes when
 
90
  modifying or removing an option and not rely on the atexit
 
91
  handler. (Vincent Ladeuil, #1331999)
 
92
 
 
93
* Handle (minor) incompatible change in python 2.7.6 leading to test
 
94
  failures. Only tests are affected. (Vincent Ladeuil, #1303879)
 
95
 
 
96
* Remove wrong assumption about how TCP server and client interact when run
 
97
  inside the same process. (Vincent Ladeuil, #1269886).
 
98
 
 
99
* Rename assertWarns in bt.test_config so it doesn't clash with the
 
100
  assertWarns introduced in recent python (Vincent Ladeuil, #1514210)
 
101
    
 
102
* Restrict access to '.netrc' in tests or recent python (2.7.5-8) will
 
103
  complain. (Vincent Ladeuil, #1233413)
 
104
 
 
105
* Skip windows-only tests that start failing with python 2.7.9, there is no
 
106
  way to fix them without testing on windows itself.
 
107
  (Vincent Ladeuil, #1451448)
 
108
     
 
109
* Take python 2.7.6 late (better than never) bugfix in ntpath.py into
 
110
  account. Only tests are affected (Vincent Ladeuil, #1303879).
 
111
 
 
112
..
 
113
   vim: tw=74 ft=rst ff=unix