~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-05-03 07:48:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050503074854-adb6f9d6382e27a9
- sketchy experiments in bash and zsh completion

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DEVELOPMENT HEAD
2
 
 
3
 
  BUG FIXES:
4
 
  
5
 
    * bzr-man.py has been updated to work again. Contributed by
6
 
      Rob Weir.
7
 
 
8
 
    * Locking is now done with fcntl.lockf which works with NFS
9
 
      file systems. Contributed by Harald Meland.
10
 
 
11
 
  IMPROVEMENTS:
12
 
 
13
 
    * 'branch' now accepts a --basis parameter which will take advantage
14
 
      of local history when making a new branch. This allows faster 
15
 
      branching of remote branches. Contributed by Aaron Bentley.
16
 
 
17
 
    * New tree format based on weave files, called version 5.
18
 
      Existing branches can be upgraded to this format using 
19
 
      'bzr upgrade'.
20
 
 
21
 
  INTERNALS:
22
 
 
23
 
    * Test case failures have the exception printed after the log for your
24
 
      viewing pleasure.
25
 
 
26
 
      
27
 
bzr 0.0.9 2005-09-23
28
 
 
29
 
  BUG FIXES:
30
 
 
31
 
    * Fixed "branch -r" option.
32
 
 
33
 
    * Fix remote access to branches containing non-compressed history.
34
 
      (Robert Collins).
35
 
 
36
 
    * Better reliability of http server tests.  (John Arbash-Meinel)
37
 
 
38
 
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
39
 
   
40
 
    * Various minor bug in windows support have been fixed, largely in the
41
 
      test suite. Contributed by Alexander Belchenko.
42
 
 
43
 
  IMPROVEMENTS:
44
 
 
45
 
    * Status now accepts a -r argument to give status between chosen
46
 
      revisions. Contributed by Heikki Paajanen.
47
 
 
48
 
    * Revision arguments no longer use +/-/= to control ranges, instead
49
 
      there is a 'before' namespace, which limits the successive namespace.
50
 
      For example '$ bzr log -r date:yesterday..before:date:today' will
51
 
      select everything from yesterday and before today. Contributed by
52
 
      Robey Pointer
53
 
 
54
 
    * There is now a bzr.bat file created by distutils when building on 
55
 
      Windows. Contributed by Alexander Belchenko.
56
 
 
57
 
  INTERNALS:
58
 
 
59
 
    * Removed uuid() as it was unused.
60
 
 
61
 
    * Improved 'fetch' code for pulling revisions from one branch into
62
 
      another (used by pull, merged, etc.)
63
 
 
64
 
 
65
 
bzr 0.0.8 2005-09-20
66
 
 
67
 
  IMPROVEMENTS:
68
 
 
69
 
    * Adding a file whose parent directory is not versioned will
70
 
      implicitly add the parent, and so on up to the root. This means
71
 
      you should never need to explictly add a directory, they'll just
72
 
      get added when you add a file in the directory.  Contributed by
73
 
      Michael Ellerman.
74
 
 
75
 
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
76
 
      Nir Soffer.
77
 
 
78
 
    * If you set BZR_EDITOR in the environment, it is checked in
79
 
      preference to EDITOR and the config file for the interactive commit
80
 
      editing program. Related to this is a bugfix where a missing program
81
 
      set in EDITOR would cause editing to fail, now the fallback program
82
 
      for the operating system is still tried.
83
 
 
84
 
    * Files that are not directories/symlinks/regular files will no longer
85
 
      cause bzr to fail, it will just ignore them by default. You cannot add
86
 
      them to the tree though - they are not versionable.
87
 
 
88
 
 
89
 
  INTERNALS:
90
 
 
91
 
    * Refactor xml packing/unpacking.
92
 
 
93
 
  BUG FIXES: 
94
 
 
95
 
    * Fixed 'bzr mv' by Ollie Rutherfurd.
96
 
 
97
 
    * Fixed strange error when trying to access a nonexistent http
98
 
      branch.
99
 
 
100
 
    * Make sure that the hashcache gets written out if it can't be
101
 
      read.
102
 
 
103
 
 
104
 
  PORTABILITY:
105
 
 
106
 
    * Various Windows fixes from Ollie Rutherfurd.
107
 
 
108
 
    * Quieten warnings about locking; patch from Matt Lavin.
109
 
 
110
 
 
111
 
bzr-0.0.7 2005-09-02
112
 
 
113
 
  NEW FEATURES:
114
 
 
115
 
    * ``bzr shell-complete`` command contributed by Clint Adams to
116
 
      help with intelligent shell completion.
117
 
 
118
 
    * New expert command ``bzr find-merge-base`` for debugging merges.
119
 
 
120
 
 
121
 
  ENHANCEMENTS:
122
 
 
123
 
    * Much better merge support.
124
 
 
125
 
    * merge3 conflicts are now reported with markers like '<<<<<<<'
126
 
      (seven characters) which is the same as CVS and pleases things
127
 
      like emacs smerge.
128
 
 
129
 
 
130
 
  BUG FIXES:
131
 
 
132
 
    * ``bzr upgrade`` no longer fails when trying to fix trees that
133
 
      mention revisions that are not present.
134
 
 
135
 
    * Fixed bugs in listing plugins from ``bzr plugins``.
136
 
 
137
 
    * Fix case of $EDITOR containing options for the editor.
138
 
 
139
 
    * Fix log -r refusing to show the last revision.
140
 
      (Patch from Goffredo Baroncelli.)
141
 
 
142
 
 
143
 
  CHANGES:
144
 
 
145
 
    * ``bzr log --show-ids`` shows the revision ids of all parents.
146
 
 
147
 
    * Externally provided commands on your $BZRPATH no longer need
148
 
      to recognize --bzr-usage to work properly, and can just handle
149
 
      --help themselves.
150
 
 
151
 
 
152
 
  LIBRARY:
153
 
 
154
 
    * Changed trace messages to go through the standard logging
155
 
      framework, so that they can more easily be redirected by
156
 
      libraries.
157
 
 
158
 
 
159
 
 
160
 
bzr-0.0.6 2005-08-18
161
 
 
162
 
  NEW FEATURES:
163
 
 
164
 
    * Python plugins, automatically loaded from the directories on
165
 
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
166
 
 
167
 
    * New 'bzr mkdir' command.
168
 
 
169
 
    * Commit mesage is fetched from an editor if not given on the
170
 
      command line; patch from Torsten Marek.
171
 
 
172
 
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
173
 
      FOO.
174
 
      
175
 
    * ``bzr add`` with no arguments adds everything under the current directory.
176
 
 
177
 
    * ``bzr mv`` does move or rename depending on its arguments, like
178
 
      the Unix command.
179
 
 
180
 
    * ``bzr missing`` command shows a summary of the differences
181
 
      between two trees.  (Merged from John Arbash-Meinel.)
182
 
 
183
 
    * An email address for commits to a particular tree can be
184
 
      specified by putting it into .bzr/email within a branch.  (Based
185
 
      on a patch from Heikki Paajanen.)
186
 
 
187
 
 
188
 
  ENHANCEMENTS:
189
 
 
190
 
    * Faster working tree operations.
191
 
 
192
 
 
193
 
  CHANGES:
194
 
 
195
 
    * 3rd-party modules shipped with bzr are copied within the bzrlib
196
 
      python package, so that they can be installed by the setup
197
 
      script without clashing with anything already existing on the
198
 
      system.  (Contributed by Gustavo Niemeyer.)
199
 
 
200
 
    * Moved plugins directory to bzrlib/, so that there's a standard
201
 
      plugin directory which is not only installed with bzr itself but
202
 
      is also available when using bzr from the development tree.
203
 
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
204
 
      standard plugins directory.
205
 
 
206
 
    * When exporting to a tarball with ``bzr export --format tgz``, put 
207
 
      everything under a top directory rather than dumping it into the
208
 
      current directory.   This can be overridden with the ``--root`` 
209
 
      option.  Patch from William Dodé and John Meinel.
210
 
 
211
 
    * New ``bzr upgrade`` command to upgrade the format of a branch,
212
 
      replacing ``bzr check --update``.
213
 
 
214
 
    * Files within store directories are no longer marked readonly on
215
 
      disk.
216
 
 
217
 
    * Changed ``bzr log`` output to a more compact form suggested by
218
 
      John A Meinel.  Old format is available with the ``--long`` or
219
 
      ``-l`` option, patched by William Dodé.
220
 
 
221
 
    * By default the commit command refuses to record a revision with
222
 
      no changes unless the ``--unchanged`` option is given.
223
 
 
224
 
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
225
 
      line options must come before the command name because they 
226
 
      affect what commands are available; all other options must come 
227
 
      after the command name because their interpretation depends on
228
 
      it.
229
 
 
230
 
    * ``branch`` and ``clone`` added as aliases for ``branch``.
231
 
 
232
 
    * Default log format is back to the long format; the compact one
233
 
      is available with ``--short``.
234
 
      
235
 
      
236
 
  BUG FIXES:
237
 
  
238
 
    * Fix bugs in committing only selected files or within a subdirectory.
239
 
 
240
 
 
241
 
bzr-0.0.5  2005-06-15
242
 
  
243
 
  CHANGES:
244
 
 
245
 
    * ``bzr`` with no command now shows help rather than giving an
246
 
      error.  Suggested by Michael Ellerman.
247
 
 
248
 
    * ``bzr status`` output format changed, because svn-style output
249
 
      doesn't really match the model of bzr.  Now files are grouped by
250
 
      status and can be shown with their IDs.  ``bzr status --all``
251
 
      shows all versioned files and unknown files but not ignored files.
252
 
 
253
 
    * ``bzr log`` runs from most-recent to least-recent, the reverse
254
 
      of the previous order.  The previous behaviour can be obtained
255
 
      with the ``--forward`` option.
256
 
        
257
 
    * ``bzr inventory`` by default shows only filenames, and also ids
258
 
      if ``--show-ids`` is given, in which case the id is the second
259
 
      field.
260
 
 
 
1
bzr-0.0.5  NOT RELEASED YET
261
2
 
262
3
  ENHANCEMENTS:
263
4
 
264
5
    * New 'bzr whoami --email' option shows only the email component
265
6
      of the user identification, from Jo Vermeulen.
266
7
 
267
 
    * New ``bzr ignore PATTERN`` command.
 
8
    * New 'bzr ignore PATTERN' command.
268
9
 
269
10
    * Nicer error message for broken pipe, interrupt and similar
270
11
      conditions that don't indicate an internal error.
271
12
 
272
 
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
273
 
 
274
 
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
275
 
      either read or write mode.
276
 
 
277
 
    * New option ``bzr log --show-ids`` shows revision and file ids.
278
 
 
279
 
    * New usage ``bzr log FILENAME`` shows only revisions that
280
 
      affected that file.
281
 
 
282
 
    * Changed format for describing changes in ``bzr log -v``.
283
 
 
284
 
    * New option ``bzr commit --file`` to take a message from a file,
285
 
      suggested by LarstiQ.
286
 
 
287
 
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
288
 
      Oler.  File may be in a branch other than the working directory.
289
 
 
290
 
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
291
 
      a filename.
292
 
 
293
 
    * Commands can now be defined by external programs or scripts
294
 
      in a directory on $BZRPATH.
295
 
 
296
 
    * New "stat cache" avoids reading the contents of files if they 
297
 
      haven't changed since the previous time.
298
 
 
299
 
    * If the Python interpreter is too old, try to find a better one
300
 
      or give an error.  Based on a patch from Fredrik Lundh.
301
 
 
302
 
    * New optional parameter ``bzr info [BRANCH]``.
303
 
 
304
 
    * New form ``bzr commit SELECTED`` to commit only selected files.
305
 
 
306
 
    * New form ``bzr log -r FROM:TO`` shows changes in selected
307
 
      range; contributed by John A Meinel.
308
 
 
309
 
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
310
 
      options through to an external GNU diff.
311
 
 
312
 
    * New option ``bzr add --no-recurse`` to add a directory but not
313
 
      their contents.
314
 
 
315
 
    * ``bzr --version`` now shows more information if bzr is being run
316
 
      from a branch.
317
 
 
318
 
  
319
 
  BUG FIXES:
320
 
 
321
 
    * Fixed diff format so that added and removed files will be
322
 
      handled properly by patch.  Fix from Lalo Martins.
323
 
 
324
 
    * Various fixes for files whose names contain spaces or other
325
 
      metacharacters.
326
 
 
327
 
 
328
13
  TESTING:
329
14
 
330
 
    * Converted black-box test suites from Bourne shell into Python;
331
 
      now run using ``./testbzr``.  Various structural improvements to
332
 
      the tests.
333
 
 
334
 
    * testbzr by default runs the version of bzr found in the same
335
 
      directory as the tests, or the one given as the first parameter.
336
 
 
337
 
    * testbzr also runs the internal tests, so the only command
338
 
      required to check is just ``./testbzr``.
339
 
 
340
 
    * testbzr requires python2.4, but can be used to test bzr running
341
 
      under a different version.
342
 
 
343
 
    * Tests added for many other changes in this release.
344
 
 
 
15
    * Converted black-box test suites from Bourne shell into Python.
 
16
      Various structural improvements to the tests.
345
17
 
346
18
  INTERNAL:
347
19
 
348
20
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
349
21
 
350
 
    * Refactor command functions into Command objects based on HCT by
351
 
      Scott James Remnant.
 
22
    * Refactor command functions into Command objects based on
 
23
      mango-sorbet by Scott James Remnant.
352
24
 
353
25
    * Better help messages for many commands.
354
26
 
355
 
    * Expose bzrlib.open_tracefile() to start the tracefile; until
356
 
      this is called trace messages are just discarded.
357
 
 
358
 
    * New internal function find_touching_revisions() and hidden
359
 
      command touching-revisions trace the changes to a given file.
360
 
 
361
 
    * Simpler and faster compare_inventories() function.
362
 
 
363
 
    * bzrlib.open_tracefile() takes a tracefilename parameter.
364
 
 
365
 
    * New AtomicFile class.
366
 
 
367
 
    * New developer commands ``added``, ``modified``.
368
 
 
369
 
 
370
 
  PORTABILITY:
371
 
 
372
 
    * Cope on Windows on python2.3 by using the weaker random seed.
373
 
      2.4 is now only recommended.
374
 
 
375
27
 
376
28
bzr-0.0.4  2005-04-22
377
29