~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Vincent Ladeuil
  • Date: 2010-04-12 16:54:35 UTC
  • mto: (5148.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5151.
  • Revision ID: v.ladeuil+lp@free.fr-20100412165435-gzdnwuybj9rvddiz
Fix bug #519319 by defaulting to a warning for dirty trees.

* bzrlib/mutabletree.py:
(MutableTree.warn_if_changed_or_out_of_date): Factor out the
checks done by send, push and dpush.

* bzrlib/send.py:
(send): Use warn_if_changed_or_out_of_date().

* bzrlib/foreign.py:
(cmd_dpush.run): Use warn_if_changed_or_out_of_date().

* bzrlib/builtins.py:
(cmd_push.run): Use warn_if_changed_or_out_of_date().

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
Bug Fixes
23
23
*********
24
24
 
 
25
* ``bzr dpush``, ``bzr push`` and ``bzr send`` will now issue a warning
 
26
  instead of failing when dirty trees are involved. The corresponding
 
27
  ``dpush_strict``, ``push_strict`` and ``send_strict`` should be set to
 
28
  True explicitely to get the previous behaviour.  
 
29
  (Vincent Ladeuil, #519319)
 
30
 
25
31
* ``bzrlib.mutabletree.MutableTree.commit`` will now support a passed in
26
32
  config as in previous versions of bzrlib. (Robert Collins)
27
33