~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-07-04 03:56:20 UTC
  • mfrom: (3519.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080704035620-zy61drff8onhjxno
Fix check to understand split up .bzr format (Daniel Mark Watkins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
  BUGFIXES:
39
39
 
 
40
    * ``check`` handles the split-up .bzr layout correctly, so no longer
 
41
      requires a branch to be present.
 
42
      (Daniel Watkins, #64783)
 
43
 
40
44
    * Clearer message about how to set the PYTHONPATH if bzrlib can't be
41
45
      loaded. 
42
46
      (Martin Pool, #205230)
96
100
      parameter.  If you have a subclass of ``Branch`` that overrides
97
101
      ``pull`` then you should add this parameter.  (Andrew Bennetts)
98
102
 
 
103
    * ``bzrlib.check.check()`` has been deprecated in favour of the more
 
104
      aptly-named ``bzrlib.check.check_branch()``.
 
105
      (Daniel Watkins)
 
106
 
99
107
    * ``Tree.print_file`` and ``Repository.print_file`` are deprecated.
100
108
      These methods are bad APIs because they write directly to sys.stdout.
101
109
      bzrlib does not use them internally, and there are no direct tests
106
114
    * ``cat`` command no longer uses ``Tree.print_file()`` internally.
107
115
      (Alexander Belchenko)
108
116
 
 
117
    * New class method ``BzrDir.open_containing_tree_branch_or_repository``
 
118
      which eases the discovery of the tree, the branch and the repository
 
119
      containing a given location.
 
120
      (Daniel Watkins)
 
121
 
109
122
    * New ``versionedfile.KeyMapper`` interface to abstract out the access to
110
123
      underlying .knit/.kndx etc files in repositories with partitioned
111
124
      storage. (Robert Collins)