~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

merge permissions branch, also fixup tests so they are lined up with bzr.dev to help prevent conflicts.

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 
92
99
    * Faster commits by reading only the headers of affected weave files. 
93
100
      (Denys Duchier)
94
101
 
95
 
    * New --dry-run option for add.  (Michael Ellerman)
 
102
    * 'bzr add' now takes a --dry-run parameter which shows you what would be
 
103
      added, but doesn't actually add anything. (Michael Ellerman)
 
104
 
 
105
    * bzr add now lists how many files were ignored per glob.  add --verbose
 
106
      lists the specific files.  (Aaron Bentley)
96
107
 
97
108
  BUG FIXES:
98
109
 
168
179
    * Much better error message if one of the test suites can't be 
169
180
      imported.  (Martin Pool)
170
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
 
171
189
    * Tests can now run TestSkipped if they can't execute for any reason.
172
 
      (Martin Pool)
 
190
      (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
191
      reasons - see the wiki spec ImprovingBzrTestSuite).
173
192
 
174
193
  INTERNALS:
175
194
 
227
246
 
228
247
    * New options to read only the table-of-contents of a weave.  
229
248
      (Denys Duchier)
 
249
 
 
250
    * Raise NoSuchFile when someone tries to add a non-existant file.
 
251
      (Michael Ellerman)
 
252
 
 
253
    * Simplify handling of DivergedBranches in cmd_pull().
 
254
      (Michael Ellerman)
 
255
                   
230
256
   
231
257
bzr 0.6 2005-10-28
232
258