~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-06 19:35:39 UTC
  • mfrom: (4086.1.4 hpss-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090306193539-h0q6dlyayhgcehta
(robertc, andrew) Add Branch.get_tags_dict RPC;
        Add optional 'fetch_spec' argument to Repository.fetch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
 
150
150
    * Remove deprecated EmptyTree.  (Martin Pool)
151
151
 
 
152
    * ``Repository.fetch`` now accepts an optional ``fetch_spec``
 
153
      parameter.  A ``SearchResult`` or ``MiniSearchResult`` may be passed
 
154
      to ``fetch_spec`` instead of a ``last_revision`` to specify exactly
 
155
      which revisions to fetch. (Andrew Bennetts)
 
156
 
 
157
    * ``RepositoryAcquisitionPolicy.acquire_repository`` now returns a
 
158
      tuple of ``(repository, is_new_flag)``, rather than just the
 
159
      repository.  (Andrew Bennetts)
 
160
 
152
161
    * Revision.get_apparent_author() is now deprecated, replaced by
153
162
      Revision.get_apparent_authors(), which returns a list. The former
154
163
      now returns the first item that would be returned from the second.
163
172
 
164
173
  INTERNALS:
165
174
 
 
175
    * Branching from a non-stacked branch on a smart protocol is now
 
176
      free of virtual file system methods.
 
177
      (Robert Collins, Andrew Bennetts)
 
178
 
166
179
    * Branch and Repository creation on a bzr+ssh://server are now done
167
180
      via RPC calls rather than VFS calls, reducing round trips for
168
181
      pushing new branches substantially. (Robert Collins)