~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge lockable-config-files into remove-gratuitous-ensure-config-dir-exist-calls resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
API Changes
146
146
***********
147
147
 
148
 
* Configuration files should now use the ``from_bytes`` constructor the
 
148
* Configuration files should now use the ``from_string`` constructor the
149
149
  rather than the ``file`` parameter of the ``_get_parser`` method. The
150
 
  later has been deprecated. ``from_bytes`` also accept a ``save=True``
 
150
  later has been deprecated. ``from_string`` also accept a ``save=True``
151
151
  parameter to have the configuration file immediately written to
152
152
  disk. (Vincent Ladeuil)
153
153
 
 
154
* ``IniBaseConfig`` objects should now use the ``from_string`` constructor
 
155
  the rather than the ``file`` parameter of the ``_get_parser`` method. The
 
156
  later has been deprecated. (Vincent Ladeuil)
 
157
 
154
158
* InventoryEntry instances now raise AttributeError if you try to assign
155
159
  to attributes that are irrelevant to that kind of entry.  e.g. setting
156
160
  ``symlink_target`` on an InventoryFile will fail.  It is still okay to
163
167
* InventoryEntry objects no longer have ``_put_in_tar`` or
164
168
  ``_put_on_disk`` methods.  (Andrew Bennetts)
165
169
 
166
 
* The ``configIniBaseConfig`` constructor now accepts a ``_content``
167
 
  private parameter for tests that want to provide a config file content.
168
 
  (Vincent Ladeuil)
169
 
 
170
170
* The ``get_filename`` parameter in the ``config.IniBaseConfig``
171
171
  constructor has been deprecated, use the ``file_name`` parameter instead.
172
172
  (Vincent Ladeuil)