~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Andrew Bennetts
  • Date: 2010-01-18 07:00:11 UTC
  • mto: (4973.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4975.
  • Revision ID: andrew.bennetts@canonical.com-20100118070011-zu374wvd0lcgai5a
Move news_merge plugin from contrib to bzrlib/plugins, change it to be enabled via a 'news_merge_files' config option, move more code out of the __init__ to minimise overhead, and add lots of docstrings, add NEWS entry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
* Add bug information to log output when available.
21
21
  (Neil Martinsen-Burrell, Guillermo Gonzalez, #251729)
22
22
 
 
23
* Added ``merge_file_content`` hook point to ``Merger``, allowing plugins
 
24
  to register custom merge logic, e.g. to provide smarter merging for
 
25
  particular files.
 
26
 
 
27
* Bazaar now includes the ``news_merge`` plugin.  It is disabled by
 
28
  default, to enable it add a ``news_merge_files`` option to your
 
29
  configuration.  Consult ``bzr help news_merge`` for more information.
 
30
  (Andrew Bennetts)
 
31
  
23
32
* ``bzr branch`` now takes a ``--bind`` option. This lets you
24
33
  branch and bind all in one command. (Ian Clatworthy)
25
34
 
149
158
  CamelCase. For the features that were more likely to be used, we added a
150
159
  deprecation thunk, but not all. (John Arbash Meinel)
151
160
 
 
161
* Merger classes (such as ``Merge3Merger``) now expect a ``this_branch``
 
162
  parameter in their constructora, and provide ``this_branch`` as an
 
163
  attribute. (Andrew Bennetts)
 
164
  
152
165
* The Branch hooks pre_change_branch_tip no longer masks exceptions raised
153
166
  by plugins - the original exceptions are now preserved. (Robert Collins)
154
167