~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2008-06-25 10:06:48 UTC
  • mfrom: (3509 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3510.
  • Revision ID: mbp@sourcefrog.net-20080625100648-ac20jxcm3ojucuby
merge trunk; remove RemoteToOtherFetcher

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
IN DEVELOPMENT
9
9
--------------
10
10
 
11
 
  BUG FIXES:
12
 
 
13
11
  IMPROVEMENTS:
14
12
 
15
13
    * ``bzr export --format=tgz --root=NAME -`` to export a gzipped tarball 
18
16
 
19
17
  BUGFIXES:
20
18
 
 
19
    * Clearer message about how to set the PYTHONPATH if bzrlib can't be
 
20
      loaded. 
 
21
      (Martin Pool, #205230)
 
22
 
 
23
    * Errors about missing libraries are now shown without a traceback,
 
24
      and with a suggestion to install the library.  The full traceback is 
 
25
      still in ``.bzr.log`` and can be shown with ``-Derror``.
 
26
      (Martin Pool, #240161)
 
27
 
 
28
    * Handle urls such as ftp://user@host.com@www.host.com where the user
 
29
      name contains an @.
 
30
      (Neil Martinsen-Burrell, #228058)
 
31
 
 
32
    * ``needs_read_lock`` and ``needs_write_lock`` now suppress an error during
 
33
      ``unlock`` if there was an error in the original function. This helps
 
34
      most when there is a failure with a smart server action, since often the
 
35
      connection closes and we cannot unlock.
 
36
      (Andrew Bennetts, John Arbash Meinel, #125784)
 
37
 
 
38
    * Obsolete hidden command ``bzr fetch`` removed.
 
39
      (Martin Pool, #172870)
 
40
 
 
41
    * Raise the correct exception when doing ``-rbefore:0`` or ``-c0``.
 
42
      (John Arbash Meinel, #239933)
 
43
 
21
44
    * You can now compare file revisions in Windows diff programs from 
22
45
      Cygwin Bazaar.
23
46
      (Matt McClure, #209281)
24
47
 
 
48
    * revision_history now tolerates mainline ghosts for Branch format 6.
 
49
      (Aaron Bentley, #235055)
 
50
 
25
51
  DOCUMENTATION:
26
52
 
27
 
   * Updated developer documentation.
28
 
     (Martin Pool)
 
53
    * Updated developer documentation.
 
54
      (Martin Pool)
29
55
 
30
56
  TESTING:
31
57
 
 
58
   * ``TestCaseWithTransport.make_branch_and_tree`` tries harder to return
 
59
     a tree with a ``branch`` attribute of the right format.  This was
 
60
     preventing some ``RemoteBranch`` tests from actually running with
 
61
     ``RemoteBranch`` instances.  (Andrew Bennetts)
 
62
 
32
63
  API CHANGES:
33
64
 
34
65
    * Removed ``Repository.text_store``, ``control_store``, etc.  Instead,
37
68
      Repository docstring for more details.
38
69
      (Robert Collins)
39
70
 
 
71
    * ``Branch.pull`` now accepts an ``_override_hook_target`` optional
 
72
      parameter.  If you have a subclass of ``Branch`` that overrides
 
73
      ``pull`` then you should add this parameter.  (Andrew Bennetts)
 
74
 
40
75
  INTERNALS:
41
76
 
42
77
    * New ``versionedfile.KeyMapper`` interface to abstract out the access to
46
81
    * Obsolete developer-use command ``weave-join`` has been removed.
47
82
      (Robert Collins)
48
83
 
 
84
    * ``RemoteToOtherFetcher`` and ``get_data_stream_for_search`` removed,
 
85
      to support new ``VersionedFiles`` layering.
 
86
      (Robert Collins)
 
87
 
49
88
 
50
89
bzr 1.6beta2 2008-06-10
51
90
-----------------------
62
101
      reading from the repository.)
63
102
      (Martin Pool, Andrew Bennetts, Robert Collins, #234748)
64
103
 
 
104
    * ``bzr status`` was breaking if you merged the same revision twice.
 
105
      (John Arbash Meinel, #235407)
 
106
 
 
107
    * Fix infinite loop consuming 100% CPU when a connection is lost while
 
108
      reading a response body via the smart protocol v1 or v2.
 
109
      (Andrew Bennetts)
 
110
      
65
111
    * Inserting a bundle which changes the contents of a file with no trailing
66
112
      end of line, causing a knit snapshot in a 'knits' repository will no longer
67
113
      cause KnitCorrupt. (Robert Collins)
90
136
    * Faster branching (1.09x) and lightweight checkouts (1.06x) on large trees.
91
137
      (Ian Clatworthy, Aaron Bentley)
92
138
 
93
 
  BUGFIXES:
94
 
 
95
 
    * ``bzr status`` was breaking if you merged the same revision twice.
96
 
      (John Arbash Meinel, #235407)
97
 
 
98
139
  DOCUMENTATION:
99
140
 
100
141
    * Added *Bazaar Zen* section to the User Guide. (Ian Clatworthy)