~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-03-26 05:25:32 UTC
  • mfrom: (5011.3.16 no_until_no_eintr)
  • Revision ID: pqm@pqm.ubuntu.com-20100326052532-9c9bbs1f7hmfr1j4
(andrew) Either correctly handle EINTR or don't handle it at all.
        (#496813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
* Added docstring for ``Tree.iter_changes``
87
87
  (John Arbash Meinel, #304182)
88
88
 
 
89
* Allow additional arguments to
 
90
  ``RemoteRepository.add_inventory_by_delta()``. (Jelmer Vernooij, #532631)
 
91
 
89
92
* Allow exporting a single file using ``bzr export``.
90
93
  (Michal Junák, #511987)
91
94
 
144
147
* Fix stub sftp test server to call os.getcwdu().
145
148
  (Vincent Ladeuil, #526211, #526353)
146
149
 
 
150
* Many IO operations that returned ``EINTR`` were retried even if it
 
151
  wasn't safe to do so via careless use of ``until_no_eintr``.  Bazaar now
 
152
  only retries operations that are safe to retry, and in some cases has
 
153
  switched to operations that can be retried (e.g. ``sock.send`` rather than
 
154
  ``sock.sendall``).
 
155
  (Andrew Bennetts, Martin <gzlist@googlemail.com>, #496813)
 
156
 
147
157
* Path conflicts now support --take-this and --take-other even when a
148
158
  deletion is involved.
149
159
  (Vincent Ladeuil, #531967)
163
173
  the debugger won't kill the session.
164
174
  (Martin <gzlist@googlemail.com>, #162502)
165
175
 
166
 
* Allow additional arguments to
167
 
  ``RemoteRepository.add_inventory_by_delta()``. (Jelmer Vernooij, #532631)
168
 
 
169
176
* Tolerate patches with leading noise in ``bzr-handle-patch``.
170
177
  (Toshio Kuratomi, Martin Pool, #502076)
171
178