~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge Aarons integration branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
      This gives better integration with user settings such as ProxyCommand.
28
28
      (James Henstridge)
29
29
 
30
 
    * Sftp paths can now be relative, or local, according to the IETF draft spec.
31
 
      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:
32
32
      sftp://user:pass@host:port/relative/path
33
33
      or
34
34
      sftp://user:pass@host:port/%2Fabsolute/path
35
35
      or
36
36
      sftp://user:pass@host:port//absolute/path
37
37
 
 
38
    * Permissions on files underneath .bzr/ are inherited from the .bzr 
 
39
      directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
 
40
      will mean that future file will be created with group write permissions.
 
41
 
 
42
    * configure.in and config.guess are no longer in the builtin default 
 
43
      ignore list.
 
44
 
38
45
  IMPROVEMENTS:
39
46
 
40
47
    * "bzr INIT dir" now initializes the specified directory, and creates 
172
179
    * Much better error message if one of the test suites can't be 
173
180
      imported.  (Martin Pool)
174
181
 
 
182
    * Make check now runs the test suite twice - once with the default locale,
 
183
      and once with all locales forced to C, to expose bugs. This is not 
 
184
      trivially done within python, so for now its only triggered by running
 
185
      Make check. Integrators and packagers who wish to check for full 
 
186
      platform support should run 'make check' to test the source.
 
187
      (Robert Collins)
 
188
 
175
189
    * Tests can now run TestSkipped if they can't execute for any reason.
176
 
      (Martin Pool)
 
190
      (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
191
      reasons - see the wiki spec ImprovingBzrTestSuite).
177
192
 
178
193
  INTERNALS:
179
194