~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Zearin
  • Date: 2010-11-12 22:43:38 UTC
  • mto: (5570.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5572.
  • Revision ID: zearin@users.sourceforge.net-20101112224338-x4dzw5gafju8txn5
Continued capitalization fixes.  (URL, URLs)

Show diffs side-by-side

added added

removed removed

Lines of Context:
172
172
* digest authentication is now supported for proxies and HTTP by the urllib
173
173
  based HTTP implementation. Tested against Apache 2.0.55 and Squid
174
174
  2.6.5. Basic and digest authentication are handled coherently for HTTP
175
 
  and proxy: if the user is provided in the url (bzr command line for HTTP,
 
175
  and proxy: if the user is provided in the URL (bzr command line for HTTP,
176
176
  proxy environment variables for proxies), the password is prompted for
177
177
  (only once). If the password is provided, it is taken into account. Once
178
178
  the first authentication is successful, all further authentication
186
186
* bzrlib API compatability with 0.8 has been dropped, cleaning up some
187
187
  code paths. (Robert Collins)
188
188
 
189
 
* Change the format of chroot urls so that they can be safely manipulated
190
 
  by generic url utilities without causing the resulting urls to have
 
189
* Change the format of chroot URLS so that they can be safely manipulated
 
190
  by generic URL utilities without causing the resulting URLs to have
191
191
  escaped the chroot. A side effect of this is that creating a chroot
192
192
  requires an explicit action using a ChrootServer.
193
193
  (Robert Collins, Andrew Bennetts)
358
358
  lightweight checkout for the tree if the ``vfs_transport_factory`` is not
359
359
  a LocalURLServer. (Robert Collins, Andrew Bennetts)
360
360
 
361
 
* Branch implementation tests have been audited to ensure that all urls
362
 
  passed to Branch APIs use proper urls, except when local-disk paths
 
361
* Branch implementation tests have been audited to ensure that all URLs
 
362
  passed to Branch APIs use proper URLs, except when local-disk paths
363
363
  are intended. This is so that tests correctly access the test transport
364
364
  which is often not equivalent to local disk in Remote* tests. As part
365
365
  of this many tests were adjusted to remove dependencies on local disk