~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:
5
5
    * .bzrignore is excluded from exports, on the grounds that it's a bzr 
6
6
      internal-use file and may not be wanted.  (Jamie Wilkinson)
7
7
 
 
8
    * The "bzr directories" command were removed in favor of the new
 
9
      --kind option to the "bzr inventory" command.  To list all 
 
10
      versioned directories, now use "bzr inventory --kind directory".  
 
11
      (Johan Rydberg)
 
12
 
 
13
    * Under Windows configuration directory is now %APPDATA%\bazaar\2.0
 
14
      by default. (John Arbash Meinel)
 
15
 
 
16
    * The parent of Bzr configuration directory can be set by BZR_HOME
 
17
      environment variable. Now the path for it is searched in BZR_HOME, then
 
18
      in HOME. Under Windows the order is: BZR_HOME, APPDATA (usually
 
19
      points to C:\Documents and Settings\User Name\Application Data), HOME.
 
20
      (John Arbash Meinel)
 
21
 
 
22
    * Use systems' external ssh command to open connections if possible.  
 
23
      This gives better integration with user settings such as ProxyCommand.
 
24
      (James Henstridge)
 
25
 
8
26
  IMPROVEMENTS:
9
27
 
10
28
    * "bzr INIT dir" now initializes the specified directory, and creates 
39
57
    * New ftp transport support (on ftplib), for ftp:// and aftp:// 
40
58
      URLs.  (Daniel Silverstone)
41
59
 
 
60
    * Commit editor temporary files now start with 'bzr_log.', to allow 
 
61
      text editors to match the file name and set up appropriate modes or 
 
62
      settings.  (Magnus Therning)
 
63
 
 
64
    * Improved performance when integrating changes from a remote weave.  
 
65
      (Goffredo Baroncelli)
 
66
 
42
67
  BUG FIXES:
43
68
 
44
69
    * SFTP can walk up to the root path without index errors. (Robert Collins)
60
85
    * Stores with some compressed texts and some uncompressed texts are now
61
86
      able to be used. (John A Meinel)
62
87
 
 
88
    * Fix for bzr pull failing sometimes under windows
 
89
 
 
90
    * Fix for sftp transport under windows when using interactive auth
 
91
 
63
92
    * Show files which are both renamed and modified as such in 'bzr 
64
93
      status' output.  (#4503, Daniel Silverstone)
65
94
 
69
98
    * Fix representation of tab characters in commit messages.  (Harald 
70
99
      Meland)
71
100
 
 
101
    * List of plugin directories in BZR_PLUGIN_PATH environment variable is
 
102
      now parsed properly under Windows. (Alexander Belchenko)
 
103
 
 
104
    * Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
105
 
 
106
    * Keep a cached copy of the basis inventory to speed up operations 
 
107
      that need to refer to it.  (Johan Rydberg, Martin Pool)
 
108
 
72
109
  TESTING:
73
110
 
74
111
    * Fix selftest asking for passwords when there are no SFTP keys.  
76
113
 
77
114
    * Fix selftest run with 'python -O'.  (Martin Pool)
78
115
 
 
116
    * Fix HTTP tests under Windows. (John Arbash Meinel)
 
117
 
 
118
    * Make tests work even if HOME is not set (Aaron Bentley)
 
119
 
 
120
    * Updated build_tree to use fixed line-endings for tests which read 
 
121
      the file cotents and compare. Make some tests use this to pass under
 
122
      Windows. (John Arbash Meinel)
 
123
 
 
124
    * Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
125
 
 
126
    * Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
127
      (John Arbash Meinel)
 
128
 
 
129
    * Use terminal width to align verbose test output.  (Martin Pool)
 
130
 
 
131
    * Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
 
132
      If adding a new test script please add that to
 
133
      bzrlib.tests.blackbox.__init__. (Robert Collins)
 
134
 
79
135
  INTERNALS:
80
136
 
81
137
    * WorkingTree.pull has been split across Branch and WorkingTree,
112
168
    * All pending merges operations from Branch are now on WorkingTree.
113
169
      (Robert Collins)
114
170
 
115
 
    * Branch.commit() has moved to WorkingTree.commit(). (Robert Collins)
116
 
 
 
171
    * The follow operations from Branch have moved to WorkingTree:
 
172
      add()
 
173
      commit()
 
174
      move()
 
175
      rename_one()
 
176
      unknowns()
 
177
      (Robert Collins)
 
178
 
 
179
    * bzrlib.add.smart_add_branch is now smart_add_tree. (Robert Collins)
 
180
 
 
181
    * New "rio" serialization format, similar to rfc-822. (Martin Pool)
 
182
 
 
183
    * Rename selftests to `bzrlib.tests.test_foo`.  (John A Meinel, Martin 
 
184
      Pool)
 
185
   
117
186
bzr 0.6 2005-10-28
118
187
 
119
188
  IMPROVEMENTS: