~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2006-04-18 04:38:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1670.
  • Revision ID: mbp@sourcefrog.net-20060418043844-dbaac5bdecaed3d1
Clear out BRANCH.TODO - most of them are done now

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
development head
 
1
bzr 0.8rc1  2006-04-14
 
2
 
 
3
  IMPROVEMENTS:
 
4
 
 
5
    * Sftp paths can now be relative, or local, according to the lftp
 
6
      convention. Paths now take the form:
 
7
      sftp://user:pass@host:port/~/relative/path
 
8
      or
 
9
      sftp://user:pass@host:port/absolute/path
 
10
 
 
11
    * The FTP transport now tries to reconnect after a temporary
 
12
      failure. ftp put is made atomic. (Matthieu Moy)
 
13
 
 
14
    * The FTP transport now maintains a pool of connections, and
 
15
      reuses them to avoid multiple connections to the same host (like
 
16
      sftp did). (Daniel Silverstone)
 
17
 
 
18
    * The bzr_man.py file has been removed. To create the man page now,
 
19
      use ./generate_docs.py man. The new program can also create other files.
 
20
      Run "python generate_docs.py --help" for usage information. (Hans
 
21
      Ulrich Niedermann & James Blackwell).
 
22
 
 
23
    * Man Page now gives full help (James Blackwell). Help also updated to 
 
24
      reflect user config now being stored in .bazaar (Hans Ulrich
 
25
      Niedermann)
 
26
 
 
27
    * It's now possible to set aliases in bazaar.conf (Erik Bågfors)
 
28
 
 
29
    * Pull now accepts a --revision argument (Erik Bågfors)
 
30
 
 
31
    * 'bzr re-sign' now allows multiple revisions to be supplied on the command
 
32
      line. You can now use the following command to sign all of your old commits.
 
33
        find .bzr/revision-store// -name my@email-* \
 
34
          | sed 's/.*\/\/..\///' \
 
35
          | xargs bzr re-sign
 
36
 
 
37
    * Upgrade can now upgrade over the network. (Robert Collins)
 
38
 
 
39
    * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
 
40
      behaviour.  By default they will cache history in the checkout, but
 
41
      with --lightweight almost all data is kept in the master branch.
 
42
      (Robert Collins)
 
43
 
 
44
    * 'revert' unversions newly-versioned files, instead of deleting them.
 
45
 
 
46
    * 'merge' is more robust.  Conflict messages have changed.
 
47
 
 
48
    * 'merge' and 'revert' no longer clobber existing files that end in '~' or
 
49
      '.moved'.
 
50
 
 
51
    * Default log format can be set in configuration and plugins can register
 
52
      their own formatters. (Erik Bågfors)
 
53
 
 
54
    * New 'reconcile' command will check branch consistency and repair indexes
 
55
      that can become out of sync in pre 0.8 formats. (Robert Collins,
 
56
      Daniel Silverstone)
 
57
 
 
58
    * New 'bzr init --format' and 'bzr upgrade --format' option to control 
 
59
      what storage format is created or produced.  (Robert Collins, 
 
60
      Martin Pool)
 
61
 
 
62
    * Add parent location to 'bzr info', if there is one.  (Olaf Conradi)
 
63
 
 
64
    * New developer commands 'weave-list' and 'weave-join'.  (Martin Pool)
 
65
 
 
66
    * New 'init-repository' command, plus support for repositories in 'init'
 
67
      and 'branch' (Aaron Bentley, Erik Bågfors, Robert Collins)
 
68
 
 
69
    * Improve output of 'info' command. Show all relevant locations related to
 
70
      working tree, branch and repository. Use kibibytes for binary quantities.
 
71
      Fix off-by-one error in missing revisions of working tree.  Make 'info'
 
72
      work on branches, repositories and remote locations.  (Olaf Conradi)
 
73
 
 
74
    * 'pull' and 'push' now normalise the revision history, so that any two
 
75
      branches with the same tip revision will have the same output from 'log'.
 
76
      (Robert Collins)
 
77
 
 
78
    * 'merge' accepts --remember option to store parent location, like 'push'
 
79
      and 'pull'. (Olaf Conradi)
 
80
 
 
81
  CHANGES:
 
82
 
 
83
    * Commit is now verbose by default, and shows changed filenames and the 
 
84
      new revision number.  (Robert Collins, Martin Pool)
 
85
 
 
86
    * Unify 'mv', 'move', 'rename'.  (#5379, Matthew Fuller)
 
87
 
 
88
    * 'bzr -h' shows help.  (#35940, Martin Pool, Ian Bicking)
 
89
 
 
90
    * Make 'pull' and 'push' remember location on failure using --remember.
 
91
      (Olaf Conradi)
 
92
 
 
93
  INTERNALS:
 
94
  
 
95
    * The internal storage of history, and logical branch identity have now
 
96
      been split into Branch, and Repository. The common locking and file 
 
97
      management routines are now in bzrlib.lockablefiles. 
 
98
      (Aaron Bentley, Robert Collins, Martin Pool)
 
99
 
 
100
    * Transports can now raise DependencyNotPresent if they need a library
 
101
      which is not installed, and then another implementation will be 
 
102
      tried.  (Martin Pool)
 
103
 
 
104
    * Remove obsolete (and no-op) `decode` parameter to `Transport.get`.  
 
105
      (Martin Pool)
 
106
 
 
107
    * Using Tree Transform for merge, revert, tree-building
 
108
 
 
109
    * WorkingTree.create, Branch.create, WorkingTree.create_standalone,
 
110
      Branch.initialize are now deprecated. Please see BzrDir.create_* for
 
111
      replacement API's. (Robert Collins)
 
112
 
 
113
    * New BzrDir class represents the .bzr control directory and manages
 
114
      formatting issues. (Robert Collins)
 
115
 
 
116
    * New repository.InterRepository class encapsulates Repository to 
 
117
      Repository actions and allows for clean selection of optimised code
 
118
      paths. (Robert Collins)
 
119
 
 
120
    * bzrlib.fetch.fetch and bzrlib.fetch.greedy_fetch are now deprecated,
 
121
      please use 'branch.fetch' or 'repository.fetch' depending on your
 
122
      needs. (Robert Collins)
 
123
 
 
124
    * deprecated methods now have a 'is_deprecated' flag on them that can
 
125
      be checked, if you need to determine whether a given callable is 
 
126
      deprecated at runtime. (Robert Collins)
 
127
 
 
128
    * Progress bars are now nested - see
 
129
      bzrlib.ui.ui_factory.nested_progress_bar. (Robert Collins, Robey Pointer)
 
130
 
 
131
    * New API call get_format_description() for each type of format.
 
132
      (Olaf Conradi)
 
133
 
 
134
    * Changed branch.set_parent() to accept None to remove parent.
 
135
      (Olaf Conradi)
 
136
 
 
137
    * Deprecated BzrError AmbiguousBase.  (Olaf Conradi)
 
138
 
 
139
  TESTING:
 
140
 
 
141
    * SFTP tests now shortcut the SSH negotiation, reducing test overhead
 
142
      for testing SFTP protocol support. (Robey Pointer)
 
143
 
 
144
    * Branch formats are now tested once per implementation (see bzrlib.
 
145
      tests.branch_implementations. This is analagous to the transport
 
146
      interface tests, and has been followed up with working tree,
 
147
      repository and BzrDir tests. (Robert Collins)
 
148
 
 
149
    * New test base class TestCaseWithTransport provides a transport aware
 
150
      test environment, useful for testing any transport-interface using
 
151
      code. The test suite option --transport controls the transport used
 
152
      by this class (when its not being used as part of implementation
 
153
      contract testing). (Robert Collins)
 
154
 
 
155
    * Close logging handler on disabling the test log. This will remove the
 
156
      handler from the internal list inside python's logging module,
 
157
      preventing shutdown from closing it twice.  (Olaf Conradi)
 
158
 
 
159
    * Move test case for uncommit to blackbox tests.  (Olaf Conradi)
 
160
 
 
161
bzr 0.7rc1 2006-01-09
 
162
 
 
163
  CHANGES:
 
164
 
 
165
    * .bzrignore is excluded from exports, on the grounds that it's a bzr 
 
166
      internal-use file and may not be wanted.  (Jamie Wilkinson)
 
167
 
 
168
    * The "bzr directories" command were removed in favor of the new
 
169
      --kind option to the "bzr inventory" command.  To list all 
 
170
      versioned directories, now use "bzr inventory --kind directory".  
 
171
      (Johan Rydberg)
 
172
 
 
173
    * Under Windows configuration directory is now %APPDATA%\bazaar\2.0
 
174
      by default. (John Arbash Meinel)
 
175
 
 
176
    * The parent of Bzr configuration directory can be set by BZR_HOME
 
177
      environment variable. Now the path for it is searched in BZR_HOME, then
 
178
      in HOME. Under Windows the order is: BZR_HOME, APPDATA (usually
 
179
      points to C:\Documents and Settings\User Name\Application Data), HOME.
 
180
      (John Arbash Meinel)
 
181
 
 
182
    * Plugins with the same name in different directories in the bzr plugin
 
183
      path are no longer loaded: only the first successfully loaded one is
 
184
      used. (Robert Collins)
 
185
 
 
186
    * Use systems' external ssh command to open connections if possible.  
 
187
      This gives better integration with user settings such as ProxyCommand.
 
188
      (James Henstridge)
 
189
 
 
190
    * Permissions on files underneath .bzr/ are inherited from the .bzr 
 
191
      directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
 
192
      will mean that future file will be created with group write permissions.
 
193
 
 
194
    * configure.in and config.guess are no longer in the builtin default 
 
195
      ignore list.
 
196
 
 
197
    * '.sw[nop]' pattern ignored, to ignore vim swap files for nameless
 
198
      files.  (John Arbash Meinel, Martin Pool)
 
199
 
 
200
  IMPROVEMENTS:
 
201
 
 
202
    * "bzr INIT dir" now initializes the specified directory, and creates 
 
203
      it if it does not exist.  (John Arbash Meinel)
 
204
 
 
205
    * New remerge command (Aaron Bentley)
 
206
 
 
207
    * Better zsh completion script.  (Steve Borho)
 
208
 
 
209
    * 'bzr diff' now returns 1 when there are changes in the working 
 
210
      tree. (Robert Collins)
 
211
 
 
212
    * 'bzr push' now exists and can push changes to a remote location. 
 
213
      This uses the transport infrastructure, and can store the remote
 
214
      location in the ~/.bazaar/branches.conf configuration file.
 
215
      (Robert Collins)
 
216
 
 
217
    * Test directories are only kept if the test fails and the user requests
 
218
      that they be kept.
 
219
 
 
220
    * Tweaks to short log printing
 
221
 
 
222
    * Added branch nicks, new nick command, printing them in log output. 
 
223
      (Aaron Bentley)
 
224
 
 
225
    * If $BZR_PDB is set, pop into the debugger when an uncaught exception 
 
226
      occurs.  (Martin Pool)
 
227
 
 
228
    * Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
 
229
      the same as Subversion.  (Martin Pool)
 
230
 
 
231
    * New ftp transport support (on ftplib), for ftp:// and aftp:// 
 
232
      URLs.  (Daniel Silverstone)
 
233
 
 
234
    * Commit editor temporary files now start with 'bzr_log.', to allow 
 
235
      text editors to match the file name and set up appropriate modes or 
 
236
      settings.  (Magnus Therning)
 
237
 
 
238
    * Improved performance when integrating changes from a remote weave.  
 
239
      (Goffredo Baroncelli)
 
240
 
 
241
    * Sftp will attempt to cache the connection, so it is more likely that
 
242
      a connection will be reused, rather than requiring multiple password
 
243
      requests.
 
244
 
 
245
    * bzr revno now takes an optional argument indicating the branch whose
 
246
      revno should be printed.  (Michael Ellerman)
 
247
 
 
248
    * bzr cat defaults to printing the last version of the file.  
 
249
      (#3632, Matthieu Moy)
 
250
 
 
251
    * New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof 
 
252
      profiler.  (Denys Duchier)
 
253
 
 
254
    * Faster commits by reading only the headers of affected weave files. 
 
255
      (Denys Duchier)
 
256
 
 
257
    * 'bzr add' now takes a --dry-run parameter which shows you what would be
 
258
      added, but doesn't actually add anything. (Michael Ellerman)
 
259
 
 
260
    * 'bzr add' now lists how many files were ignored per glob.  add --verbose
 
261
      lists the specific files.  (Aaron Bentley)
 
262
 
 
263
    * 'bzr missing' now supports displaying changes in diverged trees and can
 
264
      be limited to show what either end of the comparison is missing.
 
265
      (Aaron Bently, with a little prompting from Daniel Silverstone)
 
266
 
 
267
  BUG FIXES:
 
268
 
 
269
    * SFTP can walk up to the root path without index errors. (Robert Collins)
 
270
 
 
271
    * Fix bugs in running bzr with 'python -O'.  (Martin Pool)
 
272
 
 
273
    * Error when run with -OO
 
274
 
 
275
    * Fix bug in reporting http errors that don't have an http error code.
 
276
      (Martin Pool)
 
277
 
 
278
    * Handle more cases of pipe errors in display commands
 
279
 
 
280
    * Change status to 3 for all errors
 
281
 
 
282
    * Files that are added and unlinked before committing are completely
 
283
      ignored by diff and status
 
284
 
 
285
    * Stores with some compressed texts and some uncompressed texts are now
 
286
      able to be used. (John A Meinel)
 
287
 
 
288
    * Fix for bzr pull failing sometimes under windows
 
289
 
 
290
    * Fix for sftp transport under windows when using interactive auth
 
291
 
 
292
    * Show files which are both renamed and modified as such in 'bzr 
 
293
      status' output.  (#4503, Daniel Silverstone)
 
294
 
 
295
    * Make annotate cope better with revisions committed without a valid 
 
296
      email address.  (Marien Zwart)
 
297
 
 
298
    * Fix representation of tab characters in commit messages.  (Harald 
 
299
      Meland)
 
300
 
 
301
    * List of plugin directories in BZR_PLUGIN_PATH environment variable is
 
302
      now parsed properly under Windows. (Alexander Belchenko)
 
303
 
 
304
    * Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
305
 
 
306
    * Keep a cached copy of the basis inventory to speed up operations 
 
307
      that need to refer to it.  (Johan Rydberg, Martin Pool)
 
308
 
 
309
    * Fix bugs in bzr status display of non-ascii characters.  (Martin 
 
310
      Pool)
 
311
 
 
312
    * Remove Makefile.in from default ignore list.  (#6413, Tollef Fog 
 
313
      Heen, Martin Pool)
 
314
 
 
315
    * Fix failure in 'bzr added'.  (Nathan McCallum, Martin Pool)
 
316
 
 
317
  TESTING:
 
318
 
 
319
    * Fix selftest asking for passwords when there are no SFTP keys.  
 
320
      (Robey Pointer, Jelmer Vernooij) 
 
321
 
 
322
    * Fix selftest run with 'python -O'.  (Martin Pool)
 
323
 
 
324
    * Fix HTTP tests under Windows. (John Arbash Meinel)
 
325
 
 
326
    * Make tests work even if HOME is not set (Aaron Bentley)
 
327
 
 
328
    * Updated build_tree to use fixed line-endings for tests which read 
 
329
      the file cotents and compare. Make some tests use this to pass under
 
330
      Windows. (John Arbash Meinel)
 
331
 
 
332
    * Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
333
 
 
334
    * Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
335
      (John Arbash Meinel)
 
336
 
 
337
    * Use terminal width to align verbose test output.  (Martin Pool)
 
338
 
 
339
    * Blackbox tests are maintained within the bzrlib.tests.blackbox directory.
 
340
      If adding a new test script please add that to
 
341
      bzrlib.tests.blackbox.__init__. (Robert Collins)
 
342
 
 
343
    * Much better error message if one of the test suites can't be 
 
344
      imported.  (Martin Pool)
 
345
 
 
346
    * Make check now runs the test suite twice - once with the default locale,
 
347
      and once with all locales forced to C, to expose bugs. This is not 
 
348
      trivially done within python, so for now its only triggered by running
 
349
      Make check. Integrators and packagers who wish to check for full 
 
350
      platform support should run 'make check' to test the source.
 
351
      (Robert Collins)
 
352
 
 
353
    * Tests can now run TestSkipped if they can't execute for any reason.
 
354
      (Martin Pool) (NB: TestSkipped should only be raised for correctable
 
355
      reasons - see the wiki spec ImprovingBzrTestSuite).
 
356
 
 
357
    * Test sftp with relative, absolute-in-homedir and absolute-not-in-homedir
 
358
      paths for the transport tests. Introduce blackbox remote sftp tests that
 
359
      test the same permutations. (Robert Collins, Robey Pointer)
 
360
 
 
361
    * Transport implementation tests are now independent of the local file
 
362
      system, which allows tests for esoteric transports, and for features
 
363
      not available in the local file system. They also repeat for variations
 
364
      on the URL scheme that can introduce issues in the transport code,
 
365
      see bzrlib.transport.TransportTestProviderAdapter() for this.
 
366
      (Robert Collins).
 
367
 
 
368
    * TestCase.build_tree uses the transport interface to build trees, pass
 
369
      in a transport parameter to give it an existing connection.
 
370
      (Robert Collins).
 
371
 
 
372
  INTERNALS:
 
373
 
 
374
    * WorkingTree.pull has been split across Branch and WorkingTree,
 
375
      to allow Branch only pulls. (Robert Collins)
 
376
 
 
377
    * commands.display_command now returns the result of the decorated 
 
378
      function. (Robert Collins)
 
379
 
 
380
    * LocationConfig now has a set_user_option(key, value) call to save
 
381
      a setting in its matching location section (a new one is created
 
382
      if needed). (Robert Collins)
 
383
 
 
384
    * Branch has two new methods, get_push_location and set_push_location
 
385
      to respectively, get and set the push location. (Robert Collins)
 
386
 
 
387
    * commands.register_command now takes an optional flag to signal that
 
388
      the registrant is planning to decorate an existing command. When 
 
389
      given multiple plugins registering a command is not an error, and
 
390
      the original command class (whether built in or a plugin based one) is
 
391
      returned to the caller. There is a new error 'MustUseDecorated' for
 
392
      signalling when a wrapping command should switch to the original
 
393
      version. (Robert Collins)
 
394
 
 
395
    * Some option parsing errors will raise 'BzrOptionError', allowing 
 
396
      granular detection for decorating commands. (Robert Collins).
 
397
 
 
398
    * Branch.read_working_inventory has moved to
 
399
      WorkingTree.read_working_inventory. This necessitated changes to
 
400
      Branch.get_root_id, and a move of Branch.set_inventory to WorkingTree
 
401
      as well. To make it clear that a WorkingTree cannot always be obtained
 
402
      Branch.working_tree() will raise 'errors.NoWorkingTree' if one cannot
 
403
      be obtained. (Robert Collins)
 
404
 
 
405
    * All pending merges operations from Branch are now on WorkingTree.
 
406
      (Robert Collins)
 
407
 
 
408
    * The follow operations from Branch have moved to WorkingTree:
 
409
      add()
 
410
      commit()
 
411
      move()
 
412
      rename_one()
 
413
      unknowns()
 
414
      (Robert Collins)
 
415
 
 
416
    * bzrlib.add.smart_add_branch is now smart_add_tree. (Robert Collins)
 
417
 
 
418
    * New "rio" serialization format, similar to rfc-822. (Martin Pool)
 
419
 
 
420
    * Rename selftests to `bzrlib.tests.test_foo`.  (John A Meinel, Martin 
 
421
      Pool)
 
422
 
 
423
    * bzrlib.plugin.all_plugins has been changed from an attribute to a 
 
424
      query method. (Robert Collins)
 
425
 
 
426
    * New options to read only the table-of-contents of a weave.  
 
427
      (Denys Duchier)
 
428
 
 
429
    * Raise NoSuchFile when someone tries to add a non-existant file.
 
430
      (Michael Ellerman)
 
431
 
 
432
    * Simplify handling of DivergedBranches in cmd_pull().
 
433
      (Michael Ellerman)
 
434
                   
 
435
   
 
436
    * Branch.controlfile* logic has moved to lockablefiles.LockableFiles, which
 
437
      is exposed as Branch().control_files. Also this has been altered with the
 
438
      controlfile pre/suffix replaced by simple method names like 'get' and
 
439
      'put'. (Aaron Bentley, Robert Collins).
 
440
 
 
441
    * Deprecated functions and methods can now be marked as such using the 
 
442
      bzrlib.symbol_versioning module. Marked method have their docstring
 
443
      updated and will issue a DeprecationWarning using the warnings module
 
444
      when they are used. (Robert Collins)
 
445
 
 
446
    * bzrlib.osutils.safe_unicode now exists to provide parameter coercion
 
447
      for functions that need unicode strings. (Robert Collins)
 
448
 
 
449
bzr 0.6 2005-10-28
 
450
 
 
451
  IMPROVEMENTS:
 
452
  
 
453
    * pull now takes --verbose to show you what revisions are added or removed
 
454
      (John A Meinel)
 
455
 
 
456
    * merge now takes a --show-base option to include the base text in
 
457
      conflicts.
 
458
      (Aaron Bentley)
 
459
 
 
460
    * The config files are now read using ConfigObj, so '=' should be used as
 
461
      a separator, not ':'.
 
462
      (Aaron Bentley)
 
463
 
 
464
    * New 'bzr commit --strict' option refuses to commit if there are 
 
465
      any unknown files in the tree.  To commit, make sure all files are 
 
466
      either ignored, added, or deleted.  (Michael Ellerman)
 
467
 
 
468
    * The config directory is now ~/.bazaar, and there is a single file 
 
469
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
 
470
      (Robert Collins)
 
471
 
 
472
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
 
473
      has been added that suppresses all output.
 
474
 
 
475
    * Improved zsh completion support in contrib/zsh, from Clint
 
476
      Adams.
 
477
 
 
478
    * Builtin 'bzr annotate' command, by Martin Pool with improvements from 
 
479
      Goffredo Baroncelli.
 
480
    
 
481
    * 'bzr check' now accepts -v for verbose reporting, and checks for
 
482
      ghosts in the branch. (Robert Collins)
 
483
 
 
484
    * New command 're-sign' which will regenerate the gpg signature for 
 
485
      a revision. (Robert Collins)
 
486
 
 
487
    * If you set check_signatures=require for a path in 
 
488
      ~/.bazaar/branches.conf then bzr will invoke your
 
489
      gpg_signing_command (defaults to gpg) and record a digital signature
 
490
      of your commit. (Robert Collins)
 
491
 
 
492
    * New sftp transport, based on Paramiko.  (Robey Pointer)
 
493
 
 
494
    * 'bzr pull' now accepts '--clobber' which will discard local changes
 
495
      and make this branch identical to the source branch. (Robert Collins)
 
496
 
 
497
    * Just give a quieter warning if a plugin can't be loaded, and 
 
498
      put the details in .bzr.log.  (Martin Pool)
 
499
 
 
500
    * 'bzr branch' will now set the branch-name to the last component of the
 
501
      output directory, if one was supplied.
 
502
 
 
503
    * If the option 'post_commit' is set to one (or more) python function
 
504
      names (must be in the bzrlib namespace), then they will be invoked
 
505
      after the commit has completed, with the branch and revision_id as
 
506
      parameters. (Robert Collins)
 
507
 
 
508
    * Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
 
509
 
 
510
    * --merge-type weave is now supported for file contents.  Tree-shape
 
511
      changes are still three-way based.  (Martin Pool, Aaron Bentley)
 
512
 
 
513
    * 'bzr check' allows the first revision on revision-history to have
 
514
      parents - something that is expected for cheap checkouts, and occurs
 
515
      when conversions from baz do not have all history.  (Robert Collins).
 
516
 
 
517
   * 'bzr merge' can now graft unrelated trees together, if your specify
 
518
     0 as a base. (Aaron Bentley)
 
519
 
 
520
   * 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
 
521
     (Aaron Bentley)
 
522
 
 
523
    * Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
 
524
 
 
525
   * 'bzr merge --reprocess' minimizes conflicts
 
526
 
 
527
  TESTING:
 
528
 
 
529
    * The 'bzr selftest --pattern' option for has been removed, now 
 
530
      test specifiers on the command line can be simple strings, or 
 
531
      regexps, or both. (Robert Collins)
 
532
 
 
533
    * Passing -v to selftest will now show the time each test took to 
 
534
      complete, which will aid in analysing performance regressions and
 
535
      related questions. (Robert Collins)
 
536
 
 
537
    * 'bzr selftest' runs all tests, even if one fails, unless '--one'
 
538
      is given. (Martin Pool)
 
539
 
 
540
    * There is a new method for TestCaseInTempDir, assertFileEqual, which
 
541
      will check that a given content is equal to the content of the named
 
542
      file. (Robert Collins)
 
543
 
 
544
    * Fix test suite's habit of leaving many temporary log files in $TMPDIR.
 
545
      (Martin Pool)
 
546
 
 
547
  INTERNALS:
 
548
 
 
549
    * New 'testament' command and concept for making gpg-signatures 
 
550
      of revisions that are not tied to a particular internal
 
551
      representation.  (Martin Pool).
 
552
 
 
553
    * Per-revision properties ('revprops') as key-value associated 
 
554
      strings on each revision created when the revision is committed.
 
555
      Intended mainly for the use of external tools.  (Martin Pool).
 
556
 
 
557
    * Config options have moved from bzrlib.osutils to bzrlib.config.
 
558
      (Robert Collins)
 
559
 
 
560
    * Improved command line option definitions allowing explanations
 
561
      for individual options, among other things.  Contributed by 
 
562
      Magnus Therning.
 
563
 
 
564
    * Config options have moved from bzrlib.osutils to bzrlib.config.
 
565
      Configuration is now done via the config.Config interface:
 
566
      Depending on whether you have a Branch, a Location or no information
 
567
      available, construct a *Config, and use its signature_checking,
 
568
      username and user_email methods. (Robert Collins)
 
569
 
 
570
    * Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
 
571
      they are made available for other plugins to use. You should not 
 
572
      import other plugins during the __init__ of your plugin though, as 
 
573
      no ordering is guaranteed, and the plugins directory is not on the
 
574
      python path. (Robert Collins)
 
575
 
 
576
    * Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
 
577
      no longer takes an inventory, rather it takes an option branch
 
578
      parameter, and if None is given will open the branch at basedir 
 
579
      implicitly. (Robert Collins)
 
580
 
 
581
    * Cleaner exception structure and error reporting.  Suggested by 
 
582
      Scott James Remnant.  (Martin Pool)
 
583
 
 
584
    * Branch.remove has been moved to WorkingTree, which has also gained
 
585
      lock_read, lock_write and unlock methods for convenience. (Robert
 
586
      Collins)
 
587
 
 
588
    * Two decorators, needs_read_lock and needs_write_lock have been added
 
589
      to the branch module. Use these to cause a function to run in a
 
590
      read or write lock respectively. (Robert Collins)
 
591
 
 
592
    * Branch.open_containing now returns a tuple (Branch, relative-path),
 
593
      which allows direct access to the common case of 'get me this file
 
594
      from its branch'. (Robert Collins)
 
595
 
 
596
    * Transports can register using register_lazy_transport, and they 
 
597
      will be loaded when first used.  (Martin Pool)
 
598
 
 
599
    * 'pull' has been factored out of the command as WorkingTree.pull().
 
600
      A new option to WorkingTree.pull has been added, clobber, which will
 
601
      ignore diverged history and pull anyway.
 
602
      (Robert Collins)
 
603
 
 
604
    * config.Config has a 'get_user_option' call that accepts an option name.
 
605
      This will be looked up in branches.conf and bazaar.conf as normal.
 
606
      It is intended that this be used by plugins to support options - 
 
607
      options of built in programs should have specific methods on the config.
 
608
      (Robert Collins)
 
609
 
 
610
    * merge.merge_inner now has tempdir as an optional parameter. (Robert
 
611
      Collins)
 
612
 
 
613
    * Tree.kind is not recorded at the top level of the hierarchy, as it was
 
614
      missing on EmptyTree, leading to a bug with merge on EmptyTrees.
 
615
      (Robert Collins)
 
616
 
 
617
    * WorkingTree.__del__ has been removed, it was non deterministic and not 
 
618
      doing what it was intended to. See WorkingTree.__init__ for a comment
 
619
      about future directions. (Robert Collins/Martin Pool)
 
620
 
 
621
    * bzrlib.transport.http has been modified so that only 404 urllib errors
 
622
      are returned as NoSuchFile. Other exceptions will propogate as normal.
 
623
      This allows debuging of actual errors. (Robert Collins)
 
624
 
 
625
    * bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
 
626
      to apis like 'put', 'get' and 'has'. This is to provide consistent
 
627
      behaviour - it operates on url's only. (Robert Collins)
 
628
 
 
629
    * Transports can register using register_lazy_transport, and they 
 
630
      will be loaded when first used.  (Martin Pool)
 
631
 
 
632
    * 'merge_flex' no longer calls conflict_handler.finalize(), instead that
 
633
      is called by merge_inner. This is so that the conflict count can be 
 
634
      retrieved (and potentially manipulated) before returning to the caller
 
635
      of merge_inner. Likewise 'merge' now returns the conflict count to the
 
636
      caller. (Robert Collins)
 
637
 
 
638
    * 'revision.revision_graph can handle having only partial history for
 
639
      a revision - that is no revisions in the graph with no parents.
 
640
      (Robert Collins).
 
641
 
 
642
    * New builtins.branch_files uses the standard file_list rules to produce
 
643
      a branch and a list of paths, relative to that branch (Aaron Bentley)
 
644
 
 
645
    * New TestCase.addCleanup facility.
 
646
 
 
647
    * New bzrlib.version_info tuple (similar to sys.version_info), which can
 
648
      be used by programs importing bzrlib.
 
649
 
 
650
  BUG FIXES:
 
651
 
 
652
    * Better handling of branches in directories with non-ascii names. 
 
653
      (Joel Rosdahl, Panagiotis Papadakos)
 
654
 
 
655
    * Upgrades of trees with no commits will not fail due to accessing
 
656
      [-1] in the revision-history. (Andres Salomon)
 
657
 
 
658
 
 
659
bzr 0.1.1 2005-10-12
 
660
 
 
661
  BUG FIXES:
 
662
 
 
663
    * Fix problem in pulling over http from machines that do not 
 
664
      allow directories to be listed.
 
665
 
 
666
    * Avoid harmless warning about invalid hash cache after 
 
667
      upgrading branch format.
 
668
 
 
669
  PERFORMANCE: 
 
670
  
 
671
    * Avoid some unnecessary http operations in branch and pull.
 
672
 
 
673
 
 
674
bzr 0.1 2005-10-11
 
675
 
 
676
  NOTES:
 
677
 
 
678
    * 'bzr branch' over http initially gives a very high estimate
 
679
      of completion time but it should fall as the first few 
 
680
      revisions are pulled in.  branch is still slow on 
 
681
      high-latency connections.
 
682
 
 
683
  BUG FIXES:
 
684
  
 
685
    * bzr-man.py has been updated to work again. Contributed by
 
686
      Rob Weir.
 
687
 
 
688
    * Locking is now done with fcntl.lockf which works with NFS
 
689
      file systems. Contributed by Harald Meland.
 
690
 
 
691
    * When a merge encounters a file that has been deleted on
 
692
      one side and modified on the other, the old contents are
 
693
      written out to foo.BASE and foo.SIDE, where SIDE is this
 
694
      or OTHER. Contributed by Aaron Bentley.
 
695
 
 
696
    * Export was choosing incorrect file paths for the content of
 
697
      the tarball, this has been fixed by Aaron Bentley.
 
698
 
 
699
    * Commit will no longer commit without a log message, an 
 
700
      error is returned instead. Contributed by Jelmer Vernooij.
 
701
 
 
702
    * If you commit a specific file in a sub directory, any of its
 
703
      parent directories that are added but not listed will be 
 
704
      automatically included. Suggested by Michael Ellerman.
 
705
 
 
706
    * bzr commit and upgrade did not correctly record new revisions
 
707
      for files with only a change to their executable status.
 
708
      bzr will correct this when it encounters it. Fixed by
 
709
      Robert Collins
 
710
 
 
711
    * HTTP tests now force off the use of http_proxy for the duration.
 
712
      Contributed by Gustavo Niemeyer.
 
713
 
 
714
    * Fix problems in merging weave-based branches that have 
 
715
      different partial views of history.
 
716
 
 
717
    * Symlink support: working with symlinks when not in the root of a 
 
718
      bzr tree was broken, patch from Scott James Remnant.
 
719
 
 
720
 
 
721
  IMPROVEMENTS:
 
722
 
 
723
    * 'branch' now accepts a --basis parameter which will take advantage
 
724
      of local history when making a new branch. This allows faster 
 
725
      branching of remote branches. Contributed by Aaron Bentley.
 
726
 
 
727
    * New tree format based on weave files, called version 5.
 
728
      Existing branches can be upgraded to this format using 
 
729
      'bzr upgrade'.
 
730
 
 
731
    * Symlinks are now versionable. Initial patch by 
 
732
      Erik Toubro Nielsen, updated to head by Robert Collins.
 
733
 
 
734
    * Executable bits are tracked on files. Patch from Gustavo
 
735
      Niemeyer.
 
736
 
 
737
    * 'bzr status' now shows unknown files inside a selected directory.
 
738
      Patch from Heikki Paajanen.
 
739
 
 
740
    * Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
 
741
      and 'resolve' have needed added, which list and remove those 
 
742
      merge conflicts respectively. A conflicted tree cannot be committed
 
743
      in. Contributed by Aaron Bentley.
 
744
 
 
745
    * 'rm' is now an alias for 'remove'.
 
746
 
 
747
    * Stores now split out their content in a single byte prefixed hash,
 
748
      dropping the density of files per directory by 256. Contributed by
 
749
      Gustavo Niemeyer.
 
750
 
 
751
    * 'bzr diff -r branch:URL' will now perform a diff between two branches.
 
752
      Contributed by Robert Collins.
 
753
 
 
754
    * 'bzr log' with the default formatter will show merged revisions,
 
755
      indented to the right. Initial implementation contributed by Gustavo
 
756
      Niemeyer, made incremental by Robert Collins.
 
757
 
 
758
 
 
759
  INTERNALS:
 
760
 
 
761
    * Test case failures have the exception printed after the log 
 
762
      for your viewing pleasure.
 
763
 
 
764
    * InventoryEntry is now an abstract base class, use one of the
 
765
      concrete InventoryDirectory etc classes instead.
 
766
 
 
767
    * Branch raises an UnsupportedFormatError when it detects a 
 
768
      bzr branch it cannot understand. This allows for precise
 
769
      handling of such circumstances.
 
770
 
 
771
 
 
772
  TESTING:
 
773
 
 
774
    * Removed testsweet module so that tests can be run after 
 
775
      bzr installed by 'bzr selftest'.
 
776
 
 
777
    * 'bzr selftest' command-line arguments can now be partial ids
 
778
      of tests to run, e.g. 'bzr selftest test_weave'
 
779
 
 
780
      
 
781
bzr 0.0.9 2005-09-23
 
782
 
 
783
  BUG FIXES:
 
784
 
 
785
    * Fixed "branch -r" option.
 
786
 
 
787
    * Fix remote access to branches containing non-compressed history.
 
788
      (Robert Collins).
 
789
 
 
790
    * Better reliability of http server tests.  (John Arbash-Meinel)
 
791
 
 
792
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
793
   
 
794
    * Various minor bug in windows support have been fixed, largely in the
 
795
      test suite. Contributed by Alexander Belchenko.
 
796
 
 
797
  IMPROVEMENTS:
 
798
 
 
799
    * Status now accepts a -r argument to give status between chosen
 
800
      revisions. Contributed by Heikki Paajanen.
 
801
 
 
802
    * Revision arguments no longer use +/-/= to control ranges, instead
 
803
      there is a 'before' namespace, which limits the successive namespace.
 
804
      For example '$ bzr log -r date:yesterday..before:date:today' will
 
805
      select everything from yesterday and before today. Contributed by
 
806
      Robey Pointer
 
807
 
 
808
    * There is now a bzr.bat file created by distutils when building on 
 
809
      Windows. Contributed by Alexander Belchenko.
 
810
 
 
811
  INTERNALS:
 
812
 
 
813
    * Removed uuid() as it was unused.
 
814
 
 
815
    * Improved 'fetch' code for pulling revisions from one branch into
 
816
      another (used by pull, merged, etc.)
 
817
 
 
818
 
 
819
bzr 0.0.8 2005-09-20
 
820
 
 
821
  IMPROVEMENTS:
 
822
 
 
823
    * Adding a file whose parent directory is not versioned will
 
824
      implicitly add the parent, and so on up to the root. This means
 
825
      you should never need to explictly add a directory, they'll just
 
826
      get added when you add a file in the directory.  Contributed by
 
827
      Michael Ellerman.
 
828
 
 
829
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
 
830
      Nir Soffer.
 
831
 
 
832
    * If you set BZR_EDITOR in the environment, it is checked in
 
833
      preference to EDITOR and the config file for the interactive commit
 
834
      editing program. Related to this is a bugfix where a missing program
 
835
      set in EDITOR would cause editing to fail, now the fallback program
 
836
      for the operating system is still tried.
 
837
 
 
838
    * Files that are not directories/symlinks/regular files will no longer
 
839
      cause bzr to fail, it will just ignore them by default. You cannot add
 
840
      them to the tree though - they are not versionable.
 
841
 
2
842
 
3
843
  INTERNALS:
4
844
 
5
845
    * Refactor xml packing/unpacking.
6
846
 
 
847
  BUG FIXES: 
 
848
 
 
849
    * Fixed 'bzr mv' by Ollie Rutherfurd.
 
850
 
 
851
    * Fixed strange error when trying to access a nonexistent http
 
852
      branch.
 
853
 
 
854
    * Make sure that the hashcache gets written out if it can't be
 
855
      read.
 
856
 
 
857
 
 
858
  PORTABILITY:
 
859
 
 
860
    * Various Windows fixes from Ollie Rutherfurd.
 
861
 
 
862
    * Quieten warnings about locking; patch from Matt Lavin.
 
863
 
7
864
 
8
865
bzr-0.0.7 2005-09-02
9
866