/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: John Arbash Meinel
  • Date: 2006-09-10 20:39:26 UTC
  • mto: This revision was merged to the branch mainline in revision 2004.
  • Revision ID: john@arbash-meinel.com-20060910203926-ae731f6bb165d6fa
Adding a ScopeReplacer class, which can replace itself on demand

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
IN DEVELOPMENT
 
2
 
 
3
  IMPROVEMENTS:
 
4
 
 
5
    * Knit files now wait to create their contents until the first data is
 
6
      added. The old code used to create an empty .knit and a .kndx with just
 
7
      the header. However, this caused a lot of extra round trips over sftp.
 
8
      This can change the time for ``bzr push`` to create a new remote branch
 
9
      from 160s down to 100s. This also affects ``bzr commit`` performance when
 
10
      adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
 
11
      down to 40s (John Arbash Meinel, #44692)
 
12
 
 
13
    * When an entire subtree has been deleted, commit will now report that
 
14
      just the top of the subtree has been deleted, rather than reporting
 
15
      all the individual items. (Robert Collins)
 
16
 
 
17
    * Commit performs one less XML parse. (Robert Collins)
 
18
 
 
19
  BUG FIXES:
 
20
 
 
21
    * Handle boundary="" lines properly to allow access through a Squid proxy.
 
22
      (John Arbash Meinel, #57723)
 
23
 
 
24
    * revert now removes newly-added directories (Aaron Bentley, #54172)
 
25
 
 
26
    * ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches if there 
 
27
      isn't a working tree. (David Allouche, #40679)
 
28
 
 
29
    * Give nicer error messages when a user supplies an invalid --revision
 
30
      parameter. (John Arbash Meinel, #55420)
 
31
 
 
32
    * Handle when LANG is not recognized by python. Emit a warning, but
 
33
      just revert to using 'ascii'. (John Arbash Meinel, #35392)
 
34
 
 
35
    * Don't use preexec_fn on win32, as it is not supported by subprocess.
 
36
      (John Arbash Meinel)
 
37
 
 
38
  INTERNALS:
 
39
 
 
40
    * TestCaseInTempDir now creates a separate directory for HOME, rather
 
41
      than having HOME set to the same location as the working directory.
 
42
      (John Arbash Meinel)
 
43
 
 
44
    * run_bzr_subprocess() can take an optional 'env_changes={}' parameter,
 
45
      which will update os.environ inside the spawned child. It also can
 
46
      take a 'universal_newlines=True', which helps when checking the output
 
47
      of the command. (John Arbash Meinel)
 
48
 
 
49
    * Refactor SFTP vendors to allow easier re-use when ssh is used. 
 
50
      (Andrew Bennetts)
 
51
 
 
52
    * Transport.list_dir() and Transport.iter_files_recursive() should always
 
53
      return urlescaped paths. This is now tested (there were bugs in a few
 
54
      of the transports) (Andrew Bennetts, David Allouche, John Arbash Meinel)
 
55
 
 
56
    * New utility function symbol_versioning.deprecation_string. Returns the
 
57
      formatted string for a callable, deprecation format pair. (Robert Collins)
 
58
 
 
59
    * New TestCase helper applyDeprecated. This allows you to call a callable
 
60
      which is deprecated without it spewing to the screen, just by supplying
 
61
      the deprecation format string issued for it. (Robert Collins)
 
62
 
 
63
    * Transport.append and Transport.put have been deprecated in favor of
 
64
      .append_bytes, .append_file, .put_bytes, and .put_file. This removes the
 
65
      ambiguity in what type of object the functions take.
 
66
      Transport.non_atomic_put_{bytes,file} has also been added. Which works
 
67
      similarly to Transport.append() except for SFTP, it doesn't have a round
 
68
      trip when opening the file. Also, it provides functionality for creating
 
69
      a parent directory when trying to create a file, rather than raise
 
70
      NoSuchFile and forcing the caller to repeat their request.
 
71
      (John Arbash Meinel)
 
72
 
 
73
    * WorkingTree has a new api ``unversion`` which allow the unversioning of
 
74
      entries by their file id. (Robert Collins)
 
75
 
 
76
    * WorkingTree.pending_merges is deprecated.  Please use the get_parent_ids
 
77
      (introduced in 0.10) method instead. (Robert Collins)
 
78
 
 
79
bzr 0.10.0RC1  2006-08-28
 
80
  
 
81
  IMPROVEMENTS:
 
82
    * 'merge' now takes --uncommitted, to apply uncommitted changes from a
 
83
      tree.  (Aaron Bentley)
 
84
  
 
85
    * 'bzr add --file-ids-from' can be used to specify another path to use
 
86
      for creating file ids, rather than generating all new ones. Internally,
 
87
      the 'action' passed to smart_add_tree() can return file_ids that
 
88
      will be used, rather than having bzrlib generate new ones.
 
89
      (John Arbash Meinel, #55781)
 
90
 
 
91
    * ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
92
      This will cache some of the intermediate trees, and decrease the
 
93
      setup time for benchmark tests. (John Arbash Meinel)
 
94
 
 
95
    * Inverse forms are provided for all boolean options.  For example,
 
96
      --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
 
97
 
 
98
    * Serialize out Inventories directly, rather than using ElementTree.
 
99
      Writing out a kernel sized inventory drops from 2s down to ~350ms.
 
100
      (Robert Collins, John Arbash Meinel)
 
101
 
 
102
  BUG FIXES:
 
103
 
 
104
    * Help diffutils 2.8.4 get along with binary tests (Marien Zwart: #57614)
 
105
 
 
106
    * Change LockDir so that if the lock directory doesn't exist when
 
107
      lock_write() is called, an attempt will be made to create it.
 
108
      (John Arbash Meinel, #56974)
 
109
 
 
110
    * ``bzr uncommit`` preserves pending merges. (John Arbash Meinel, #57660)
 
111
 
 
112
    * Active FTP transport now works as intended. (ghozzy, #56472)
 
113
 
 
114
    * Really fix mutter() so that it won't ever raise a UnicodeError.
 
115
      It means it is possible for ~/.bzr.log to contain non UTF-8 characters.
 
116
      But it is a debugging log, not a real user file.
 
117
      (John Arbash Meinel, #56947, #53880)
 
118
 
 
119
    * Change Command handle to allow Unicode command and options.
 
120
      At present we cannot register Unicode command names, so we will get
 
121
      BzrCommandError('unknown command'), or BzrCommandError('unknown option')
 
122
      But that is better than a UnicodeError + a traceback.
 
123
      (John Arbash Meinel, #57123)
 
124
 
 
125
    * Handle TZ=UTC properly when reading/writing revisions.
 
126
      (John Arbash Meinel, #55783, #56290)
 
127
 
 
128
    * Use GPG_TTY to allow gpg --cl to work with gpg-agent in a pipeline,
 
129
      (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
130
 
 
131
    * External diff does the right thing for binaries even in foreign 
 
132
      languages. (John Arbash Meinel, #56307)
 
133
 
 
134
    * Testament handles more cases when content is unicode. Specific bug was
 
135
      in handling of revision properties. (John Arbash Meinel, Holger Krekel,
 
136
      #54723)
 
137
 
 
138
  INTERNALS:
 
139
 
 
140
    * ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
141
      which can be used to cache the conversion between utf8 and Unicode.
 
142
      Especially helpful for some of the knit annotation code, which has to
 
143
      convert revision ids to utf8 to annotate lines in storage.
 
144
      (John Arbash Meinel)
 
145
 
 
146
    * ``setup.py`` now searches the filesystem to find all packages which
 
147
      need to be installed. This should help make the life of packagers
 
148
      easier. (John Arbash Meinel)
 
149
 
 
150
bzr 0.9.0  2006-08-11
 
151
 
 
152
  SURPRISES:
 
153
 
 
154
   * The hard-coded built-in ignore rules have been removed. There are
 
155
     now two rulesets which are enforced. A user global one in 
 
156
     ~/.bazaar/ignore which will apply to every tree, and the tree
 
157
     specific one '.bzrignore'.
 
158
     ~/.bazaar/ignore will be created if it does not exist, but with
 
159
     a more conservative list than the old default.
 
160
     This fixes bugs with default rules being enforced no matter what. 
 
161
     The old list of ignore rules from bzr is available by
 
162
     running 'bzr ignore --old-default-rules'.
 
163
     (Robert Collins, Martin Pool, John Arbash Meinel)
 
164
 
 
165
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
 
166
     to more locations than just branch locations.
 
167
     (Aaron Bentley)
 
168
   
 
169
  IMPROVEMENTS:
 
170
 
 
171
   * The revision specifier "revno:" is extended to accept the syntax
 
172
     revno:N:branch. For example,
 
173
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
174
     bzr.dev.  (Matthieu Moy)
 
175
 
 
176
   * Tests updates to ensure proper URL handling, UNICODE support, and
 
177
     proper printing when the user's terminal encoding cannot display 
 
178
     the path of a file that has been versioned.
 
179
     ``bzr branch`` can take a target URL rather than only a local directory.
 
180
     Branch.get_parent()/set_parent() now save a relative path if possible,
 
181
     and normalize the parent based on root, allowing access across
 
182
     different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
 
183
     (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
 
184
      #42517, #42514)
 
185
 
 
186
   * On Unix, detect terminal width using an ioctl not just $COLUMNS.
 
187
     Use terminal width for single-line logs from ``bzr log --line`` and
 
188
     pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
 
189
     (Malone #3507)
 
190
 
 
191
   * On Windows, detect terminal width using GetConsoleScreenBufferInfo.
 
192
     (Alexander Belchenko)
 
193
 
 
194
   * Speedup improvement for 'date:'-revision search. (Guillaume Pinot).
 
195
 
 
196
   * Show the correct number of revisions pushed when pushing a new branch.
 
197
     (Robert Collins).
 
198
 
 
199
   * 'bzr selftest' now shows a progress bar with the number of tests, and 
 
200
     progress made. 'make check' shows tests in -v mode, to be more useful
 
201
     for the PQM status window. (Robert Collins).
 
202
     When using a progress bar, failed tests are printed out, rather than
 
203
     being overwritten by the progress bar until the suite finishes.
 
204
     (John Arbash Meinel)
 
205
 
 
206
   * 'bzr selftest --benchmark' will run a new benchmarking selftest.
 
207
     'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
 
208
     profile data for the individual profiled calls, allowing for fine
 
209
     grained analysis of performance.
 
210
     (Robert Collins, Martin Pool).
 
211
 
 
212
   * 'bzr commit' shows a progress bar. This is useful for commits over sftp
 
213
     where commit can take an appreciable time. (Robert Collins)
 
214
 
 
215
   * 'bzr add' is now less verbose in telling you what ignore globs were
 
216
     matched by files being ignored. Instead it just tells you how many 
 
217
     were ignored (because you might reasonably be expecting none to be
 
218
     ignored). 'bzr add -v' is unchanged and will report every ignored
 
219
     file. (Robert Collins).
 
220
 
 
221
   * ftp now has a test server if medusa is installed. As part of testing,
 
222
     ftp support has been improved, including support for supplying a
 
223
     non-standard port. (John Arbash Meinel).
 
224
 
 
225
   * 'bzr log --line' shows the revision number, and uses only the
 
226
     first line of the log message (#5162, Alexander Belchenko;
 
227
     Matthieu Moy)
 
228
 
 
229
   * 'bzr status' has had the --all option removed. The 'bzr ls' command
 
230
     should be used to retrieve all versioned files. (Robert Collins)
 
231
 
 
232
   * 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
 
233
     over email, and applied on the other end, while maintaining ancestry.
 
234
     This bundle can be applied with either 'bzr merge' or 'bzr pull',
 
235
     the same way you would apply another branch.
 
236
     (John Arbash Meinel, Aaron Bentley)
 
237
  
 
238
   * 'bzr whoami' can now be used to set your identity from the command line,
 
239
     for a branch or globally.  (Robey Pointer)
 
240
 
 
241
   * 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
 
242
     (Michael Ellerman)
 
243
 
 
244
   * 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
 
245
     (Aaron Bentley)
 
246
 
 
247
   * 'bzr get sftp://foo' gives a better error when paramiko is not present.
 
248
     Also updates things like 'http+pycurl://' if pycurl is not present.
 
249
     (John Arbash Meinel) (Malone #47821, #52204)
 
250
 
 
251
   * New env variable BZR_PROGRESS_BAR, sets the default progress bar type.
 
252
     Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or 
 
253
     'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
 
254
 
 
255
   * Improve the help text for 'bzr diff' to explain what various options do.
 
256
     (John Arbash Meinel, #6391)
 
257
 
 
258
   * 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
 
259
     revision 10. This makes -r10 more in line with what other commands do.
 
260
     'bzr uncommit' also now saves the pending merges of the revisions that
 
261
     were removed. So it is safe to uncommit after a merge, fix something,
 
262
     and commit again. (John Arbash Meinel, #32526, #31426)
 
263
 
 
264
   * 'bzr init' now also works on remote locations.
 
265
     (Wouter van Heyst, #48904)
 
266
 
 
267
   * HTTP support has been updated. When using pycurl we now support 
 
268
     connection keep-alive, which reduces dns requests and round trips.
 
269
     And for both urllib and pycurl we support multi-range requests, 
 
270
     which decreases the number of round-trips. Performance results for
 
271
     ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
 
272
     http branching is now 2-3x faster, and ``bzr pull`` in an existing 
 
273
     branch is as much as 4x faster.
 
274
     (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
 
275
 
 
276
   * Performance improvements for sftp. Branching and pulling are now up to
 
277
     2x faster. Utilize paramiko.readv() support for async requests if it
 
278
     is available (paramiko > 1.6) (John Arbash Meinel)
 
279
 
 
280
  BUG FIXES:
 
281
 
 
282
    * Fix shadowed definition of TestLocationConfig that caused some 
 
283
      tests not to run.  (#32587, Erik Bågfors, Michael Ellerman, 
 
284
      Martin Pool)
 
285
 
 
286
    * Fix unnecessary requirement of sign-my-commits that it be run from
 
287
      a working directory.  (Martin Pool, Robert Collins)
 
288
 
 
289
    * 'bzr push location' will only remember the push location if it succeeds
 
290
      in connecting to the remote location. (#49742, John Arbash Meinel)
 
291
 
 
292
    * 'bzr revert' no longer toggles the executable bit on win32
 
293
      (#45010, John Arbash Meinel)
 
294
 
 
295
    * Handle broken pipe under win32 correctly. (John Arbash Meinel)
 
296
    
 
297
    * sftp tests now work correctly on win32 if you have a newer paramiko
 
298
      (John Arbash Meinel)
 
299
 
 
300
    * Cleanup win32 test suite, and general cleanup of places where
 
301
      file handles were being held open. (John Arbash Meinel)
 
302
 
 
303
    * When specifying filenames for 'diff -r x..y', the name of the file in the
 
304
      working directory can be used, even if its name is different in both x
 
305
      and y.
 
306
 
 
307
    * File-ids containing single- or double-quotes are handled correctly by
 
308
      push.  (#52227, Aaron Bentley)
 
309
 
 
310
    * Normalize unicode filenames to ensure cross-platform consistency.
 
311
      (John Arbash Meinel, #43689)
 
312
 
 
313
    * The argument parser can now handle '-' as an argument. Currently
 
314
      no code interprets it specially (it is mostly handled as a file named 
 
315
      '-'). But plugins, and future operations can use it.
 
316
      (John Arbash meinel, #50984)
 
317
 
 
318
    * Bundles can properly read binary files with a plain '\r' in them.
 
319
      (John Arbash Meinel, #51927)
 
320
 
 
321
    * Tuning iter_entries() to be more efficient (John Arbash Meinel, #5444)
 
322
 
 
323
    * Lots of win32 fixes (the test suite passes again).
 
324
      (John Arbash Meinel, #50155)
 
325
 
 
326
    * Handle openbsd returning None for sys.getfilesystemencoding() (#41183) 
 
327
 
 
328
    * Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
 
329
 
 
330
    * Removals are only committed if they match the filespec (or if there is
 
331
      no filespec).  (#46635, Aaron Bentley)
 
332
 
 
333
    * smart-add recurses through all supplied directories 
 
334
      (John Arbash Meinel, #52578)
 
335
 
 
336
    * Make the bundle reader extra lines before and after the bundle text.
 
337
      This allows you to parse an email with the bundle inline.
 
338
      (John Arbash Meinel, #49182)
 
339
 
 
340
    * Change the file id generator to squash a little bit more. Helps when
 
341
      working with long filenames on windows. (Also helps for unicode filenames
 
342
      not generating hidden files). (John Arbash Meinel, #43801)
 
343
 
 
344
    * Restore terminal mode on C-c while reading sftp password.  (#48923, 
 
345
      Nicholas Allen, Martin Pool)
 
346
 
 
347
    * Timestamps are rounded to 1ms, and revision entries can be recreated
 
348
      exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
 
349
 
 
350
    * Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
 
351
      use local paths, since it is user visible (John Arbash Meinel, #53653)
 
352
 
 
353
    * ``bzr status foo`` when foo was unversioned used to cause a full delta
 
354
      to be generated (John Arbash Meinel, #53638)
 
355
 
 
356
    * When reading revision properties, an empty value should be considered
 
357
      the empty string, not None (John Arbash Meinel, #47782)
 
358
 
 
359
    * ``bzr diff --diff-options`` can now handle binary files being changed.
 
360
      Also, the output is consistent when --diff-options is not supplied.
 
361
      (John Arbash Meinel, #54651, #52930)
 
362
 
 
363
    * Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
 
364
 
 
365
    * Fix Branch.get_parent() to handle the case when the parent is not 
 
366
      accessible (John Arbash Meinel, #52976)
 
367
 
 
368
  INTERNALS:
 
369
 
 
370
    * Combine the ignore rules into a single regex rather than looping over
 
371
      them to reduce the threshold where  N^2 behaviour occurs in operations
 
372
      like status. (Jan Hudec, Robert Collins).
 
373
 
 
374
    * Appending to bzrlib.DEFAULT_IGNORE is now deprecated. Instead, use
 
375
      one of the add functions in bzrlib.ignores. (John Arbash Meinel)
 
376
 
 
377
    * 'bzr push' should only push the ancestry of the current revision, not
 
378
      all of the history in the repository. This is especially important for
 
379
      shared repositories. (John Arbash Meinel)
 
380
 
 
381
    * bzrlib.delta.compare_trees now iterates in alphabetically sorted order,
 
382
      rather than randomly walking the inventories. (John Arbash Meinel)
 
383
 
 
384
    * Doctests are now run in temporary directories which are cleaned up when
 
385
      they finish, rather than using special ScratchDir/ScratchBranch objects.
 
386
      (Martin Pool)
 
387
 
 
388
    * Split ``check`` into separate methods on the branch and on the repository,
 
389
      so that it can be specialized in ways that are useful or efficient for
 
390
      different formats.  (Martin Pool, Robert Collins)
 
391
 
 
392
    * Deprecate Repository.all_revision_ids; most methods don't really need
 
393
      the global revision graph but only that part leading up to a particular
 
394
      revision.  (Martin Pool, Robert Collins)
 
395
 
 
396
    * Add a BzrDirFormat control_formats list which allows for control formats
 
397
      that do not use '.bzr' to store their data - i.e. '.svn', '.hg' etc.
 
398
      (Robert Collins, Jelmer Vernooij).
 
399
 
 
400
    * bzrlib.diff.external_diff can be redirected to any file-like object.
 
401
      Uses subprocess instead of spawnvp.
 
402
      (#4047, #48914, James Henstridge, John Arbash Meinel)
 
403
 
 
404
    * New command line option '--profile-imports', which will install a custom
 
405
      importer to log time to import modules and regex compilation time to 
 
406
      sys.stderr (John Arbash Meinel)
 
407
 
 
408
    * 'EmptyTree' is now deprecated, please use repository.revision_tree(None)
 
409
      instead. (Robert Collins)
 
410
 
 
411
    * "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
 
412
 
 
413
bzr 0.8.2  2006-05-17
 
414
  
 
415
  BUG FIXES:
 
416
   
 
417
    * setup.py failed to install launchpad plugin.  (Martin Pool)
 
418
 
 
419
bzr 0.8.1  2006-05-16
 
420
 
 
421
  BUG FIXES:
 
422
 
 
423
    * Fix failure to commit a merge in a checkout.  (Martin Pool, 
 
424
      Robert Collins, Erik Bågfors, #43959)
 
425
 
 
426
    * Nicer messages from 'commit' in the case of renames, and correct
 
427
      messages when a merge has occured. (Robert Collins, Martin Pool)
 
428
 
 
429
    * Separate functionality from assert statements as they are skipped in
 
430
      optimized mode of python. Add the same check to pending merges.
 
431
      (#44443, Olaf Conradi)
 
432
 
 
433
  CHANGES:
 
434
 
 
435
    * Do not show the None revision in output of bzr ancestry. (Olaf Conradi)
 
436
 
 
437
    * Add info on standalone branches without a working tree.
 
438
      (#44155, Olaf Conradi)
 
439
 
 
440
    * Fix bug in knits when raising InvalidRevisionId. (#44284, Olaf Conradi)
 
441
 
 
442
  CHANGES:
 
443
 
 
444
    * Make editor invocation comply with Debian Policy. First check
 
445
      environment variables VISUAL and EDITOR, then try editor from
 
446
      alternatives system. If that all fails, fall back to the pre-defined
 
447
      list of editors. (#42904, Olaf Conradi)
 
448
 
 
449
  NEW FEATURES:
 
450
 
 
451
    * New 'register-branch' command registers a public branch into 
 
452
      Launchpad.net, where it can be associated with bugs, etc.
 
453
      (Martin Pool, Bjorn Tillenius, Robert Collins)
 
454
 
 
455
  INTERNALS:
 
456
 
 
457
    * New public api in InventoryEntry - 'describe_change(old, new)' which
 
458
      provides a human description of the changes between two old and
 
459
      new. (Robert Collins, Martin Pool)
 
460
 
 
461
  TESTING:
 
462
 
 
463
    * Fix test case for bzr info in upgrading a standalone branch to metadir,
 
464
      uses bzrlib api now. (Olaf Conradi)
 
465
 
 
466
bzr 0.8  2006-05-08
 
467
 
 
468
  NOTES WHEN UPGRADING:
 
469
 
 
470
    Release 0.8 of bzr introduces a new format for history storage, called
 
471
    'knit', as an evolution of to the 'weave' format used in 0.7.  Local 
 
472
    and remote operations are faster using knits than weaves.  Several
 
473
    operations including 'init', 'init-repo', and 'upgrade' take a 
 
474
    --format option that controls this.  Branching from an existing branch
 
475
    will keep the same format.
 
476
 
 
477
    It is possible to merge, pull and push between branches of different
 
478
    formats but this is slower than moving data between homogenous
 
479
    branches.  It is therefore recommended (but not required) that you
 
480
    upgrade all branches for a project at the same time.  Information on
 
481
    formats is shown by 'bzr info'.
 
482
 
 
483
    bzr 0.8 now allows creation of 'repositories', which hold the history 
 
484
    of files and revisions for several branches.  Previously bzr kept all
 
485
    the history for a branch within the .bzr directory at the root of the
 
486
    branch, and this is still the default.  To create a repository, use
 
487
    the new 'bzr init-repo' command.  Branches exist as directories under
 
488
    the repository and contain just a small amount of information
 
489
    indicating the current revision of the branch.
 
490
 
 
491
    bzr 0.8 also supports 'checkouts', which are similar to in cvs and
 
492
    subversion.  Checkouts are associated with a branch (optionally in a
 
493
    repository), which contains all the historical information.  The
 
494
    result is that a checkout can be deleted without losing any
 
495
    already-committed revisions.  A new 'update' command is also available. 
 
496
 
 
497
    Repositories and checkouts are not supported with the 0.7 storage
 
498
    format.  To use them you must upgrad to either knits, or to the
 
499
    'metaweave' format, which uses weaves but changes the .bzr directory
 
500
    arrangement.
 
501
    
 
502
 
 
503
  IMPROVEMENTS:
 
504
 
 
505
    * Sftp paths can now be relative, or local, according to the lftp
 
506
      convention. Paths now take the form:
 
507
      sftp://user:pass@host:port/~/relative/path
 
508
      or
 
509
      sftp://user:pass@host:port/absolute/path
 
510
 
 
511
    * The FTP transport now tries to reconnect after a temporary
 
512
      failure. ftp put is made atomic. (Matthieu Moy)
 
513
 
 
514
    * The FTP transport now maintains a pool of connections, and
 
515
      reuses them to avoid multiple connections to the same host (like
 
516
      sftp did). (Daniel Silverstone)
 
517
 
 
518
    * The bzr_man.py file has been removed. To create the man page now,
 
519
      use ./generate_docs.py man. The new program can also create other files.
 
520
      Run "python generate_docs.py --help" for usage information. (Hans
 
521
      Ulrich Niedermann & James Blackwell).
 
522
 
 
523
    * Man Page now gives full help (James Blackwell). Help also updated to 
 
524
      reflect user config now being stored in .bazaar (Hans Ulrich
 
525
      Niedermann)
 
526
 
 
527
    * It's now possible to set aliases in bazaar.conf (Erik Bågfors)
 
528
 
 
529
    * Pull now accepts a --revision argument (Erik Bågfors)
 
530
 
 
531
    * 'bzr re-sign' now allows multiple revisions to be supplied on the command
 
532
      line. You can now use the following command to sign all of your old commits.
 
533
        find .bzr/revision-store// -name my@email-* \
 
534
          | sed 's/.*\/\/..\///' \
 
535
          | xargs bzr re-sign
 
536
 
 
537
    * Upgrade can now upgrade over the network. (Robert Collins)
 
538
 
 
539
    * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
 
540
      behaviour.  By default they will cache history in the checkout, but
 
541
      with --lightweight almost all data is kept in the master branch.
 
542
      (Robert Collins)
 
543
 
 
544
    * 'revert' unversions newly-versioned files, instead of deleting them.
 
545
 
 
546
    * 'merge' is more robust.  Conflict messages have changed.
 
547
 
 
548
    * 'merge' and 'revert' no longer clobber existing files that end in '~' or
 
549
      '.moved'.
 
550
 
 
551
    * Default log format can be set in configuration and plugins can register
 
552
      their own formatters. (Erik Bågfors)
 
553
 
 
554
    * New 'reconcile' command will check branch consistency and repair indexes
 
555
      that can become out of sync in pre 0.8 formats. (Robert Collins,
 
556
      Daniel Silverstone)
 
557
 
 
558
    * New 'bzr init --format' and 'bzr upgrade --format' option to control 
 
559
      what storage format is created or produced.  (Robert Collins, 
 
560
      Martin Pool)
 
561
 
 
562
    * Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
 
563
 
 
564
    * New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
 
565
 
 
566
    * New 'init-repository' command, plus support for repositories in 'init'
 
567
      and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
 
568
 
 
569
    * Improve output of 'info' command. Show all relevant locations related to
 
570
      working tree, branch and repository. Use kibibytes for binary quantities.
 
571
      Fix off-by-one error in missing revisions of working tree.  Make 'info'
 
572
      work on branches, repositories and remote locations.  Show locations
 
573
      relative to the shared repository, if applicable.  Show locking status
 
574
      of locations.  (Olaf Conradi)
 
575
 
 
576
    * Diff and merge now safely handle binary files. (Aaron Bentley)
 
577
 
 
578
    * 'pull' and 'push' now normalise the revision history, so that any two
 
579
      branches with the same tip revision will have the same output from 'log'.
 
580
      (Robert Collins)
 
581
 
 
582
    * 'merge' accepts --remember option to store parent location, like 'push'
 
583
      and 'pull'. (Olaf Conradi)
 
584
 
 
585
    * bzr status and diff when files given as arguments do not exist
 
586
      in the relevant trees.  (Martin Pool, #3619)
 
587
 
 
588
    * Add '.hg' to the default ignore list.  (Martin Pool)
 
589
 
 
590
    * 'knit' is now the default disk format. This improves disk performance and
 
591
      utilization, increases incremental pull performance, robustness with SFTP
 
592
      and allows checkouts over SFTP to perform acceptably. 
 
593
      The initial Knit code was contributed by Johan Rydberg based on a
 
594
      specification by Martin Pool.
 
595
      (Robert Collins, Aaron Bentley, Johan Rydberg, Martin Pool).
 
596
 
 
597
    * New tool to generate all-in-one html version of the manual.  (Alexander
 
598
      Belchenko)
 
599
 
 
600
    * Hitting CTRL-C while doing an SFTP push will no longer cause stale locks
 
601
      to be left in the SFTP repository. (Robert Collins, Martin Pool).
 
602
 
 
603
    * New option 'diff --prefix' to control how files are named in diff
 
604
      output, with shortcuts '-p0' and '-p1' corresponding to the options for 
 
605
      GNU patch.  (Alexander Belchenko, Goffredo Baroncelli, Martin Pool)
 
606
 
 
607
    * Add --revision option to 'annotate' command.  (Olaf Conradi)
 
608
 
 
609
    * If bzr shows an unexpected revision-history after pulling (perhaps due
 
610
      to a reweave) it can now be corrected by 'bzr reconcile'.
 
611
      (Robert Collins)
 
612
 
 
613
  CHANGES:
 
614
 
 
615
    * Commit is now verbose by default, and shows changed filenames and the 
 
616
      new revision number.  (Robert Collins, Martin Pool)
 
617
 
 
618
    * Unify 'mv', 'move', 'rename'.  (#5379, Matthew Fuller)
 
619
 
 
620
    * 'bzr -h' shows help.  (#35940, Martin Pool, Ian Bicking)
 
621
 
 
622
    * Make 'pull' and 'push' remember location on failure using --remember.
 
623
      (Olaf Conradi)
 
624
 
 
625
    * For compatibility, make old format for using weaves inside metadir
 
626
      available as 'metaweave' format.  Rename format 'metadir' to 'default'.
 
627
      Clean up help for option --format in commands 'init', 'init-repo' and
 
628
      'upgrade'.  (Olaf Conradi)
 
629
 
 
630
  INTERNALS:
 
631
  
 
632
    * The internal storage of history, and logical branch identity have now
 
633
      been split into Branch, and Repository. The common locking and file 
 
634
      management routines are now in bzrlib.lockablefiles. 
 
635
      (Aaron Bentley, Robert Collins, Martin Pool)
 
636
 
 
637
    * Transports can now raise DependencyNotPresent if they need a library
 
638
      which is not installed, and then another implementation will be 
 
639
      tried.  (Martin Pool)
 
640
 
 
641
    * Remove obsolete (and no-op) `decode` parameter to `Transport.get`.  
 
642
      (Martin Pool)
 
643
 
 
644
    * Using Tree Transform for merge, revert, tree-building
 
645
 
 
646
    * WorkingTree.create, Branch.create, WorkingTree.create_standalone,
 
647
      Branch.initialize are now deprecated. Please see BzrDir.create_* for
 
648
      replacement API's. (Robert Collins)
 
649
 
 
650
    * New BzrDir class represents the .bzr control directory and manages
 
651
      formatting issues. (Robert Collins)
 
652
 
 
653
    * New repository.InterRepository class encapsulates Repository to 
 
654
      Repository actions and allows for clean selection of optimised code
 
655
      paths. (Robert Collins)
 
656
 
 
657
    * bzrlib.fetch.fetch and bzrlib.fetch.greedy_fetch are now deprecated,
 
658
      please use 'branch.fetch' or 'repository.fetch' depending on your
 
659
      needs. (Robert Collins)
 
660
 
 
661
    * deprecated methods now have a 'is_deprecated' flag on them that can
 
662
      be checked, if you need to determine whether a given callable is 
 
663
      deprecated at runtime. (Robert Collins)
 
664
 
 
665
    * Progress bars are now nested - see
 
666
      bzrlib.ui.ui_factory.nested_progress_bar. (Robert Collins, Robey Pointer)
 
667
 
 
668
    * New API call get_format_description() for each type of format.
 
669
      (Olaf Conradi)
 
670
 
 
671
    * Changed branch.set_parent() to accept None to remove parent.
 
672
      (Olaf Conradi)
 
673
 
 
674
    * Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
 
675
 
 
676
    * WorkingTree.branch is now a read only property.  (Robert Collins)
 
677
 
 
678
    * bzrlib.ui.text.TextUIFactory now accepts a bar_type parameter which
 
679
      can be None or a factory that will create a progress bar. This is
 
680
      useful for testing or for overriding the bzrlib.progress heuristic.
 
681
      (Robert Collins)
 
682
 
 
683
    * New API method get_physical_lock_status() to query locks present on a
 
684
      transport.  (Olaf Conradi)
 
685
 
 
686
    * Repository.reconcile now takes a thorough keyword parameter to allow
 
687
      requesting an indepth reconciliation, rather than just a data-loss 
 
688
      check. (Robert Collins)
 
689
 
 
690
    * bzrlib.ui.ui_factory protocol now supports 'get_boolean' to prompt
 
691
      the user for yes/no style input. (Robert Collins)
 
692
 
 
693
  TESTING:
 
694
 
 
695
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
 
696
      for testing SFTP protocol support. (Robey Pointer)
 
697
 
 
698
    * Branch formats are now tested once per implementation (see bzrlib.
 
699
      tests.branch_implementations. This is analagous to the transport
 
700
      interface tests, and has been followed up with working tree,
 
701
      repository and BzrDir tests. (Robert Collins)
 
702
 
 
703
    * New test base class TestCaseWithTransport provides a transport aware
 
704
      test environment, useful for testing any transport-interface using
 
705
      code. The test suite option --transport controls the transport used
 
706
      by this class (when its not being used as part of implementation
 
707
      contract testing). (Robert Collins)
 
708
 
 
709
    * Close logging handler on disabling the test log. This will remove the
 
710
      handler from the internal list inside python's logging module,
 
711
      preventing shutdown from closing it twice.  (Olaf Conradi)
 
712
 
 
713
    * Move test case for uncommit to blackbox tests.  (Olaf Conradi)
 
714
 
 
715
    * run_bzr and run_bzr_captured now accept a 'stdin="foo"' parameter which
 
716
      will provide String("foo") to the command as its stdin.
 
717
 
 
718
bzr 0.7 2006-01-09
 
719
 
 
720
  CHANGES:
 
721
 
 
722
    * .bzrignore is excluded from exports, on the grounds that it's a bzr 
 
723
      internal-use file and may not be wanted.  (Jamie Wilkinson)
 
724
 
 
725
    * The "bzr directories" command were removed in favor of the new
 
726
      --kind option to the "bzr inventory" command.  To list all 
 
727
      versioned directories, now use "bzr inventory --kind directory".  
 
728
      (Johan Rydberg)
 
729
 
 
730
    * Under Windows configuration directory is now %APPDATA%\bazaar\2.0
 
731
      by default. (John Arbash Meinel)
 
732
 
 
733
    * The parent of Bzr configuration directory can be set by BZR_HOME
 
734
      environment variable. Now the path for it is searched in BZR_HOME, then
 
735
      in HOME. Under Windows the order is: BZR_HOME, APPDATA (usually
 
736
      points to C:\Documents and Settings\User Name\Application Data), HOME.
 
737
      (John Arbash Meinel)
 
738
 
 
739
    * Plugins with the same name in different directories in the bzr plugin
 
740
      path are no longer loaded: only the first successfully loaded one is
 
741
      used. (Robert Collins)
 
742
 
 
743
    * Use systems' external ssh command to open connections if possible.  
 
744
      This gives better integration with user settings such as ProxyCommand.
 
745
      (James Henstridge)
 
746
 
 
747
    * Permissions on files underneath .bzr/ are inherited from the .bzr 
 
748
      directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
 
749
      will mean that future file will be created with group write permissions.
 
750
 
 
751
    * configure.in and config.guess are no longer in the builtin default 
 
752
      ignore list.
 
753
 
 
754
    * '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
 
755
      files.  (John Arbash Meinel, Martin Pool)
 
756
 
 
757
  IMPROVEMENTS:
 
758
 
 
759
    * "bzr INIT dir" now initializes the specified directory, and creates 
 
760
      it if it does not exist.  (John Arbash Meinel)
 
761
 
 
762
    * New remerge command (Aaron Bentley)
 
763
 
 
764
    * Better zsh completion script.  (Steve Borho)
 
765
 
 
766
    * 'bzr diff' now returns 1 when there are changes in the working 
 
767
      tree. (Robert Collins)
 
768
 
 
769
    * 'bzr push' now exists and can push changes to a remote location. 
 
770
      This uses the transport infrastructure, and can store the remote
 
771
      location in the ~/.bazaar/branches.conf configuration file.
 
772
      (Robert Collins)
 
773
 
 
774
    * Test directories are only kept if the test fails and the user requests
 
775
      that they be kept.
 
776
 
 
777
    * Tweaks to short log printing
 
778
 
 
779
    * Added branch nicks, new nick command, printing them in log output. 
 
780
      (Aaron Bentley)
 
781
 
 
782
    * If $BZR_PDB is set, pop into the debugger when an uncaught exception 
 
783
      occurs.  (Martin Pool)
 
784
 
 
785
    * Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
 
786
      the same as Subversion.  (Martin Pool)
 
787
 
 
788
    * New ftp transport support (on ftplib), for ftp:// and aftp:// 
 
789
      URLs.  (Daniel Silverstone)
 
790
 
 
791
    * Commit editor temporary files now start with 'bzr_log.', to allow 
 
792
      text editors to match the file name and set up appropriate modes or 
 
793
      settings.  (Magnus Therning)
 
794
 
 
795
    * Improved performance when integrating changes from a remote weave.  
 
796
      (Goffredo Baroncelli)
 
797
 
 
798
    * Sftp will attempt to cache the connection, so it is more likely that
 
799
      a connection will be reused, rather than requiring multiple password
 
800
      requests.
 
801
 
 
802
    * bzr revno now takes an optional argument indicating the branch whose
 
803
      revno should be printed.  (Michael Ellerman)
 
804
 
 
805
    * bzr cat defaults to printing the last version of the file.  
 
806
      (#3632, Matthieu Moy)
 
807
 
 
808
    * New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof 
 
809
      profiler.  (Denys Duchier)
 
810
 
 
811
    * Faster commits by reading only the headers of affected weave files. 
 
812
      (Denys Duchier)
 
813
 
 
814
    * 'bzr add' now takes a --dry-run parameter which shows you what would be
 
815
      added, but doesn't actually add anything. (Michael Ellerman)
 
816
 
 
817
    * 'bzr add' now lists how many files were ignored per glob.  add --verbose
 
818
      lists the specific files.  (Aaron Bentley)
 
819
 
 
820
    * 'bzr missing' now supports displaying changes in diverged trees and can
 
821
      be limited to show what either end of the comparison is missing.
 
822
      (Aaron Bently, with a little prompting from Daniel Silverstone)
 
823
 
 
824
  BUG FIXES:
 
825
 
 
826
    * SFTP can walk up to the root path without index errors. (Robert Collins)
 
827
 
 
828
    * Fix bugs in running bzr with 'python -O'.  (Martin Pool)
 
829
 
 
830
    * Error when run with -OO
 
831
 
 
832
    * Fix bug in reporting http errors that don't have an http error code.
 
833
      (Martin Pool)
 
834
 
 
835
    * Handle more cases of pipe errors in display commands
 
836
 
 
837
    * Change status to 3 for all errors
 
838
 
 
839
    * Files that are added and unlinked before committing are completely
 
840
      ignored by diff and status
 
841
 
 
842
    * Stores with some compressed texts and some uncompressed texts are now
 
843
      able to be used. (John A Meinel)
 
844
 
 
845
    * Fix for bzr pull failing sometimes under windows
 
846
 
 
847
    * Fix for sftp transport under windows when using interactive auth
 
848
 
 
849
    * Show files which are both renamed and modified as such in 'bzr 
 
850
      status' output.  (#4503, Daniel Silverstone)
 
851
 
 
852
    * Make annotate cope better with revisions committed without a valid 
 
853
      email address.  (Marien Zwart)
 
854
 
 
855
    * Fix representation of tab characters in commit messages.  (Harald 
 
856
      Meland)
 
857
 
 
858
    * List of plugin directories in BZR_PLUGIN_PATH environment variable is
 
859
      now parsed properly under Windows. (Alexander Belchenko)
 
860
 
 
861
    * Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
862
 
 
863
    * Keep a cached copy of the basis inventory to speed up operations 
 
864
      that need to refer to it.  (Johan Rydberg, Martin Pool)
 
865
 
 
866
    * Fix bugs in bzr status display of non-ascii characters.  (Martin 
 
867
      Pool)
 
868
 
 
869
    * Remove Makefile.in from default ignore list.  (#6413, Tollef Fog 
 
870
      Heen, Martin Pool)
 
871
 
 
872
    * Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
 
873
 
 
874
  TESTING:
 
875
 
 
876
    * Fix selftest asking for passwords when there are no SFTP keys.  
 
877
      (Robey Pointer, Jelmer Vernooij) 
 
878
 
 
879
    * Fix selftest run with 'python -O'.  (Martin Pool)
 
880
 
 
881
    * Fix HTTP tests under Windows. (John Arbash Meinel)
 
882
 
 
883
    * Make tests work even if HOME is not set (Aaron Bentley)
 
884
 
 
885
    * Updated build_tree to use fixed line-endings for tests which read 
 
886
      the file cotents and compare. Make some tests use this to pass under
 
887
      Windows. (John Arbash Meinel)
 
888
 
 
889
    * Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
890
 
 
891
    * Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
892
      (John Arbash Meinel)
 
893
 
 
894
    * Use terminal width to align verbose test output.  (Martin Pool)
 
895
 
 
896
    * Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
 
897
      If adding a new test script please add that to
 
898
      bzrlib.tests.blackbox.__init__. (Robert Collins)
 
899
 
 
900
    * Much better error message if one of the test suites can't be 
 
901
      imported.  (Martin Pool)
 
902
 
 
903
    * Make check now runs the test suite twice - once with the default locale,
 
904
      and once with all locales forced to C, to expose bugs. This is not 
 
905
      trivially done within python, so for now its only triggered by running
 
906
      Make check. Integrators and packagers who wish to check for full 
 
907
      platform support should run 'make check' to test the source.
 
908
      (Robert Collins)
 
909
 
 
910
    * Tests can now run TestSkipped if they can't execute for any reason.
 
911
      (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
912
      reasons - see the wiki spec ImprovingBzrTestSuite).
 
913
 
 
914
    * Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
 
915
      paths for the transport tests. Introduce blackbox remote sftp tests that
 
916
      test the same permutations. (Robert Collins, Robey Pointer)
 
917
 
 
918
    * Transport implementation tests are now independent of the local file
 
919
      system, which allows tests for esoteric transports, and for features
 
920
      not available in the local file system. They also repeat for variations
 
921
      on the URL scheme that can introduce issues in the transport code,
 
922
      see bzrlib.transport.TransportTestProviderAdapter() for this.
 
923
      (Robert Collins).
 
924
 
 
925
    * TestCase.build_tree uses the transport interface to build trees, pass
 
926
      in a transport parameter to give it an existing connection.
 
927
      (Robert Collins).
 
928
 
 
929
  INTERNALS:
 
930
 
 
931
    * WorkingTree.pull has been split across Branch and WorkingTree,
 
932
      to allow Branch only pulls. (Robert Collins)
 
933
 
 
934
    * commands.display_command now returns the result of the decorated 
 
935
      function. (Robert Collins)
 
936
 
 
937
    * LocationConfig now has a set_user_option(key, value) call to save
 
938
      a setting in its matching location section (a new one is created
 
939
      if needed). (Robert Collins)
 
940
 
 
941
    * Branch has two new methods, get_push_location and set_push_location
 
942
      to respectively, get and set the push location. (Robert Collins)
 
943
 
 
944
    * commands.register_command now takes an optional flag to signal that
 
945
      the registrant is planning to decorate an existing command. When 
 
946
      given multiple plugins registering a command is not an error, and
 
947
      the original command class (whether built in or a plugin based one) is
 
948
      returned to the caller. There is a new error 'MustUseDecorated' for
 
949
      signalling when a wrapping command should switch to the original
 
950
      version. (Robert Collins)
 
951
 
 
952
    * Some option parsing errors will raise 'BzrOptionError', allowing 
 
953
      granular detection for decorating commands. (Robert Collins).
 
954
 
 
955
    * Branch.read_working_inventory has moved to
 
956
      WorkingTree.read_working_inventory. This necessitated changes to
 
957
      Branch.get_root_id, and a move of Branch.set_inventory to WorkingTree
 
958
      as well. To make it clear that a WorkingTree cannot always be obtained
 
959
      Branch.working_tree() will raise 'errors.NoWorkingTree' if one cannot
 
960
      be obtained. (Robert Collins)
 
961
 
 
962
    * All pending merges operations from Branch are now on WorkingTree.
 
963
      (Robert Collins)
 
964
 
 
965
    * The follow operations from Branch have moved to WorkingTree:
 
966
      add()
 
967
      commit()
 
968
      move()
 
969
      rename_one()
 
970
      unknowns()
 
971
      (Robert Collins)
 
972
 
 
973
    * bzrlib.add.smart_add_branch is now smart_add_tree. (Robert Collins)
 
974
 
 
975
    * New "rio" serialization format, similar to rfc-822. (Martin Pool)
 
976
 
 
977
    * Rename selftests to `bzrlib.tests.test_foo`.  (John A Meinel, Martin 
 
978
      Pool)
 
979
 
 
980
    * bzrlib.plugin.all_plugins has been changed from an attribute to a 
 
981
      query method. (Robert Collins)
 
982
 
 
983
    * New options to read only the table-of-contents of a weave.  
 
984
      (Denys Duchier)
 
985
 
 
986
    * Raise NoSuchFile when someone tries to add a non-existant file.
 
987
      (Michael Ellerman)
 
988
 
 
989
    * Simplify handling of DivergedBranches in cmd_pull().
 
990
      (Michael Ellerman)
 
991
                   
 
992
   
 
993
    * Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
 
994
      is exposed as Branch().control_files. Also this has been altered with the
 
995
      controlfile pre/suffix replaced by simple method names like 'get' and
 
996
      'put'. (Aaron Bentley, Robert Collins).
 
997
 
 
998
    * Deprecated functions and methods can now be marked as such using the 
 
999
      bzrlib.symbol_versioning module. Marked method have their docstring
 
1000
      updated and will issue a DeprecationWarning using the warnings module
 
1001
      when they are used. (Robert Collins)
 
1002
 
 
1003
    * bzrlib.osutils.safe_unicode now exists to provide parameter coercion
 
1004
      for functions that need unicode strings. (Robert Collins)
 
1005
 
 
1006
bzr 0.6 2005-10-28
 
1007
 
 
1008
  IMPROVEMENTS:
 
1009
  
 
1010
    * pull now takes --verbose to show you what revisions are added or removed
 
1011
      (John A Meinel)
 
1012
 
 
1013
    * merge now takes a --show-base option to include the base text in
 
1014
      conflicts.
 
1015
      (Aaron Bentley)
 
1016
 
 
1017
    * The config files are now read using ConfigObj, so '=' should be used as
 
1018
      a separator, not ':'.
 
1019
      (Aaron Bentley)
 
1020
 
 
1021
    * New 'bzr commit --strict' option refuses to commit if there are 
 
1022
      any unknown files in the tree.  To commit, make sure all files are 
 
1023
      either ignored, added, or deleted.  (Michael Ellerman)
 
1024
 
 
1025
    * The config directory is now ~/.bazaar, and there is a single file 
 
1026
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
 
1027
      (Robert Collins)
 
1028
 
 
1029
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
 
1030
      has been added that suppresses all output.
 
1031
 
 
1032
    * Improved zsh completion support in contrib/zsh, from Clint
 
1033
      Adams.
 
1034
 
 
1035
    * Builtin 'bzr annotate' command, by Martin Pool with improvements from 
 
1036
      Goffredo Baroncelli.
 
1037
    
 
1038
    * 'bzr check' now accepts -v for verbose reporting, and checks for
 
1039
      ghosts in the branch. (Robert Collins)
 
1040
 
 
1041
    * New command 're-sign' which will regenerate the gpg signature for 
 
1042
      a revision. (Robert Collins)
 
1043
 
 
1044
    * If you set check_signatures=require for a path in 
 
1045
      ~/.bazaar/branches.conf then bzr will invoke your
 
1046
      gpg_signing_command (defaults to gpg) and record a digital signature
 
1047
      of your commit. (Robert Collins)
 
1048
 
 
1049
    * New sftp transport, based on Paramiko.  (Robey Pointer)
 
1050
 
 
1051
    * 'bzr pull' now accepts '--clobber' which will discard local changes
 
1052
      and make this branch identical to the source branch. (Robert Collins)
 
1053
 
 
1054
    * Just give a quieter warning if a plugin can't be loaded, and 
 
1055
      put the details in .bzr.log.  (Martin Pool)
 
1056
 
 
1057
    * 'bzr branch' will now set the branch-name to the last component of the
 
1058
      output directory, if one was supplied.
 
1059
 
 
1060
    * If the option 'post_commit' is set to one (or more) python function
 
1061
      names (must be in the bzrlib namespace), then they will be invoked
 
1062
      after the commit has completed, with the branch and revision_id as
 
1063
      parameters. (Robert Collins)
 
1064
 
 
1065
    * Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
 
1066
 
 
1067
    * --merge-type weave is now supported for file contents.  Tree-shape
 
1068
      changes are still three-way based.  (Martin Pool, Aaron Bentley)
 
1069
 
 
1070
    * 'bzr check' allows the first revision on revision-history to have
 
1071
      parents - something that is expected for cheap checkouts, and occurs
 
1072
      when conversions from baz do not have all history.  (Robert Collins).
 
1073
 
 
1074
   * 'bzr merge' can now graft unrelated trees together, if your specify
 
1075
     0 as a base. (Aaron Bentley)
 
1076
 
 
1077
   * 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
 
1078
     (Aaron Bentley)
 
1079
 
 
1080
    * Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
 
1081
 
 
1082
   * 'bzr merge --reprocess' minimizes conflicts
 
1083
 
 
1084
  TESTING:
 
1085
 
 
1086
    * The 'bzr selftest --pattern' option for has been removed, now 
 
1087
      test specifiers on the command line can be simple strings, or 
 
1088
      regexps, or both. (Robert Collins)
 
1089
 
 
1090
    * Passing -v to selftest will now show the time each test took to 
 
1091
      complete, which will aid in analysing performance regressions and
 
1092
      related questions. (Robert Collins)
 
1093
 
 
1094
    * 'bzr selftest' runs all tests, even if one fails, unless '--one'
 
1095
      is given. (Martin Pool)
 
1096
 
 
1097
    * There is a new method for TestCaseInTempDir, assertFileEqual, which
 
1098
      will check that a given content is equal to the content of the named
 
1099
      file. (Robert Collins)
 
1100
 
 
1101
    * Fix test suite's habit of leaving many temporary log files in $TMPDIR.
 
1102
      (Martin Pool)
 
1103
 
 
1104
  INTERNALS:
 
1105
 
 
1106
    * New 'testament' command and concept for making gpg-signatures 
 
1107
      of revisions that are not tied to a particular internal
 
1108
      representation.  (Martin Pool).
 
1109
 
 
1110
    * Per-revision properties ('revprops') as key-value associated 
 
1111
      strings on each revision created when the revision is committed.
 
1112
      Intended mainly for the use of external tools.  (Martin Pool).
 
1113
 
 
1114
    * Config options have moved from bzrlib.osutils to bzrlib.config.
 
1115
      (Robert Collins)
 
1116
 
 
1117
    * Improved command line option definitions allowing explanations
 
1118
      for individual options, among other things.  Contributed by 
 
1119
      Magnus Therning.
 
1120
 
 
1121
    * Config options have moved from bzrlib.osutils to bzrlib.config.
 
1122
      Configuration is now done via the config.Config interface:
 
1123
      Depending on whether you have a Branch, a Location or no information
 
1124
      available, construct a *Config, and use its signature_checking,
 
1125
      username and user_email methods. (Robert Collins)
 
1126
 
 
1127
    * Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
 
1128
      they are made available for other plugins to use. You should not 
 
1129
      import other plugins during the __init__ of your plugin though, as 
 
1130
      no ordering is guaranteed, and the plugins directory is not on the
 
1131
      python path. (Robert Collins)
 
1132
 
 
1133
    * Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
 
1134
      no longer takes an inventory, rather it takes an option branch
 
1135
      parameter, and if None is given will open the branch at basedir 
 
1136
      implicitly. (Robert Collins)
 
1137
 
 
1138
    * Cleaner exception structure and error reporting.  Suggested by 
 
1139
      Scott James Remnant.  (Martin Pool)
 
1140
 
 
1141
    * Branch.remove has been moved to WorkingTree, which has also gained
 
1142
      lock_read, lock_write and unlock methods for convenience. (Robert
 
1143
      Collins)
 
1144
 
 
1145
    * Two decorators, needs_read_lock and needs_write_lock have been added
 
1146
      to the branch module. Use these to cause a function to run in a
 
1147
      read or write lock respectively. (Robert Collins)
 
1148
 
 
1149
    * Branch.open_containing now returns a tuple (Branch, relative-path),
 
1150
      which allows direct access to the common case of 'get me this file
 
1151
      from its branch'. (Robert Collins)
 
1152
 
 
1153
    * Transports can register using register_lazy_transport, and they 
 
1154
      will be loaded when first used.  (Martin Pool)
 
1155
 
 
1156
    * 'pull' has been factored out of the command as WorkingTree.pull().
 
1157
      A new option to WorkingTree.pull has been added, clobber, which will
 
1158
      ignore diverged history and pull anyway.
 
1159
      (Robert Collins)
 
1160
 
 
1161
    * config.Config has a 'get_user_option' call that accepts an option name.
 
1162
      This will be looked up in branches.conf and bazaar.conf as normal.
 
1163
      It is intended that this be used by plugins to support options - 
 
1164
      options of built in programs should have specific methods on the config.
 
1165
      (Robert Collins)
 
1166
 
 
1167
    * merge.merge_inner now has tempdir as an optional parameter. (Robert
 
1168
      Collins)
 
1169
 
 
1170
    * Tree.kind is not recorded at the top level of the hierarchy, as it was
 
1171
      missing on EmptyTree, leading to a bug with merge on EmptyTrees.
 
1172
      (Robert Collins)
 
1173
 
 
1174
    * WorkingTree.__del__ has been removed, it was non deterministic and not 
 
1175
      doing what it was intended to. See WorkingTree.__init__ for a comment
 
1176
      about future directions. (Robert Collins/Martin Pool)
 
1177
 
 
1178
    * bzrlib.transport.http has been modified so that only 404 urllib errors
 
1179
      are returned as NoSuchFile. Other exceptions will propogate as normal.
 
1180
      This allows debuging of actual errors. (Robert Collins)
 
1181
 
 
1182
    * bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
 
1183
      to apis like 'put', 'get' and 'has'. This is to provide consistent
 
1184
      behaviour - it operates on url's only. (Robert Collins)
 
1185
 
 
1186
    * Transports can register using register_lazy_transport, and they 
 
1187
      will be loaded when first used.  (Martin Pool)
 
1188
 
 
1189
    * 'merge_flex' no longer calls conflict_handler.finalize(), instead that
 
1190
      is called by merge_inner. This is so that the conflict count can be 
 
1191
      retrieved (and potentially manipulated) before returning to the caller
 
1192
      of merge_inner. Likewise 'merge' now returns the conflict count to the
 
1193
      caller. (Robert Collins)
 
1194
 
 
1195
    * 'revision.revision_graph can handle having only partial history for
 
1196
      a revision - that is no revisions in the graph with no parents.
 
1197
      (Robert Collins).
 
1198
 
 
1199
    * New builtins.branch_files uses the standard file_list rules to produce
 
1200
      a branch and a list of paths, relative to that branch (Aaron Bentley)
 
1201
 
 
1202
    * New TestCase.addCleanup facility.
 
1203
 
 
1204
    * New bzrlib.version_info tuple (similar to sys.version_info), which can
 
1205
      be used by programs importing bzrlib.
 
1206
 
 
1207
  BUG FIXES:
 
1208
 
 
1209
    * Better handling of branches in directories with non-ascii names. 
 
1210
      (Joel Rosdahl, Panagiotis Papadakos)
 
1211
 
 
1212
    * Upgrades of trees with no commits will not fail due to accessing
 
1213
      [-1] in the revision-history. (Andres Salomon)
 
1214
 
 
1215
 
 
1216
bzr 0.1.1 2005-10-12
 
1217
 
 
1218
  BUG FIXES:
 
1219
 
 
1220
    * Fix problem in pulling over http from machines that do not 
 
1221
      allow directories to be listed.
 
1222
 
 
1223
    * Avoid harmless warning about invalid hash cache after 
 
1224
      upgrading branch format.
 
1225
 
 
1226
  PERFORMANCE: 
 
1227
  
 
1228
    * Avoid some unnecessary http operations in branch and pull.
 
1229
 
 
1230
 
 
1231
bzr 0.1 2005-10-11
 
1232
 
 
1233
  NOTES:
 
1234
 
 
1235
    * 'bzr branch' over http initially gives a very high estimate
 
1236
      of completion time but it should fall as the first few 
 
1237
      revisions are pulled in.  branch is still slow on 
 
1238
      high-latency connections.
 
1239
 
 
1240
  BUG FIXES:
 
1241
  
 
1242
    * bzr-man.py has been updated to work again. Contributed by
 
1243
      Rob Weir.
 
1244
 
 
1245
    * Locking is now done with fcntl.lockf which works with NFS
 
1246
      file systems. Contributed by Harald Meland.
 
1247
 
 
1248
    * When a merge encounters a file that has been deleted on
 
1249
      one side and modified on the other, the old contents are
 
1250
      written out to foo.BASE and foo.SIDE, where SIDE is this
 
1251
      or OTHER. Contributed by Aaron Bentley.
 
1252
 
 
1253
    * Export was choosing incorrect file paths for the content of
 
1254
      the tarball, this has been fixed by Aaron Bentley.
 
1255
 
 
1256
    * Commit will no longer commit without a log message, an 
 
1257
      error is returned instead. Contributed by Jelmer Vernooij.
 
1258
 
 
1259
    * If you commit a specific file in a sub directory, any of its
 
1260
      parent directories that are added but not listed will be 
 
1261
      automatically included. Suggested by Michael Ellerman.
 
1262
 
 
1263
    * bzr commit and upgrade did not correctly record new revisions
 
1264
      for files with only a change to their executable status.
 
1265
      bzr will correct this when it encounters it. Fixed by
 
1266
      Robert Collins
 
1267
 
 
1268
    * HTTP tests now force off the use of http_proxy for the duration.
 
1269
      Contributed by Gustavo Niemeyer.
 
1270
 
 
1271
    * Fix problems in merging weave-based branches that have 
 
1272
      different partial views of history.
 
1273
 
 
1274
    * Symlink support: working with symlinks when not in the root of a 
 
1275
      bzr tree was broken, patch from Scott James Remnant.
 
1276
 
 
1277
  IMPROVEMENTS:
 
1278
 
 
1279
    * 'branch' now accepts a --basis parameter which will take advantage
 
1280
      of local history when making a new branch. This allows faster 
 
1281
      branching of remote branches. Contributed by Aaron Bentley.
 
1282
 
 
1283
    * New tree format based on weave files, called version 5.
 
1284
      Existing branches can be upgraded to this format using 
 
1285
      'bzr upgrade'.
 
1286
 
 
1287
    * Symlinks are now versionable. Initial patch by 
 
1288
      Erik Toubro Nielsen, updated to head by Robert Collins.
 
1289
 
 
1290
    * Executable bits are tracked on files. Patch from Gustavo
 
1291
      Niemeyer.
 
1292
 
 
1293
    * 'bzr status' now shows unknown files inside a selected directory.
 
1294
      Patch from Heikki Paajanen.
 
1295
 
 
1296
    * Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
 
1297
      and 'resolve' have needed added, which list and remove those 
 
1298
      merge conflicts respectively. A conflicted tree cannot be committed
 
1299
      in. Contributed by Aaron Bentley.
 
1300
 
 
1301
    * 'rm' is now an alias for 'remove'.
 
1302
 
 
1303
    * Stores now split out their content in a single byte prefixed hash,
 
1304
      dropping the density of files per directory by 256. Contributed by
 
1305
      Gustavo Niemeyer.
 
1306
 
 
1307
    * 'bzr diff -r branch:URL' will now perform a diff between two branches.
 
1308
      Contributed by Robert Collins.
 
1309
 
 
1310
    * 'bzr log' with the default formatter will show merged revisions,
 
1311
      indented to the right. Initial implementation contributed by Gustavo
 
1312
      Niemeyer, made incremental by Robert Collins.
 
1313
 
 
1314
 
 
1315
  INTERNALS:
 
1316
 
 
1317
    * Test case failures have the exception printed after the log 
 
1318
      for your viewing pleasure.
 
1319
 
 
1320
    * InventoryEntry is now an abstract base class, use one of the
 
1321
      concrete InventoryDirectory etc classes instead.
 
1322
 
 
1323
    * Branch raises an UnsupportedFormatError when it detects a 
 
1324
      bzr branch it cannot understand. This allows for precise
 
1325
      handling of such circumstances.
 
1326
 
 
1327
 
 
1328
  TESTING:
 
1329
 
 
1330
    * Removed testsweet module so that tests can be run after 
 
1331
      bzr installed by 'bzr selftest'.
 
1332
 
 
1333
    * 'bzr selftest' command-line arguments can now be partial ids
 
1334
      of tests to run, e.g. 'bzr selftest test_weave'
 
1335
 
 
1336
      
 
1337
bzr 0.0.9 2005-09-23
 
1338
 
 
1339
  BUG FIXES:
 
1340
 
 
1341
    * Fixed "branch -r" option.
 
1342
 
 
1343
    * Fix remote access to branches containing non-compressed history.
 
1344
      (Robert Collins).
 
1345
 
 
1346
    * Better reliability of http server tests.  (John Arbash-Meinel)
 
1347
 
 
1348
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
1349
   
 
1350
    * Various minor bug in windows support have been fixed, largely in the
 
1351
      test suite. Contributed by Alexander Belchenko.
 
1352
 
 
1353
  IMPROVEMENTS:
 
1354
 
 
1355
    * Status now accepts a -r argument to give status between chosen
 
1356
      revisions. Contributed by Heikki Paajanen.
 
1357
 
 
1358
    * Revision arguments no longer use +/-/= to control ranges, instead
 
1359
      there is a 'before' namespace, which limits the successive namespace.
 
1360
      For example '$ bzr log -r date:yesterday..before:date:today' will
 
1361
      select everything from yesterday and before today. Contributed by
 
1362
      Robey Pointer
 
1363
 
 
1364
    * There is now a bzr.bat file created by distutils when building on 
 
1365
      Windows. Contributed by Alexander Belchenko.
 
1366
 
 
1367
  INTERNALS:
 
1368
 
 
1369
    * Removed uuid() as it was unused.
 
1370
 
 
1371
    * Improved 'fetch' code for pulling revisions from one branch into
 
1372
      another (used by pull, merged, etc.)
 
1373
 
 
1374
 
 
1375
bzr 0.0.8 2005-09-20
 
1376
 
 
1377
  IMPROVEMENTS:
 
1378
 
 
1379
    * Adding a file whose parent directory is not versioned will
 
1380
      implicitly add the parent, and so on up to the root. This means
 
1381
      you should never need to explictly add a directory, they'll just
 
1382
      get added when you add a file in the directory.  Contributed by
 
1383
      Michael Ellerman.
 
1384
 
 
1385
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
 
1386
      Nir Soffer.
 
1387
 
 
1388
    * If you set BZR_EDITOR in the environment, it is checked in
 
1389
      preference to EDITOR and the config file for the interactive commit
 
1390
      editing program. Related to this is a bugfix where a missing program
 
1391
      set in EDITOR would cause editing to fail, now the fallback program
 
1392
      for the operating system is still tried.
 
1393
 
 
1394
    * Files that are not directories/symlinks/regular files will no longer
 
1395
      cause bzr to fail, it will just ignore them by default. You cannot add
 
1396
      them to the tree though - they are not versionable.
 
1397
 
 
1398
 
 
1399
  INTERNALS:
 
1400
 
 
1401
    * Refactor xml packing/unpacking.
 
1402
 
 
1403
  BUG FIXES: 
 
1404
 
 
1405
    * Fixed 'bzr mv' by Ollie Rutherfurd.
 
1406
 
 
1407
    * Fixed strange error when trying to access a nonexistent http
 
1408
      branch.
 
1409
 
 
1410
    * Make sure that the hashcache gets written out if it can't be
 
1411
      read.
 
1412
 
 
1413
 
 
1414
  PORTABILITY:
 
1415
 
 
1416
    * Various Windows fixes from Ollie Rutherfurd.
 
1417
 
 
1418
    * Quieten warnings about locking; patch from Matt Lavin.
 
1419
 
 
1420
 
 
1421
bzr-0.0.7 2005-09-02
 
1422
 
 
1423
  NEW FEATURES:
 
1424
 
 
1425
    * ``bzr shell-complete`` command contributed by Clint Adams to
 
1426
      help with intelligent shell completion.
 
1427
 
 
1428
    * New expert command ``bzr find-merge-base`` for debugging merges.
 
1429
 
 
1430
 
 
1431
  ENHANCEMENTS:
 
1432
 
 
1433
    * Much better merge support.
 
1434
 
 
1435
    * merge3 conflicts are now reported with markers like '<<<<<<<'
 
1436
      (seven characters) which is the same as CVS and pleases things
 
1437
      like emacs smerge.
 
1438
 
 
1439
 
 
1440
  BUG FIXES:
 
1441
 
 
1442
    * ``bzr upgrade`` no longer fails when trying to fix trees that
 
1443
      mention revisions that are not present.
 
1444
 
 
1445
    * Fixed bugs in listing plugins from ``bzr plugins``.
 
1446
 
 
1447
    * Fix case of $EDITOR containing options for the editor.
 
1448
 
 
1449
    * Fix log -r refusing to show the last revision.
 
1450
      (Patch from Goffredo Baroncelli.)
 
1451
 
 
1452
 
 
1453
  CHANGES:
 
1454
 
 
1455
    * ``bzr log --show-ids`` shows the revision ids of all parents.
 
1456
 
 
1457
    * Externally provided commands on your $BZRPATH no longer need
 
1458
      to recognize --bzr-usage to work properly, and can just handle
 
1459
      --help themselves.
 
1460
 
 
1461
 
 
1462
  LIBRARY:
 
1463
 
 
1464
    * Changed trace messages to go through the standard logging
 
1465
      framework, so that they can more easily be redirected by
 
1466
      libraries.
 
1467
 
 
1468
 
 
1469
 
 
1470
bzr-0.0.6 2005-08-18
 
1471
 
 
1472
  NEW FEATURES:
 
1473
 
 
1474
    * Python plugins, automatically loaded from the directories on
 
1475
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
 
1476
 
 
1477
    * New 'bzr mkdir' command.
 
1478
 
 
1479
    * Commit mesage is fetched from an editor if not given on the
 
1480
      command line; patch from Torsten Marek.
 
1481
 
 
1482
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
 
1483
      FOO.
 
1484
      
 
1485
    * ``bzr add`` with no arguments adds everything under the current directory.
 
1486
 
 
1487
    * ``bzr mv`` does move or rename depending on its arguments, like
 
1488
      the Unix command.
 
1489
 
 
1490
    * ``bzr missing`` command shows a summary of the differences
 
1491
      between two trees.  (Merged from John Arbash-Meinel.)
 
1492
 
 
1493
    * An email address for commits to a particular tree can be
 
1494
      specified by putting it into .bzr/email within a branch.  (Based
 
1495
      on a patch from Heikki Paajanen.)
 
1496
 
 
1497
 
 
1498
  ENHANCEMENTS:
 
1499
 
 
1500
    * Faster working tree operations.
 
1501
 
 
1502
 
 
1503
  CHANGES:
 
1504
 
 
1505
    * 3rd-party modules shipped with bzr are copied within the bzrlib
 
1506
      python package, so that they can be installed by the setup
 
1507
      script without clashing with anything already existing on the
 
1508
      system.  (Contributed by Gustavo Niemeyer.)
 
1509
 
 
1510
    * Moved plugins directory to bzrlib/, so that there's a standard
 
1511
      plugin directory which is not only installed with bzr itself but
 
1512
      is also available when using bzr from the development tree.
 
1513
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
 
1514
      standard plugins directory.
 
1515
 
 
1516
    * When exporting to a tarball with ``bzr export --format tgz``, put 
 
1517
      everything under a top directory rather than dumping it into the
 
1518
      current directory.   This can be overridden with the ``--root`` 
 
1519
      option.  Patch from William Dodé and John Meinel.
 
1520
 
 
1521
    * New ``bzr upgrade`` command to upgrade the format of a branch,
 
1522
      replacing ``bzr check --update``.
 
1523
 
 
1524
    * Files within store directories are no longer marked readonly on
 
1525
      disk.
 
1526
 
 
1527
    * Changed ``bzr log`` output to a more compact form suggested by
 
1528
      John A Meinel.  Old format is available with the ``--long`` or
 
1529
      ``-l`` option, patched by William Dodé.
 
1530
 
 
1531
    * By default the commit command refuses to record a revision with
 
1532
      no changes unless the ``--unchanged`` option is given.
 
1533
 
 
1534
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
1535
      line options must come before the command name because they 
 
1536
      affect what commands are available; all other options must come 
 
1537
      after the command name because their interpretation depends on
 
1538
      it.
 
1539
 
 
1540
    * ``branch`` and ``clone`` added as aliases for ``branch``.
 
1541
 
 
1542
    * Default log format is back to the long format; the compact one
 
1543
      is available with ``--short``.
 
1544
      
 
1545
      
 
1546
  BUG FIXES:
 
1547
  
 
1548
    * Fix bugs in committing only selected files or within a subdirectory.
 
1549
 
 
1550
 
 
1551
bzr-0.0.5  2005-06-15
 
1552
  
 
1553
  CHANGES:
 
1554
 
 
1555
    * ``bzr`` with no command now shows help rather than giving an
 
1556
      error.  Suggested by Michael Ellerman.
 
1557
 
 
1558
    * ``bzr status`` output format changed, because svn-style output
 
1559
      doesn't really match the model of bzr.  Now files are grouped by
 
1560
      status and can be shown with their IDs.  ``bzr status --all``
 
1561
      shows all versioned files and unknown files but not ignored files.
 
1562
 
 
1563
    * ``bzr log`` runs from most-recent to least-recent, the reverse
 
1564
      of the previous order.  The previous behaviour can be obtained
 
1565
      with the ``--forward`` option.
 
1566
        
 
1567
    * ``bzr inventory`` by default shows only filenames, and also ids
 
1568
      if ``--show-ids`` is given, in which case the id is the second
 
1569
      field.
 
1570
 
 
1571
 
 
1572
  ENHANCEMENTS:
 
1573
 
 
1574
    * New 'bzr whoami --email' option shows only the email component
 
1575
      of the user identification, from Jo Vermeulen.
 
1576
 
 
1577
    * New ``bzr ignore PATTERN`` command.
 
1578
 
 
1579
    * Nicer error message for broken pipe, interrupt and similar
 
1580
      conditions that don't indicate an internal error.
 
1581
 
 
1582
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
1583
 
 
1584
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
1585
      either read or write mode.
 
1586
 
 
1587
    * New option ``bzr log --show-ids`` shows revision and file ids.
 
1588
 
 
1589
    * New usage ``bzr log FILENAME`` shows only revisions that
 
1590
      affected that file.
 
1591
 
 
1592
    * Changed format for describing changes in ``bzr log -v``.
 
1593
 
 
1594
    * New option ``bzr commit --file`` to take a message from a file,
 
1595
      suggested by LarstiQ.
 
1596
 
 
1597
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
1598
      Oler.  File may be in a branch other than the working directory.
 
1599
 
 
1600
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
1601
      a filename.
 
1602
 
 
1603
    * Commands can now be defined by external programs or scripts
 
1604
      in a directory on $BZRPATH.
 
1605
 
 
1606
    * New "stat cache" avoids reading the contents of files if they 
 
1607
      haven't changed since the previous time.
 
1608
 
 
1609
    * If the Python interpreter is too old, try to find a better one
 
1610
      or give an error.  Based on a patch from Fredrik Lundh.
 
1611
 
 
1612
    * New optional parameter ``bzr info [BRANCH]``.
 
1613
 
 
1614
    * New form ``bzr commit SELECTED`` to commit only selected files.
 
1615
 
 
1616
    * New form ``bzr log -r FROM:TO`` shows changes in selected
 
1617
      range; contributed by John A Meinel.
 
1618
 
 
1619
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
1620
      options through to an external GNU diff.
 
1621
 
 
1622
    * New option ``bzr add --no-recurse`` to add a directory but not
 
1623
      their contents.
 
1624
 
 
1625
    * ``bzr --version`` now shows more information if bzr is being run
 
1626
      from a branch.
 
1627
 
 
1628
  
 
1629
  BUG FIXES:
 
1630
 
 
1631
    * Fixed diff format so that added and removed files will be
 
1632
      handled properly by patch.  Fix from Lalo Martins.
 
1633
 
 
1634
    * Various fixes for files whose names contain spaces or other
 
1635
      metacharacters.
 
1636
 
 
1637
 
 
1638
  TESTING:
 
1639
 
 
1640
    * Converted black-box test suites from Bourne shell into Python;
 
1641
      now run using ``./testbzr``.  Various structural improvements to
 
1642
      the tests.
 
1643
 
 
1644
    * testbzr by default runs the version of bzr found in the same
 
1645
      directory as the tests, or the one given as the first parameter.
 
1646
 
 
1647
    * testbzr also runs the internal tests, so the only command
 
1648
      required to check is just ``./testbzr``.
 
1649
 
 
1650
    * testbzr requires python2.4, but can be used to test bzr running
 
1651
      under a different version.
 
1652
 
 
1653
    * Tests added for many other changes in this release.
 
1654
 
 
1655
 
 
1656
  INTERNAL:
 
1657
 
 
1658
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
1659
 
 
1660
    * Refactor command functions into Command objects based on HCT by
 
1661
      Scott James Remnant.
 
1662
 
 
1663
    * Better help messages for many commands.
 
1664
 
 
1665
    * Expose bzrlib.open_tracefile() to start the tracefile; until
 
1666
      this is called trace messages are just discarded.
 
1667
 
 
1668
    * New internal function find_touching_revisions() and hidden
 
1669
      command touching-revisions trace the changes to a given file.
 
1670
 
 
1671
    * Simpler and faster compare_inventories() function.
 
1672
 
 
1673
    * bzrlib.open_tracefile() takes a tracefilename parameter.
 
1674
 
 
1675
    * New AtomicFile class.
 
1676
 
 
1677
    * New developer commands ``added``, ``modified``.
 
1678
 
 
1679
 
 
1680
  PORTABILITY:
 
1681
 
 
1682
    * Cope on Windows on python2.3 by using the weaker random seed.
 
1683
      2.4 is now only recommended.
 
1684
 
 
1685
 
 
1686
bzr-0.0.4  2005-04-22
 
1687
 
 
1688
  ENHANCEMENTS:
 
1689
 
 
1690
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
1691
      basic.  Patch from QuantumG.
 
1692
 
 
1693
    * More default ignore patterns.
 
1694
 
 
1695
    * New 'bzr log --verbose' shows a list of files changed in the
 
1696
      changeset.  Patch from Sebastian Cote.
 
1697
 
 
1698
    * Roll over ~/.bzr.log if it gets too large.
 
1699
 
 
1700
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
1701
      by Jason Diamon.
 
1702
 
 
1703
    * New 'bzr help commands' based on a patch from Denys Duchier.
 
1704
 
 
1705
 
 
1706
  CHANGES:
 
1707
 
 
1708
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
1709
      or $EMAIL.  All are decoded by the locale preferred encoding.
 
1710
      If none of these are present user@hostname is used.  The host's
 
1711
      fully-qualified name is not used because that tends to fail when
 
1712
      there are DNS problems.
 
1713
 
 
1714
    * New 'bzr whoami' command instead of username user-email.
 
1715
 
 
1716
 
 
1717
  BUG FIXES: 
 
1718
 
 
1719
    * Make commit safe for hardlinked bzr trees.
 
1720
 
 
1721
    * Some Unicode/locale fixes.
 
1722
 
 
1723
    * Partial workaround for difflib.unified_diff not handling
 
1724
      trailing newlines properly.
 
1725
 
 
1726
 
 
1727
  INTERNAL:
 
1728
 
 
1729
    * Allow docstrings for help to be in PEP0257 format.  Patch from
 
1730
      Matt Brubeck.
 
1731
 
 
1732
    * More tests in test.sh.
 
1733
 
 
1734
    * Write profile data to a temporary file not into working
 
1735
      directory and delete it when done.
 
1736
 
 
1737
    * Smaller .bzr.log with process ids.
 
1738
 
 
1739
 
 
1740
  PORTABILITY:
 
1741
 
 
1742
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
1743
      Bennetts.
 
1744
 
 
1745
    * Some improvements in handling paths on Windows, based on a patch
 
1746
      from QuantumG.
 
1747
 
 
1748
 
 
1749
bzr-0.0.3  2005-04-06
 
1750
 
 
1751
  ENHANCEMENTS:
 
1752
 
 
1753
    * New "directories" internal command lists versioned directories
 
1754
      in the tree.
 
1755
 
 
1756
    * Can now say "bzr commit --help".
 
1757
 
 
1758
    * New "rename" command to rename one file to a different name
 
1759
      and/or directory.
 
1760
 
 
1761
    * New "move" command to move one or more files into a different
 
1762
      directory.
 
1763
 
 
1764
    * New "renames" command lists files renamed since base revision.
 
1765
 
 
1766
    * New cat command contributed by janmar.
 
1767
 
 
1768
  CHANGES:
 
1769
 
 
1770
    * .bzr.log is placed in $HOME (not pwd) and is always written in
 
1771
      UTF-8.  (Probably not a completely good long-term solution, but
 
1772
      will do for now.)
 
1773
 
 
1774
  PORTABILITY:
 
1775
 
 
1776
    * Workaround for difflib bug in Python 2.3 that causes an
 
1777
      exception when comparing empty files.  Reported by Erik Toubro
 
1778
      Nielsen.
 
1779
 
 
1780
  INTERNAL:
 
1781
 
 
1782
    * Refactored inventory storage to insert a root entry at the top.
 
1783
 
 
1784
  TESTING:
 
1785
 
 
1786
    * Start of shell-based black-box testing in test.sh.
 
1787
 
 
1788
 
 
1789
bzr-0.0.2.1
 
1790
 
 
1791
  PORTABILITY:
 
1792
 
 
1793
    * Win32 fixes from Steve Brown.
 
1794
 
 
1795
 
 
1796
bzr-0.0.2  "black cube"  2005-03-31
 
1797
 
 
1798
  ENHANCEMENTS:
 
1799
 
 
1800
    * Default ignore list extended (see bzrlib/__init__.py).
 
1801
 
 
1802
    * Patterns in .bzrignore are now added to the default ignore list,
 
1803
      rather than replacing it.
 
1804
 
 
1805
    * Ignore list isn't reread for every file.
 
1806
 
 
1807
    * More help topics.
 
1808
 
 
1809
    * Reinstate the 'bzr check' command to check invariants of the
 
1810
      branch.
 
1811
 
 
1812
    * New 'ignored' command lists which files are ignored and why;
 
1813
      'deleted' lists files deleted in the current working tree.
 
1814
 
 
1815
    * Performance improvements.
 
1816
 
 
1817
    * New global --profile option.
 
1818
    
 
1819
    * Ignore patterns like './config.h' now correctly match files in
 
1820
      the root directory only.
 
1821
 
 
1822
 
 
1823
bzr-0.0.1  2005-03-26
 
1824
 
 
1825
  ENHANCEMENTS:
 
1826
 
 
1827
    * More information from info command.
 
1828
 
 
1829
    * Can now say "bzr help COMMAND" for more detailed help.
 
1830
 
 
1831
    * Less file flushing and faster performance when writing logs and
 
1832
      committing to stores.
 
1833
 
 
1834
    * More useful verbose output from some commands.
 
1835
 
 
1836
  BUG FIXES:
 
1837
 
 
1838
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
 
1839
 
 
1840
  PORTABILITY:
 
1841
 
 
1842
    * Include a subset of ElementTree-1.2.20040618 to make
 
1843
      installation easier.
 
1844
 
 
1845
    * Fix time.localtime call to work with Python 2.3 (the minimum
 
1846
      supported).
 
1847
 
 
1848
 
 
1849
bzr-0.0.0.69  2005-03-22
 
1850
 
 
1851
  ENHANCEMENTS:
 
1852
 
 
1853
    * First public release.
 
1854
 
 
1855
    * Storage of local versions: init, add, remove, rm, info, log,
 
1856
      diff, status, etc.