~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-22 08:02:12 UTC
  • mfrom: (6612 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6613.
  • Revision ID: v.ladeuil+lp@free.fr-20160122080212-iz2fcz6n0su5px7g
Merge trunk resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
* 'acceptable_keys' from 'bazaar.conf' is now properly handled.
40
40
  (Vincent Ladeuil, #1249732)
41
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)
 
42
* Option names are now checked to be valid identifiers (including embedded
 
43
  dots or hyphens). Also ignore invalid references (i.e. using invalid
 
44
  option names) while expanding option values. (Vincent Ladeuil, #1235099)
45
45
 
46
46
* Fix pyrex version checking to be more robust.
47
47
  (Andrew Starr-Bochicchio, #1030521 )
48
48
 
 
49
* Forbid more operations for ReadonlyTransportDecorator so no more write
 
50
  methods can be used my mistake.  (Vincent Ladeuil, #150196)
 
51
 
49
52
Documentation
50
53
*************
51
54
 
80
83
   suite.  This can include new facilities for writing tests, fixes to 
81
84
   spurious test failures and changes to the way things should be tested.
82
85
 
 
86
* Fix gpgme test failure starting on wily. (Vincent Ladeuil)
 
87
     
83
88
* Fix racy http tests (TestBadStatusServer is so simple, it exposes a race
84
89
  in python 2.7.9. This happens only when both the http server and client
85
90
  are run in the same process.). Only tests are affected.