~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-03-15 21:00:35 UTC
  • mfrom: (3228.4.15 revision_graph)
  • Revision ID: pqm@pqm.ubuntu.com-20080315210035-5qwda8bre2nwsra3
(jam) Update PackRepo.get_revision_graph() to efficiently handle
        ghosts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
      case of running ``bzr missing`` command for two identical branches.
61
61
      (Alexander Belchenko)
62
62
 
 
63
    * Speed up operations that look at the revision graph (such as 'bzr log').
 
64
      ``KnitPackRepositor.get_revision_graph`` uses ``Graph.iter_ancestry`` to
 
65
      extract the revision history. This allows filtering ghosts while
 
66
      stepping instead of needing to peek ahead. (John Arbash Meinel)
 
67
 
63
68
    * The ``hooks`` command lists installed hooks, to assist in debugging.
64
69
      (Daniel Watkins)
65
70
 
133
138
      hundreds of MB of ram consumption.
134
139
      (Ian Clatworthy, John Arbash Meinel)
135
140
 
 
141
    * ``Graph.iter_ancestry`` returns the ancestry of revision ids. Similar to
 
142
      ``Repository.get_revision_graph()`` except it includes ghosts and you can
 
143
      stop part-way through. (John Arbash Meinel)
 
144
 
136
145
    * New module ``tools/package_mf.py`` provide custom module finder for
137
146
      python packages (improves standard python library's modulefinder.py)
138
147
      used by ``setup.py`` script while building standalone bzr.exe.
148
157
      falling back to other repositories when they have partial data.
149
158
      (Robert Collins)
150
159
 
 
160
    * ``Repository.get_revision_graph_with_ghosts`` and
 
161
      ``bzrlib.revision.(common_ancestor,MultipleRevisionSources,common_graph)``
 
162
      have been deprecated.  (John Arbash Meinel)
 
163
 
151
164
    * ``Tree.iter_changes`` is now a public API, replacing the work-in-progress
152
165
      ``Tree._iter_changes``. The api is now considered stable and ready for
153
166
      external users.  (Aaron Bentley)