~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2008-04-28 03:52:09 UTC
  • mfrom: (3360.3.3 1.4)
  • mto: This revision was merged to the branch mainline in revision 3385.
  • Revision ID: mbp@sourcefrog.net-20080428035209-2sfjlaeijx20wt1z
Merge back 1.4 and start 1.5 (but not transaction cache reinstatement)

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
      (Aaron Bentley)
65
65
 
66
66
 
 
67
bzr 1.4rc2 2008-04-21
 
68
---------------------
 
69
 
 
70
  BUG FIXES:
 
71
 
 
72
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
73
      for ``revision_id=None`` which was not a string.
 
74
      (John Arbash Meinel, #211661)
 
75
 
 
76
    * Fixed a bug in handling ghost revisions when logging changes in a 
 
77
      particular file.  (John Arbash Meinel, #209948)
 
78
 
 
79
    * Fix error about "attempt to add line-delta in non-delta knit".
 
80
      (Andrew Bennetts, #205156)
 
81
 
 
82
    * Fixed performance degradation in fetching from knit repositories to
 
83
      knits and packs due to parsing the entire revisions.kndx on every graph
 
84
      walk iteration fixed by using the Repository.get_graph API.  There was
 
85
      another regression in knit => knit fetching which re-read the index for
 
86
      every revision each side had in common.
 
87
      (Robert Collins, John Arbash Meinel)
 
88
 
 
89
 
 
90
bzr 1.4rc1 2008-04-11
 
91
---------------------
 
92
 
 
93
 
 
94
 
67
95
bzr 1.4rc1 2008-04-11
68
96
---------------------
69
97
 
146
174
      one is present.  You can use the new ``nosmart+`` transport decorator
147
175
      to get the old behaviour.  (Andrew Bennetts)
148
176
 
149
 
     * Various operations with revision specs and commands that calculate
150
 
       revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
 
177
    * The ``version`` command takes a ``--short`` option to print just the
 
178
      version number, for easier use in scripts.  (Martin Pool)
 
179
 
 
180
    * Various operations with revision specs and commands that calculate
 
181
      revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
151
182
 
152
183
  BUGFIXES:
153
184
 
324
355
      had already failed, and should not be relied upon by code. 
325
356
      (Martin Pool, #109520)
326
357
 
 
358
    * ``make dist`` target to build a release tarball, and also 
 
359
      ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
 
360
 
327
361
    * The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
328
362
      classes will now raise ``UnknownSmartMethod`` when appropriate, so that
329
363
      callers don't need to try distinguish unknown request errors from other