~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Ian Clatworthy
  • Date: 2008-07-04 03:29:14 UTC
  • mfrom: (3015.3.59 check)
  • mto: This revision was merged to the branch mainline in revision 3521.
  • Revision ID: ian.clatworthy@canonical.com-20080704032914-ymz2feecr4qxe160
Fix check to understand split up .bzr format (Daniel Mark Watkins)

Show diffs side-by-side

added added

removed removed

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