~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-17 21:19:56 UTC
  • mfrom: (1997.1.6 bind-does-not-push-or-pull)
  • Revision ID: pqm@pqm.ubuntu.com-20060917211956-6e30d07da410fd1a
(Robert Collins) Change the Branch bind method to just bind rather than binding and pushing (fixes #43744 and #39542)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
    * Commit performs one less XML parse. (Robert Collins)
18
18
 
19
 
    * ``bzr checkout --lightweight`` now operates on readonly branches as well
20
 
      as readwrite branches. This fixes bug #39542 for lightweight checkouts 
21
 
      but not for heavyweight ones (the default). (Robert Collins)
 
19
    * ``bzr checkout`` now operates on readonly branches as well
 
20
      as readwrite branches. This fixes bug #39542. (Robert Collins)
 
21
 
 
22
    * ``bzr bind`` no longer synchronises history with the master branch.
 
23
      Binding should be followed by an update or push to synchronise the 
 
24
      two branches. This is closely related to the fix for bug #39542.
 
25
      (Robert Collins)
22
26
 
23
27
    * ``bzrlib.lazy_import.lazy_import`` function to create on-demand 
24
28
      objects.  This allows all imports to stay at the global scope, but
60
64
    * Fallback to Paramiko properly, if no ``ssh`` executable exists on
61
65
      the system. (Andrew Bennetts, John Arbash Meinel)
62
66
 
 
67
    * ``Branch.bind(other_branch)`` no longer takes a write lock on the
 
68
      other branch, and will not push or pull between the two branches.
 
69
      API users will need to perform a push or pull or update operation if they
 
70
      require branch synchronisation to take place. (Robert Collins, #47344)
 
71
 
63
72
  INTERNALS:
64
73
 
65
74
    * TestCaseInTempDir now creates a separate directory for HOME, rather