~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.5.txt

  • Committer: Patch Queue Manager
  • Date: 2012-01-05 10:39:49 UTC
  • mfrom: (6404.5.9 store-save-changes)
  • Revision ID: pqm@pqm.ubuntu.com-20120105103949-xxe5dkbfiu16q4ch
(vila) Provide Store.save_changes() to allow configuration store to be saved
 incrementally. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
* Configuration options can be SI units by using ``int_SI_from_unicode`` as
143
143
  their ``convert_from_unicode`` helper. (Vincent Ladeuil)
144
144
 
 
145
* Configuration stores can now save incremental changes by using
 
146
  ``save_changes()`` instead of ``save()``. This reduces the number or
 
147
  required input/outputs and allows stores to be shared between
 
148
  stacks. (Vincent Ladeuil)
 
149
 
145
150
* ControlDir now has a get_branches method that returns a dictionary
146
151
  whose keys are the names of the branches and whose values are the
147
152
  branches themselves. The active branch uses the key None.