~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Vincent Ladeuil
  • Date: 2007-02-25 18:33:36 UTC
  • mto: (2323.7.1 redirection)
  • mto: This revision was merged to the branch mainline in revision 2390.
  • Revision ID: v.ladeuil+lp@free.fr-20070225183336-ifty38ijssbqkcli
Take bundles into account.

* bzrlib/transport/__init__.py:
(do_catching_redirections): Factored out from
BzrDir.open_from_transport.

* bzrlib/bzrdir.py:
(BzrDir.open_from_transport): Simplified.

* bzrlib/bundle/__init__.py:
(read_bundle_from_url): Follow redirections if needed.

Revert BzrDirFormat1 registering.

* bzrlib/bzrdir.py: 
Register BzrDirFormat as control format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    * ``bzr help global-options`` describes the global options.
23
23
      (Aaron Bentley)
24
24
 
25
 
    * HTTP redirections are now taken into account when a branch is accessed
26
 
      for the first time. A message is issued at each redirection to inform
27
 
      the user. In the past, http redirections were silently followed for
28
 
      each request which signifanctly degrade performances. The http
29
 
      redirections are not followed anymore by default.
30
 
      (Vincent Ladeuil)
 
25
    * HTTP redirections are now taken into account when a branch (or a
 
26
      bundle) is accessed for the first time. A message is issued at each
 
27
      redirection to inform the user. In the past, http redirections were
 
28
      silently followed for each request which signifanctly degrade
 
29
      performances. The http redirections are not followed anymore by
 
30
      default.  (Vincent Ladeuil)
31
31
 
32
32
    * ``bzr pull --overwrite`` will now correctly overwrite checkouts.
33
33
      (Robert Collins)