~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge JAM Integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
bzr development version
2
2
 
 
3
  IMPROVEMENTS:
 
4
 
 
5
    * The FTP transport now tries to reconnect after a temporary
 
6
      failure. ftp put is made atomic. (Matthieu Moy)
 
7
 
 
8
    * The FTP transport now maintains a pool of connections, and
 
9
      reuses them to avoid multiple connections to the same host (like
 
10
      sftp did). (Daniel Silverstone)
 
11
 
 
12
    * The bzr_man.py file has been removed. To create the man page now,
 
13
      use ./generate_docs.py man. The new program can also create other files.
 
14
      Run "python generate_docs.py --help" for usage information. (Hans
 
15
      Ulrich Niedermann & James Blackwell).
 
16
 
 
17
    * Man Page now gives full help (James Blackwell). Help also updated to 
 
18
      reflect user config now being stored in .bazaar (Hans Ulrich
 
19
      Niedermann)
 
20
 
 
21
    * 'bzr re-sign' now allows multiple revisions to be supplied on the command
 
22
      line. You can now use the following command to sign all of your old commits.
 
23
        find .bzr/revision-store// -name my@email-* \
 
24
          | sed 's/.*\/\/..\///' \
 
25
          | xargs bzr re-sign
 
26
 
3
27
  INTERNALS:
4
28
  
5
29
    * The internal storage of history, and logical branch identity have now
12
36
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
13
37
      for testing SFTP protocol support. (Robey Pointer)
14
38
 
 
39
  IMPROVEMENTS:
 
40
 
 
41
    * pull now accepts a --revision argument (Erik Bågfors)
 
42
 
 
43
 
15
44
bzr 0.7rc1 2006-01-09
16
45
 
17
46
  CHANGES:
117
146
    * 'bzr add' now takes a --dry-run parameter which shows you what would be
118
147
      added, but doesn't actually add anything. (Michael Ellerman)
119
148
 
120
 
    * bzr add now lists how many files were ignored per glob.  add --verbose
 
149
    * 'bzr add' now lists how many files were ignored per glob.  add --verbose
121
150
      lists the specific files.  (Aaron Bentley)
122
151
 
 
152
    * 'bzr missing' now supports displaying changes in diverged trees and can
 
153
      be limited to show what either end of the comparison is missing.
 
154
      (Aaron Bently, with a little prompting from Daniel Silverstone)
 
155
 
123
156
  BUG FIXES:
124
157
 
125
158
    * SFTP can walk up to the root path without index errors. (Robert Collins)