~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-1.0.txt

  • Committer: Andrew Bennetts
  • Date: 2010-10-13 00:43:19 UTC
  • mfrom: (5489 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5498.
  • Revision ID: andrew.bennetts@canonical.com-20101013004319-du5k13gbilk21ift
MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
* Fix Makefile rules for doc generation. (Ian Clatworthy, #175207)
45
45
 
46
 
* Give more feedback during long HTTP downloads by making readv deliver data
 
46
* Give more feedback during long http downloads by making readv deliver data
47
47
  as it arrives for urllib, and issue more requests for pycurl. High latency
48
48
  networks are better handled by urllib, the pycurl implementation give more
49
49
  feedback but also incur more latency.
63
63
Internals
64
64
*********
65
65
 
66
 
* readv urllib HTTP implementation is now a real iterator above the
 
66
* readv urllib http implementation is now a real iterator above the
67
67
  underlying socket and deliver data as soon as it arrives. 'get' still
68
68
  wraps its output in a StringIO.
69
69
  (Vincent Ladeuil)
113
113
Internals
114
114
*********
115
115
 
116
 
* New -Dhttp debug option reports HTTP connections, requests and responses.
 
116
* New -Dhttp debug option reports http connections, requests and responses.
117
117
  (Vincent Ladeuil)
118
118
 
119
119
* New -Dmerge debug option, which emits merge plans for merge-type=weave.
182
182
Changes
183
183
*******
184
184
 
185
 
* Disable detection of plink.exe as possible SSH vendor. Plink vendor
 
185
* Disable detection of plink.exe as possible ssh vendor. Plink vendor
186
186
  still available if user selects it explicitly with BZR_SSH environment
187
187
  variable. (Alexander Belchenko, workaround for bug #107593)
188
188
 
194
194
********
195
195
 
196
196
* New ``authentication.conf`` file holding the password or other credentials
197
 
  for remote servers. This can be used for SSH, SFTP, SMTP and other
 
197
  for remote servers. This can be used for ssh, sftp, smtp and other
198
198
  supported transports.
199
199
  (Vincent Ladeuil)
200
200
 
274
274
* ``commit`` is now able to invoke an external editor in a non-ascii
275
275
  directory. (Daniel Watkins, #84043)
276
276
 
277
 
* Catch connection errors for FTP.
 
277
* Catch connection errors for ftp.
278
278
  (Vincent Ladeuil, #164567)
279
279
 
280
280
* ``check`` no longer reports spurious unreferenced text versions.
292
292
* Do no use timeout in HttpServer anymore.
293
293
  (Vincent Ladeuil, #158972).
294
294
 
295
 
* Don't catch the exceptions related to the HTTP pipeline status before
296
 
  retrying an HTTP request or some programming errors may be masked.
 
295
* Don't catch the exceptions related to the http pipeline status before
 
296
  retrying an http request or some programming errors may be masked.
297
297
  (Vincent Ladeuil, #160012)
298
298
 
299
299
* Fix ``bzr rm`` to not delete modified and ignored files.
315
315
  on them.
316
316
  (Martin Pool, #164637)
317
317
 
318
 
* Fix typo in limiting offsets coalescing for HTTP, leading to
 
318
* Fix typo in limiting offsets coalescing for http, leading to
319
319
  whole files being downloaded instead of parts.
320
320
  (Vincent Ladeuil, #165061)
321
321
 
330
330
  suggestion for an acceptable name is given. (Daniel Watkins, #103023)
331
331
 
332
332
* Leave port as None in transport objects if user doesn't
333
 
  specify a port in URLs.
 
333
  specify a port in urls.
334
334
  (vincent Ladeuil, #150860)
335
335
 
336
336
* Make sure Repository.fetch(self) is properly a no-op for all
388
388
* Upgrade util/configobj to version 4.4.0.
389
389
  (Vincent Ladeuil, #151208).
390
390
 
391
 
* Wrap medusa FTP test server as an FTPServer feature.
 
391
* Wrap medusa ftp test server as an FTPServer feature.
392
392
  (Vincent Ladeuil, #157752)
393
393
 
394
394
API Breaks