~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS.developers

  • Committer: Robert Collins
  • Date: 2005-10-18 12:53:07 UTC
  • mfrom: (1442.1.70)
  • Revision ID: robertc@robertcollins.net-20051018125307-730e47c1a034cb6f
Merge in various improvements to pull, testing and configuration.

* 'bzr pull' now accepts '--clobber' which will discard local changes
  and make this branch identical to the source branch. (Robert Collins)

* There is a new method for TestCaseInTempDir, assertFileEqual, which
  will check that a given content is equal to the content of the named
  file. (Robert Collins)

* 'pull' has been factored out of the command as WorkingTree.pull().
  A new option to WorkingTree.pull has been added, clobber, which will
  ignore diverged history and pull anyway.
  (Robert Collins)

* config.Config has a 'get_user_option' call that accepts an option name.
  This will be looked up in branches.conf and bazaar.conf as normal.
  It is intended that this be used by plugins to support options -
  options of built in programs should have specific methods on the config.
  (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DEVELOPMENT HEAD
 
2
 
 
3
 * Properties can be set on Revisions by passing 'revprops=' to
 
4
   Branch.commit(), and retrieved by looking at Revision.properties.
 
5
 
 
6
bzr 0.1
 
7
 
 
8
 * Remove RevisionReference class; Revision.parent_ids is now simply a
 
9
   list of their ids and parent_sha1s is a list of their corresponding
 
10
   sha1s (for old branches only at the moment.)
 
11
 
 
12
 * New method-object style interface for Commit() and Fetch().
 
13
 
 
14
 * Renamed Branch.last_patch() to Branch.last_revision(), since
 
15
   we call them revisions not patches.
 
16
 
 
17
 * Move copy_branch to bzrlib.clone.copy_branch.  The destination
 
18
   directory is created if it doesn't exist.
 
19
 
 
20
 * Inventories now identify the files which were present by 
 
21
   giving the revision *of that file*.
 
22
 
 
23
 * Inventory and Revision XML contains a version identifier.  
 
24
   This must be consistent with the overall branch version
 
25
   but allows for more flexibility in future upgrades.