~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-22 18:09:04 UTC
  • mfrom: (2485.8.63 bzr.connection.sharing)
  • Revision ID: pqm@pqm.ubuntu.com-20070722180904-wy7y7oyi32wbghgf
Transport connection sharing

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
  BUGFIXES:
4
4
 
 
5
    * ``bzr init`` should connect to the remote location one time only.  We
 
6
      have been connecting several times because we forget to pass around the
 
7
      Transport object. This modifies ``BzrDir.create_branch_convenience``,
 
8
      so that we can give it the Transport we already have.
 
9
      (John Arbash Meinel, Vincent Ladeuil, #111702)
 
10
 
 
11
    * Get rid of sftp connection cache (get rid of the FTP one too).
 
12
      (Vincent Ladeuil, #43731)
 
13
 
 
14
    * bzr branch {local|remote} remote don't try to create a working tree
 
15
      anymore.
 
16
      (Vincent Ladeuil, #112173)
 
17
 
 
18
    * All identified multiple connections for a single bzr command have been
 
19
      fixed. See bzrlib/tests/commands directory.
 
20
      (Vincent Ladeuil)
 
21
 
5
22
    * ``bzr rm`` now does not insist on ``--force`` to delete files that
6
23
      have been renamed but not otherwise modified.  (Marius Kruger,
7
24
      #111664)
68
85
      operations that perform comparisons, and reduces reliance on
69
86
      Tree.inventory.  (Aaron Bentley)
70
87
 
 
88
    * Refactoring of transport classes connected to a remote server.
 
89
      ConnectedTransport is a new class that serves as a basis for all
 
90
      transports needing to connect to a remote server.  transport.split_url
 
91
      have been deprecated, use the static method on the object instead. URL
 
92
      tests have been refactored too.
 
93
      (Vincent Ladeuil)
 
94
 
 
95
    * Better connection sharing for ConnectedTransport objects.
 
96
      transport.get_transport() now accepts a 'possible_transports' parameter.
 
97
      If a newly requested transport can share a connection with one of the
 
98
      list, it will.
 
99
      (Vincent Ladeuil)
 
100
 
71
101
    * Most functions now accept ``bzrlib.revision.NULL_REVISION`` to indicate
72
102
      the null revision, and consider using ``None`` for this purpose
73
103
      deprecated.  (Aaron Bentley)