~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-12-14 23:32:17 UTC
  • mfrom: (4889.2.6 2.1-Dhpss-server)
  • Revision ID: pqm@pqm.ubuntu.com-20091214233217-rwmfxbxwvgj292k0
(jam) -Dhpss now triggers extra logging on the server side.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
* ``bzr commit`` now has a ``--commit-time`` option.
27
27
  (Alexander Sack, #459276)
28
28
 
 
29
* ``-Dhpss`` now increases logging done when run on the bzr server,
 
30
  similarly to how it works on the client. (John Arbash Meinel)
 
31
 
29
32
* New option ``bzr unshelve --keep`` applies the changes and leaves them
30
33
  on the shelf.  (Martin Pool, Oscar Fuentes, #492091)
31
34
 
140
143
  imported. (Rather than lots of custom-implemented features that were
141
144
  basically copy-and-pasted.) (John Arbash Meinel)
142
145
 
 
146
* ``osutils.timer_func()`` can be used to get either ``time.time()`` or
 
147
  ``time.clock()`` when you want to do performance timing.
 
148
  ``time.time()`` is limited to 15ms resolution on Windows, but
 
149
  ``time.clock()`` gives CPU and not wall-clock time on other platforms.
 
150
  (John Arbash Meinel)
 
151
 
143
152
* Several code paths that were calling ``Transport.get().read()`` have
144
153
  been changed to the equalivent ``Transport.get_bytes()``. The main
145
154
  difference is that the latter will explicitly call ``file.close()``,