/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: Aaron Bentley
  • Date: 2005-09-21 23:13:57 UTC
  • mto: (1185.1.37)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: aaron.bentley@utoronto.ca-20050921231357-2b7d37869d81c975
Fixed branch -r

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bzr 0.0.8 2005-09-20
 
2
 
 
3
  IMPROVEMENTS:
 
4
 
 
5
    * Adding a file whose parent directory is not versioned will
 
6
      implicitly add the parent, and so on up to the root. This means
 
7
      you should never need to explictly add a directory, they'll just
 
8
      get added when you add a file in the directory.  Contributed by
 
9
      Michael Ellerman.
 
10
 
 
11
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
 
12
      Nir Soffer.
 
13
 
 
14
    * If you set BZR_EDITOR in the environment, it is checked in
 
15
      preference to EDITOR and the config file for the interactive commit
 
16
      editing program. Related to this is a bugfix where a missing program
 
17
      set in EDITOR would cause editing to fail, now the fallback program
 
18
      for the operating system is still tried.
 
19
 
 
20
    * Files that are not directories/symlinks/regular files will no longer
 
21
      cause bzr to fail, it will just ignore them by default. You cannot add
 
22
      them to the tree though - they are not versionable.
 
23
 
 
24
 
 
25
  INTERNALS:
 
26
 
 
27
    * Refactor xml packing/unpacking.
 
28
 
 
29
 
 
30
  BUG FIXES: 
 
31
 
 
32
    * Fixed 'bzr mv' by Ollie Rutherfurd.
 
33
 
 
34
    * Fixed strange error when trying to access a nonexistent http
 
35
      branch.
 
36
 
 
37
    * Make sure that the hashcache gets written out if it can't be
 
38
      read.
 
39
 
 
40
 
 
41
  PORTABILITY:
 
42
 
 
43
    * Various Windows fixes from Ollie Rutherfurd.
 
44
 
 
45
    * Quieten warnings about locking; patch from Matt Lavin.
 
46
 
 
47
 
 
48
bzr-0.0.7 2005-09-02
 
49
 
 
50
  NEW FEATURES:
 
51
 
 
52
    * ``bzr shell-complete`` command contributed by Clint Adams to
 
53
      help with intelligent shell completion.
 
54
 
 
55
    * New expert command ``bzr find-merge-base`` for debugging merges.
 
56
 
 
57
 
 
58
  ENHANCEMENTS:
 
59
 
 
60
    * Much better merge support.
 
61
 
 
62
    * merge3 conflicts are now reported with markers like '<<<<<<<'
 
63
      (seven characters) which is the same as CVS and pleases things
 
64
      like emacs smerge.
 
65
 
 
66
 
 
67
  BUG FIXES:
 
68
 
 
69
    * ``bzr upgrade`` no longer fails when trying to fix trees that
 
70
      mention revisions that are not present.
 
71
 
 
72
    * Fixed bugs in listing plugins from ``bzr plugins``.
 
73
 
 
74
    * Fix case of $EDITOR containing options for the editor.
 
75
 
 
76
    * Fix log -r refusing to show the last revision.
 
77
      (Patch from Goffredo Baroncelli.)
 
78
 
 
79
 
 
80
  CHANGES:
 
81
 
 
82
    * ``bzr log --show-ids`` shows the revision ids of all parents.
 
83
 
 
84
    * Externally provided commands on your $BZRPATH no longer need
 
85
      to recognize --bzr-usage to work properly, and can just handle
 
86
      --help themselves.
 
87
 
 
88
 
 
89
  LIBRARY:
 
90
 
 
91
    * Changed trace messages to go through the standard logging
 
92
      framework, so that they can more easily be redirected by
 
93
      libraries.
 
94
 
 
95
 
 
96
 
 
97
bzr-0.0.6 2005-08-18
 
98
 
 
99
  NEW FEATURES:
 
100
 
 
101
    * Python plugins, automatically loaded from the directories on
 
102
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
 
103
 
 
104
    * New 'bzr mkdir' command.
 
105
 
 
106
    * Commit mesage is fetched from an editor if not given on the
 
107
      command line; patch from Torsten Marek.
 
108
 
 
109
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
 
110
      FOO.
 
111
      
 
112
    * ``bzr add`` with no arguments adds everything under the current directory.
 
113
 
 
114
    * ``bzr mv`` does move or rename depending on its arguments, like
 
115
      the Unix command.
 
116
 
 
117
    * ``bzr missing`` command shows a summary of the differences
 
118
      between two trees.  (Merged from John Arbash-Meinel.)
 
119
 
 
120
    * An email address for commits to a particular tree can be
 
121
      specified by putting it into .bzr/email within a branch.  (Based
 
122
      on a patch from Heikki Paajanen.)
 
123
 
 
124
 
 
125
  ENHANCEMENTS:
 
126
 
 
127
    * Faster working tree operations.
 
128
 
 
129
 
 
130
  CHANGES:
 
131
 
 
132
    * 3rd-party modules shipped with bzr are copied within the bzrlib
 
133
      python package, so that they can be installed by the setup
 
134
      script without clashing with anything already existing on the
 
135
      system.  (Contributed by Gustavo Niemeyer.)
 
136
 
 
137
    * Moved plugins directory to bzrlib/, so that there's a standard
 
138
      plugin directory which is not only installed with bzr itself but
 
139
      is also available when using bzr from the development tree.
 
140
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
 
141
      standard plugins directory.
 
142
 
 
143
    * When exporting to a tarball with ``bzr export --format tgz``, put 
 
144
      everything under a top directory rather than dumping it into the
 
145
      current directory.   This can be overridden with the ``--root`` 
 
146
      option.  Patch from William Dodé and John Meinel.
 
147
 
 
148
    * New ``bzr upgrade`` command to upgrade the format of a branch,
 
149
      replacing ``bzr check --update``.
 
150
 
 
151
    * Files within store directories are no longer marked readonly on
 
152
      disk.
 
153
 
 
154
    * Changed ``bzr log`` output to a more compact form suggested by
 
155
      John A Meinel.  Old format is available with the ``--long`` or
 
156
      ``-l`` option, patched by William Dodé.
 
157
 
 
158
    * By default the commit command refuses to record a revision with
 
159
      no changes unless the ``--unchanged`` option is given.
 
160
 
 
161
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
162
      line options must come before the command name because they 
 
163
      affect what commands are available; all other options must come 
 
164
      after the command name because their interpretation depends on
 
165
      it.
 
166
 
 
167
    * ``branch`` and ``clone`` added as aliases for ``branch``.
 
168
 
 
169
    * Default log format is back to the long format; the compact one
 
170
      is available with ``--short``.
 
171
      
 
172
      
 
173
  BUG FIXES:
 
174
  
 
175
    * Fix bugs in committing only selected files or within a subdirectory.
 
176
 
 
177
 
 
178
bzr-0.0.5  2005-06-15
 
179
  
 
180
  CHANGES:
 
181
 
 
182
    * ``bzr`` with no command now shows help rather than giving an
 
183
      error.  Suggested by Michael Ellerman.
 
184
 
 
185
    * ``bzr status`` output format changed, because svn-style output
 
186
      doesn't really match the model of bzr.  Now files are grouped by
 
187
      status and can be shown with their IDs.  ``bzr status --all``
 
188
      shows all versioned files and unknown files but not ignored files.
 
189
 
 
190
    * ``bzr log`` runs from most-recent to least-recent, the reverse
 
191
      of the previous order.  The previous behaviour can be obtained
 
192
      with the ``--forward`` option.
 
193
        
 
194
    * ``bzr inventory`` by default shows only filenames, and also ids
 
195
      if ``--show-ids`` is given, in which case the id is the second
 
196
      field.
 
197
 
 
198
 
 
199
  ENHANCEMENTS:
 
200
 
 
201
    * New 'bzr whoami --email' option shows only the email component
 
202
      of the user identification, from Jo Vermeulen.
 
203
 
 
204
    * New ``bzr ignore PATTERN`` command.
 
205
 
 
206
    * Nicer error message for broken pipe, interrupt and similar
 
207
      conditions that don't indicate an internal error.
 
208
 
 
209
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
210
 
 
211
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
212
      either read or write mode.
 
213
 
 
214
    * New option ``bzr log --show-ids`` shows revision and file ids.
 
215
 
 
216
    * New usage ``bzr log FILENAME`` shows only revisions that
 
217
      affected that file.
 
218
 
 
219
    * Changed format for describing changes in ``bzr log -v``.
 
220
 
 
221
    * New option ``bzr commit --file`` to take a message from a file,
 
222
      suggested by LarstiQ.
 
223
 
 
224
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
225
      Oler.  File may be in a branch other than the working directory.
 
226
 
 
227
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
228
      a filename.
 
229
 
 
230
    * Commands can now be defined by external programs or scripts
 
231
      in a directory on $BZRPATH.
 
232
 
 
233
    * New "stat cache" avoids reading the contents of files if they 
 
234
      haven't changed since the previous time.
 
235
 
 
236
    * If the Python interpreter is too old, try to find a better one
 
237
      or give an error.  Based on a patch from Fredrik Lundh.
 
238
 
 
239
    * New optional parameter ``bzr info [BRANCH]``.
 
240
 
 
241
    * New form ``bzr commit SELECTED`` to commit only selected files.
 
242
 
 
243
    * New form ``bzr log -r FROM:TO`` shows changes in selected
 
244
      range; contributed by John A Meinel.
 
245
 
 
246
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
247
      options through to an external GNU diff.
 
248
 
 
249
    * New option ``bzr add --no-recurse`` to add a directory but not
 
250
      their contents.
 
251
 
 
252
    * ``bzr --version`` now shows more information if bzr is being run
 
253
      from a branch.
 
254
 
 
255
  
 
256
  BUG FIXES:
 
257
 
 
258
    * Fixed diff format so that added and removed files will be
 
259
      handled properly by patch.  Fix from Lalo Martins.
 
260
 
 
261
    * Various fixes for files whose names contain spaces or other
 
262
      metacharacters.
 
263
 
 
264
 
 
265
  TESTING:
 
266
 
 
267
    * Converted black-box test suites from Bourne shell into Python;
 
268
      now run using ``./testbzr``.  Various structural improvements to
 
269
      the tests.
 
270
 
 
271
    * testbzr by default runs the version of bzr found in the same
 
272
      directory as the tests, or the one given as the first parameter.
 
273
 
 
274
    * testbzr also runs the internal tests, so the only command
 
275
      required to check is just ``./testbzr``.
 
276
 
 
277
    * testbzr requires python2.4, but can be used to test bzr running
 
278
      under a different version.
 
279
 
 
280
    * Tests added for many other changes in this release.
 
281
 
 
282
 
 
283
  INTERNAL:
 
284
 
 
285
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
286
 
 
287
    * Refactor command functions into Command objects based on HCT by
 
288
      Scott James Remnant.
 
289
 
 
290
    * Better help messages for many commands.
 
291
 
 
292
    * Expose bzrlib.open_tracefile() to start the tracefile; until
 
293
      this is called trace messages are just discarded.
 
294
 
 
295
    * New internal function find_touching_revisions() and hidden
 
296
      command touching-revisions trace the changes to a given file.
 
297
 
 
298
    * Simpler and faster compare_inventories() function.
 
299
 
 
300
    * bzrlib.open_tracefile() takes a tracefilename parameter.
 
301
 
 
302
    * New AtomicFile class.
 
303
 
 
304
    * New developer commands ``added``, ``modified``.
 
305
 
 
306
 
 
307
  PORTABILITY:
 
308
 
 
309
    * Cope on Windows on python2.3 by using the weaker random seed.
 
310
      2.4 is now only recommended.
 
311
 
 
312
 
 
313
bzr-0.0.4  2005-04-22
 
314
 
 
315
  ENHANCEMENTS:
 
316
 
 
317
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
318
      basic.  Patch from QuantumG.
 
319
 
 
320
    * More default ignore patterns.
 
321
 
 
322
    * New 'bzr log --verbose' shows a list of files changed in the
 
323
      changeset.  Patch from Sebastian Cote.
 
324
 
 
325
    * Roll over ~/.bzr.log if it gets too large.
 
326
 
 
327
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
328
      by Jason Diamon.
 
329
 
 
330
    * New 'bzr help commands' based on a patch from Denys Duchier.
 
331
 
 
332
 
 
333
  CHANGES:
 
334
 
 
335
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
336
      or $EMAIL.  All are decoded by the locale preferred encoding.
 
337
      If none of these are present user@hostname is used.  The host's
 
338
      fully-qualified name is not used because that tends to fail when
 
339
      there are DNS problems.
 
340
 
 
341
    * New 'bzr whoami' command instead of username user-email.
 
342
 
 
343
 
 
344
  BUG FIXES: 
 
345
 
 
346
    * Make commit safe for hardlinked bzr trees.
 
347
 
 
348
    * Some Unicode/locale fixes.
 
349
 
 
350
    * Partial workaround for difflib.unified_diff not handling
 
351
      trailing newlines properly.
 
352
 
 
353
 
 
354
  INTERNAL:
 
355
 
 
356
    * Allow docstrings for help to be in PEP0257 format.  Patch from
 
357
      Matt Brubeck.
 
358
 
 
359
    * More tests in test.sh.
 
360
 
 
361
    * Write profile data to a temporary file not into working
 
362
      directory and delete it when done.
 
363
 
 
364
    * Smaller .bzr.log with process ids.
 
365
 
 
366
 
 
367
  PORTABILITY:
 
368
 
 
369
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
370
      Bennetts.
 
371
 
 
372
    * Some improvements in handling paths on Windows, based on a patch
 
373
      from QuantumG.
 
374
 
 
375
 
 
376
bzr-0.0.3  2005-04-06
 
377
 
 
378
  ENHANCEMENTS:
 
379
 
 
380
    * New "directories" internal command lists versioned directories
 
381
      in the tree.
 
382
 
 
383
    * Can now say "bzr commit --help".
 
384
 
 
385
    * New "rename" command to rename one file to a different name
 
386
      and/or directory.
 
387
 
 
388
    * New "move" command to move one or more files into a different
 
389
      directory.
 
390
 
 
391
    * New "renames" command lists files renamed since base revision.
 
392
 
 
393
    * New cat command contributed by janmar.
 
394
 
 
395
  CHANGES:
 
396
 
 
397
    * .bzr.log is placed in $HOME (not pwd) and is always written in
 
398
      UTF-8.  (Probably not a completely good long-term solution, but
 
399
      will do for now.)
 
400
 
 
401
  PORTABILITY:
 
402
 
 
403
    * Workaround for difflib bug in Python 2.3 that causes an
 
404
      exception when comparing empty files.  Reported by Erik Toubro
 
405
      Nielsen.
 
406
 
 
407
  INTERNAL:
 
408
 
 
409
    * Refactored inventory storage to insert a root entry at the top.
 
410
 
 
411
  TESTING:
 
412
 
 
413
    * Start of shell-based black-box testing in test.sh.
 
414
 
 
415
 
 
416
bzr-0.0.2.1
 
417
 
 
418
  PORTABILITY:
 
419
 
 
420
    * Win32 fixes from Steve Brown.
 
421
 
 
422
 
 
423
bzr-0.0.2  "black cube"  2005-03-31
 
424
 
 
425
  ENHANCEMENTS:
 
426
 
 
427
    * Default ignore list extended (see bzrlib/__init__.py).
 
428
 
 
429
    * Patterns in .bzrignore are now added to the default ignore list,
 
430
      rather than replacing it.
 
431
 
 
432
    * Ignore list isn't reread for every file.
 
433
 
 
434
    * More help topics.
 
435
 
 
436
    * Reinstate the 'bzr check' command to check invariants of the
 
437
      branch.
 
438
 
 
439
    * New 'ignored' command lists which files are ignored and why;
 
440
      'deleted' lists files deleted in the current working tree.
 
441
 
 
442
    * Performance improvements.
 
443
 
 
444
    * New global --profile option.
 
445
    
 
446
    * Ignore patterns like './config.h' now correctly match files in
 
447
      the root directory only.
 
448
 
 
449
 
 
450
bzr-0.0.1  2005-03-26
 
451
 
 
452
  ENHANCEMENTS:
 
453
 
 
454
    * More information from info command.
 
455
 
 
456
    * Can now say "bzr help COMMAND" for more detailed help.
 
457
 
 
458
    * Less file flushing and faster performance when writing logs and
 
459
      committing to stores.
 
460
 
 
461
    * More useful verbose output from some commands.
 
462
 
 
463
  BUG FIXES:
 
464
 
 
465
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
 
466
 
 
467
  PORTABILITY:
 
468
 
 
469
    * Include a subset of ElementTree-1.2.20040618 to make
 
470
      installation easier.
 
471
 
 
472
    * Fix time.localtime call to work with Python 2.3 (the minimum
 
473
      supported).
 
474
 
 
475
 
 
476
bzr-0.0.0.69  2005-03-22
 
477
 
 
478
  ENHANCEMENTS:
 
479
 
 
480
    * First public release.
 
481
 
 
482
    * Storage of local versions: init, add, remove, rm, info, log,
 
483
      diff, status, etc.