~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge from mbp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
      points to C:\Documents and Settings\User Name\Application Data), HOME.
20
20
      (John Arbash Meinel)
21
21
 
 
22
    * Plugins with the same name in different directories in the bzr plugin
 
23
      path are no longer loaded: only the first successfully loaded one is
 
24
      used. (Robert Collins)
 
25
 
22
26
    * Use systems' external ssh command to open connections if possible.  
23
27
      This gives better integration with user settings such as ProxyCommand.
24
28
      (James Henstridge)
25
29
 
26
 
    * Sftp paths can now be relative, or local, according to the IETF draft spec.
27
 
      Paths now take the form:
 
30
    * Sftp paths can now be relative, or local, according to the IETF 
 
31
      draft spec.  Paths now take the form:
28
32
      sftp://user:pass@host:port/relative/path
29
33
      or
30
34
      sftp://user:pass@host:port/%2Fabsolute/path
31
35
      or
32
36
      sftp://user:pass@host:port//absolute/path
33
37
 
 
38
    * configure.in and config.guess are no longer in the builtin default 
 
39
      ignore list.
 
40
 
34
41
  IMPROVEMENTS:
35
42
 
36
43
    * "bzr INIT dir" now initializes the specified directory, and creates 
76
83
      a connection will be reused, rather than requiring multiple password
77
84
      requests.
78
85
 
 
86
    * bzr revno now takes an optional argument indicating the branch whose
 
87
      revno should be printed.  (Michael Ellerman)
 
88
 
 
89
    * bzr cat defaults to printing the last version of the file.  
 
90
      (#3632, Matthieu Moy)
 
91
 
 
92
    * New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof 
 
93
      profiler.  (Denys Duchier)
 
94
 
 
95
    * Faster commits by reading only the headers of affected weave files. 
 
96
      (Denys Duchier)
 
97
 
 
98
    * 'bzr add' now takes a --dry-run parameter which shows you what would be
 
99
      added, but doesn't actually add anything. (Michael Ellerman)
 
100
 
 
101
    * bzr add now lists how many files were ignored per glob.  add --verbose
 
102
      lists the specific files.  (Aaron Bentley)
 
103
 
79
104
  BUG FIXES:
80
105
 
81
106
    * SFTP can walk up to the root path without index errors. (Robert Collins)
150
175
    * Much better error message if one of the test suites can't be 
151
176
      imported.  (Martin Pool)
152
177
 
 
178
    * Make check now runs the test suite twice - once with the default locale,
 
179
      and once with all locales forced to C, to expose bugs. This is not 
 
180
      trivially done within python, so for now its only triggered by running
 
181
      Make check. Integrators and packagers who wish to check for full 
 
182
      platform support should run 'make check' to test the source.
 
183
      (Robert Collins)
 
184
 
 
185
    * Tests can now run TestSkipped if they can't execute for any reason.
 
186
      (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
187
      reasons - see the wiki spec ImprovingBzrTestSuite).
 
188
 
153
189
  INTERNALS:
154
190
 
155
191
    * WorkingTree.pull has been split across Branch and WorkingTree,
200
236
 
201
237
    * Rename selftests to `bzrlib.tests.test_foo`.  (John A Meinel, Martin 
202
238
      Pool)
 
239
 
 
240
    * bzrlib.plugin.all_plugins has been changed from an attribute to a 
 
241
      query method. (Robert Collins)
 
242
 
 
243
    * New options to read only the table-of-contents of a weave.  
 
244
      (Denys Duchier)
 
245
 
 
246
    * Raise NoSuchFile when someone tries to add a non-existant file.
 
247
      (Michael Ellerman)
 
248
 
 
249
    * Simplify handling of DivergedBranches in cmd_pull().
 
250
      (Michael Ellerman)
 
251
                   
203
252
   
204
253
bzr 0.6 2005-10-28
205
254