~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Vincent Ladeuil
  • Date: 2010-02-08 16:36:13 UTC
  • mto: (5029.2.1 integration2)
  • mto: This revision was merged to the branch mainline in revision 5031.
  • Revision ID: v.ladeuil+lp@free.fr-20100208163613-9sgl3ugvdxapwgw8
``bzr add`` won't blindly add conflict related files.

* bzrlib/tests/per_workingtree/test_smart_add.py:
(TestSmartAddConflictRelatedFiles): Make sure we don't add blindly
but that we can add on demand.

* bzrlib/mutabletree.py:
(MutableTree.smart_add): Check that we don't, implicitly, add a
file generated to help resolve a conflict.

* bzrlib/conflicts.py:
(Conflict.associated_filenames): New helper.
(Conflict.cleanup): Use the helper to reduce duplication.
(PathConflict, ContentsConflict, TextConflict, HandledConflict):
Define associated_filenames instead of cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
* Avoid infinite recursion when probing for apport.
37
37
  (Vincent Ladeuil, #516934)
38
38
 
 
39
* ``bzr add`` will not add conflict related files unless explicitly required.
 
40
  (Vincent Ladeuil, #322767)
 
41
 
39
42
Testing
40
43
*******
41
44