~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Andrew Bennetts
  • Date: 2010-01-12 02:48:41 UTC
  • mfrom: (4948 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4965.
  • Revision ID: andrew.bennetts@canonical.com-20100112024841-vbudg5ayivfzcwok
Merge lp:bzr, resolving NEWS conflict.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
  returns ``EINTR`` by calling ``PyErr_CheckSignals``.  This affected the
62
62
  optional ``_readdir_pyx`` extension.  (Andrew Bennetts, #495023)
63
63
 
 
64
* Fixed a side effect mutation of ``RemoteBzrDirFormat._network_name``
 
65
  that caused some tests to fail when run in a non-default order.
 
66
  Probably no user impact.  (Martin Pool, #504102)
 
67
 
64
68
* FTP transports support Unicode paths by encoding/decoding them as utf8.
65
69
  (Vincent Ladeuil, #472161)
66
70
 
83
87
Improvements
84
88
************
85
89
 
 
90
* Added ``add_cleanup`` and ``cleanup_now`` to ``bzrlib.command.Command``.
 
91
  All the builtin commands now use ``add_cleanup`` rather than
 
92
  ``try``/``finally`` blocks where applicable as it is simpler and more
 
93
  robust.  (Andrew Bennetts)
 
94
 
86
95
* Attempts to open a shared repository as a branch (e.g. ``bzr branch
87
96
  path/to/repo``) will now include "location is a repository" as a hint in
88
97
  the error message.  (Brian de Alwis, Andrew Bennetts, #440952)
103
112
 
104
113
* There is a System Administrator's Guide in ``doc/en/admin-guide``,
105
114
  including discussions of installation, relevant plugins, security and 
106
 
  backup.
 
115
  backup. (Neil Martinsen-Burrell)
 
116
 
 
117
* The ``conflicts`` help topic has been renamed to ``conflict-types``.
 
118
  (Ian Clatworthy)
 
119
 
 
120
* The User Reference is now presented as a series of topics.
 
121
  Many of the included topics have link and format tweaks applied.
 
122
  (Ian Clatworthy)
107
123
 
108
124
API Changes
109
125
***********
113
129
  CamelCase. For the features that were more likely to be used, we added a
114
130
  deprecation thunk, but not all. (John Arbash Meinel)
115
131
 
 
132
* The Branch hooks pre_change_branch_tip no longer masks exceptions raised
 
133
  by plugins - the original exceptions are now preserved. (Robert Collins)
 
134
 
116
135
* The Transport ``Server.tearDown`` method is now renamed to
117
136
  ``stop_server`` and ``setUp`` to ``start_server`` for consistency with
118
137
  our normal naming pattern, and to avoid confusion with Python's