~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

[merge] from robert and fix up tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
      Goffredo Baroncelli.
21
21
    
22
22
    * 'bzr check' now accepts -v for verbose reporting, and checks for
23
 
      ghosts in the branch.
 
23
      ghosts in the branch. (Robert Collins)
 
24
 
 
25
    * New command 're-sign' which will regenerate the gpg signature for 
 
26
      a revision. (Robert Collins)
 
27
 
 
28
    * If you set check_signatures=require for a path in 
 
29
      ~/.bazaar/branches.conf then bzr will invoke your
 
30
      gpg_signing_command (defaults to gpg) and record a digital signature
 
31
      of your commit. (Robert Collins)
24
32
 
25
33
  TESTING:
26
34
 
27
35
    * The 'bzr selftest --pattern' option for has been removed, now 
28
36
      test specifiers on the command line can be simple strings, or 
29
 
      regexps, or both.
 
37
      regexps, or both. (Robert Collins)
30
38
 
31
39
    * Passing -v to selftest will now show the time each test took to 
32
40
      complete, which will aid in analysing performance regressions and
33
 
      related questions.
 
41
      related questions. (Robert Collins)
34
42
 
35
43
    * 'bzr selftest' runs all tests, even if one feels, unless '--one'
36
44
      is given. (Martin Pool)
72
80
    * Cleaner exception structure and error reporting.  Suggested by 
73
81
      Scott James Remnant.  (Martin Pool)
74
82
 
 
83
    * Branch.remove has been moved to WorkingTree, which has also gained
 
84
      lock_read, lock_write and unlock methods for convenience. (Robert
 
85
      Collins)
 
86
 
 
87
    * Two decorators, needs_read_lock and needs_write_lock have been added
 
88
      to the branch module. Use these to cause a function to run in a
 
89
      read or write lock respectively. (Robert Collins)
 
90
 
 
91
    * Branch.open_containing now returns a tuple (Branch, relative-path),
 
92
      which allows direct access to the common case of 'get me this file
 
93
      from its branch'. (Robert Collins)
 
94
 
75
95
  BUG FIXES:
76
96
 
77
97
    * Better handling of branches in directories with non-ascii names.