~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
IN DEVELOPMENT
2
 
 
 
2
  
3
3
  IMPROVEMENTS:
4
 
 
5
 
   * The revision specifier "revno:" is extended to accept the syntax
6
 
     revno:N:branch. For example,
7
 
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
8
 
     bzr.dev.  (Matthieu Moy)
 
4
  
 
5
    * 'bzr add --file-ids-from' can be used to specify another path to use
 
6
      for creating file ids, rather than generating all new ones. Internally,
 
7
      the 'action' passed to smart_add_tree() can return file_ids that
 
8
      will be used, rather than having bzrlib generate new ones.
 
9
      (John Arbash Meinel, #55781)
 
10
 
 
11
    * ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
12
      This will cache some of the intermediate trees, and decrease the
 
13
      setup time for benchmark tests. (John Arbash Meinel)
 
14
 
 
15
  BUG FIXES:
 
16
 
 
17
    * Use GPG_TTY to allow gpg --cl to work with gpg-agent in a pipeline,
 
18
      (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
19
 
 
20
  INTERNALS:
 
21
 
 
22
    * ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
23
      which can be used to cache the conversion between utf8 and Unicode.
 
24
      Especially helpful for some of the knit annotation code, which has to
 
25
      convert revision ids to utf8 to annotate lines in storage.
 
26
      (John Arbash Meinel)
 
27
 
 
28
bzr 0.9.0  2006-08-11
 
29
 
 
30
  SURPRISES:
9
31
 
10
32
   * The hard-coded built-in ignore rules have been removed. There are
11
33
     now two rulesets which are enforced. A user global one in 
18
40
     running 'bzr ignore --old-default-rules'.
19
41
     (Robert Collins, Martin Pool, John Arbash Meinel)
20
42
 
 
43
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
 
44
     to more locations than just branch locations.
 
45
     (Aaron Bentley)
 
46
   
 
47
  IMPROVEMENTS:
 
48
 
 
49
   * The revision specifier "revno:" is extended to accept the syntax
 
50
     revno:N:branch. For example,
 
51
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
52
     bzr.dev.  (Matthieu Moy)
 
53
 
21
54
   * Tests updates to ensure proper URL handling, UNICODE support, and
22
55
     proper printing when the user's terminal encoding cannot display 
23
56
     the path of a file that has been versioned.
80
113
     the same way you would apply another branch.
81
114
     (John Arbash Meinel, Aaron Bentley)
82
115
  
83
 
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
84
 
     to more locations than just branch locations.
85
 
     (Aaron Bentley)
86
 
   
87
116
   * 'bzr whoami' can now be used to set your identity from the command line,
88
117
     for a branch or globally.  (Robey Pointer)
89
118
 
211
240
 
212
241
    * Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
213
242
 
 
243
    * Fix Branch.get_parent() to handle the case when the parent is not 
 
244
      accessible (John Arbash Meinel, #52976)
 
245
 
214
246
  INTERNALS:
215
247
 
216
248
    * Combine the ignore rules into a single regex rather than looping over