~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

MergeĀ rename-SmartTransportĀ branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    * Move most SmartServer code into a new package, bzrlib/smart.
41
41
      bzrlib/transport/remote.py contains just the Transport classes that used
42
42
      to be in bzrlib/transport/smart.py.  (Andrew Bennetts)
 
43
 
 
44
    * Renamed SmartTransport (and subclasses like SmartTCPTransport) to
 
45
      RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
 
46
      consistent with its new home in bzrlib/transport/remote.py, and because
 
47
      it's not really a "smart" transport, just one that does file operations
 
48
      via remote procedure calls.  (Andrew Bennetts)
43
49
 
44
50
    * The Repository API ``make_working_trees`` is now permitted to return
45
51
      False when ``set_make_working_trees`` is not implemented - previously
73
79
      (with an ancestry of 16k revisions, ``bzr merge ../already-merged``
74
80
      changes from 2m10s to 13s).  (John Arbash Meinel, #103757)
75
81
 
 
82
    * Fix ``show_diff_trees`` to handle the case when a file is modified,
 
83
      and the containing directory is renamed. (The file path is different
 
84
      in this versus base, but it isn't marked as a rename).
 
85
      (John Arbash Meinel, #103870)
 
86
 
76
87
  TESTING:
77
88
 
78
89
    * Added ``bzrlib.strace.strace`` which will strace a single callable and