~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-08-12 15:41:44 UTC
  • Revision ID: mbp@sourcefrog.net-20050812154144-bc98570a78b8f633
- merge in deferred revfile work

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr-0.0.2  "black cube"  NOT RELEASED YET
 
1
DEVELOPMENT HEAD
 
2
 
 
3
  NEW FEATURES:
 
4
 
 
5
    * Python plugins, automatically loaded from the directories on
 
6
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
 
7
 
 
8
    * New 'bzr mkdir' command.
 
9
 
 
10
    * Commit mesage is fetched from an editor if not given on the
 
11
      command line; patch from Torsten Marek.
 
12
 
 
13
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
 
14
      FOO.
 
15
      
 
16
    * ``bzr add`` with no arguments adds everything under the current directory.
 
17
 
 
18
    * ``bzr mv`` does move or rename depending on its arguments, like
 
19
      the Unix command.
 
20
 
 
21
    * ``bzr missing`` command shows a summary of the differences
 
22
      between two trees.  (Merged from John Arbash-Meinel.)
 
23
 
 
24
    
 
25
  ENHANCEMENTS:
 
26
 
 
27
    * Faster working tree operations.
 
28
 
 
29
 
 
30
  CHANGES:
 
31
 
 
32
    * When exporting to a tarball with ``bzr export --format tgz``, put 
 
33
      everything under a top directory rather than dumping it into the
 
34
      current directory.   This can be overridden with the ``--root`` 
 
35
      option.  Patch from William Dodé and John Meinel.
 
36
 
 
37
    * New ``bzr upgrade`` command to upgrade the format of a branch,
 
38
      replacing ``bzr check --update``.
 
39
 
 
40
    * Files within store directories are no longer marked readonly on
 
41
      disk.
 
42
 
 
43
    * Changed ``bzr log`` output to a more compact form suggested by
 
44
      John A Meinel.  Old format is available with the ``--long`` or
 
45
      ``-l`` option, patched by William Dodé.
 
46
 
 
47
    * By default the commit command refuses to record a revision with
 
48
      no changes unless the ``--unchanged`` option is given.
 
49
 
 
50
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
51
      line options must come before the command name because they 
 
52
      affect what commands are available; all other options must come 
 
53
      after the command name because their interpretation depends on
 
54
      it.
 
55
 
 
56
    * ``branch`` and ``clone`` added as aliases for ``branch``.
 
57
 
 
58
    * Default log format is back to the long format; the compact one
 
59
      is available with ``--short``.
 
60
      
 
61
      
 
62
  BUG FIXES:
 
63
  
 
64
    * Fix bugs in committing only selected files or within a subdirectory.
 
65
 
 
66
 
 
67
bzr-0.0.5  2005-06-15
 
68
  
 
69
  CHANGES:
 
70
 
 
71
    * ``bzr`` with no command now shows help rather than giving an
 
72
      error.  Suggested by Michael Ellerman.
 
73
 
 
74
    * ``bzr status`` output format changed, because svn-style output
 
75
      doesn't really match the model of bzr.  Now files are grouped by
 
76
      status and can be shown with their IDs.  ``bzr status --all``
 
77
      shows all versioned files and unknown files but not ignored files.
 
78
 
 
79
    * ``bzr log`` runs from most-recent to least-recent, the reverse
 
80
      of the previous order.  The previous behaviour can be obtained
 
81
      with the ``--forward`` option.
 
82
        
 
83
    * ``bzr inventory`` by default shows only filenames, and also ids
 
84
      if ``--show-ids`` is given, in which case the id is the second
 
85
      field.
 
86
 
 
87
 
 
88
  ENHANCEMENTS:
 
89
 
 
90
    * New 'bzr whoami --email' option shows only the email component
 
91
      of the user identification, from Jo Vermeulen.
 
92
 
 
93
    * New ``bzr ignore PATTERN`` command.
 
94
 
 
95
    * Nicer error message for broken pipe, interrupt and similar
 
96
      conditions that don't indicate an internal error.
 
97
 
 
98
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
99
 
 
100
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
101
      either read or write mode.
 
102
 
 
103
    * New option ``bzr log --show-ids`` shows revision and file ids.
 
104
 
 
105
    * New usage ``bzr log FILENAME`` shows only revisions that
 
106
      affected that file.
 
107
 
 
108
    * Changed format for describing changes in ``bzr log -v``.
 
109
 
 
110
    * New option ``bzr commit --file`` to take a message from a file,
 
111
      suggested by LarstiQ.
 
112
 
 
113
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
114
      Oler.  File may be in a branch other than the working directory.
 
115
 
 
116
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
117
      a filename.
 
118
 
 
119
    * Commands can now be defined by external programs or scripts
 
120
      in a directory on $BZRPATH.
 
121
 
 
122
    * New "stat cache" avoids reading the contents of files if they 
 
123
      haven't changed since the previous time.
 
124
 
 
125
    * If the Python interpreter is too old, try to find a better one
 
126
      or give an error.  Based on a patch from Fredrik Lundh.
 
127
 
 
128
    * New optional parameter ``bzr info [BRANCH]``.
 
129
 
 
130
    * New form ``bzr commit SELECTED`` to commit only selected files.
 
131
 
 
132
    * New form ``bzr log -r FROM:TO`` shows changes in selected
 
133
      range; contributed by John A Meinel.
 
134
 
 
135
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
136
      options through to an external GNU diff.
 
137
 
 
138
    * New option ``bzr add --no-recurse`` to add a directory but not
 
139
      their contents.
 
140
 
 
141
    * ``bzr --version`` now shows more information if bzr is being run
 
142
      from a branch.
 
143
 
 
144
  
 
145
  BUG FIXES:
 
146
 
 
147
    * Fixed diff format so that added and removed files will be
 
148
      handled properly by patch.  Fix from Lalo Martins.
 
149
 
 
150
    * Various fixes for files whose names contain spaces or other
 
151
      metacharacters.
 
152
 
 
153
 
 
154
  TESTING:
 
155
 
 
156
    * Converted black-box test suites from Bourne shell into Python;
 
157
      now run using ``./testbzr``.  Various structural improvements to
 
158
      the tests.
 
159
 
 
160
    * testbzr by default runs the version of bzr found in the same
 
161
      directory as the tests, or the one given as the first parameter.
 
162
 
 
163
    * testbzr also runs the internal tests, so the only command
 
164
      required to check is just ``./testbzr``.
 
165
 
 
166
    * testbzr requires python2.4, but can be used to test bzr running
 
167
      under a different version.
 
168
 
 
169
    * Tests added for many other changes in this release.
 
170
 
 
171
 
 
172
  INTERNAL:
 
173
 
 
174
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
175
 
 
176
    * Refactor command functions into Command objects based on HCT by
 
177
      Scott James Remnant.
 
178
 
 
179
    * Better help messages for many commands.
 
180
 
 
181
    * Expose bzrlib.open_tracefile() to start the tracefile; until
 
182
      this is called trace messages are just discarded.
 
183
 
 
184
    * New internal function find_touching_revisions() and hidden
 
185
      command touching-revisions trace the changes to a given file.
 
186
 
 
187
    * Simpler and faster compare_inventories() function.
 
188
 
 
189
    * bzrlib.open_tracefile() takes a tracefilename parameter.
 
190
 
 
191
    * New AtomicFile class.
 
192
 
 
193
    * New developer commands ``added``, ``modified``.
 
194
 
 
195
 
 
196
  PORTABILITY:
 
197
 
 
198
    * Cope on Windows on python2.3 by using the weaker random seed.
 
199
      2.4 is now only recommended.
 
200
 
 
201
 
 
202
bzr-0.0.4  2005-04-22
 
203
 
 
204
  ENHANCEMENTS:
 
205
 
 
206
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
207
      basic.  Patch from QuantumG.
 
208
 
 
209
    * More default ignore patterns.
 
210
 
 
211
    * New 'bzr log --verbose' shows a list of files changed in the
 
212
      changeset.  Patch from Sebastian Cote.
 
213
 
 
214
    * Roll over ~/.bzr.log if it gets too large.
 
215
 
 
216
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
217
      by Jason Diamon.
 
218
 
 
219
    * New 'bzr help commands' based on a patch from Denys Duchier.
 
220
 
 
221
 
 
222
  CHANGES:
 
223
 
 
224
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
225
      or $EMAIL.  All are decoded by the locale preferred encoding.
 
226
      If none of these are present user@hostname is used.  The host's
 
227
      fully-qualified name is not used because that tends to fail when
 
228
      there are DNS problems.
 
229
 
 
230
    * New 'bzr whoami' command instead of username user-email.
 
231
 
 
232
 
 
233
  BUG FIXES: 
 
234
 
 
235
    * Make commit safe for hardlinked bzr trees.
 
236
 
 
237
    * Some Unicode/locale fixes.
 
238
 
 
239
    * Partial workaround for difflib.unified_diff not handling
 
240
      trailing newlines properly.
 
241
 
 
242
 
 
243
  INTERNAL:
 
244
 
 
245
    * Allow docstrings for help to be in PEP0257 format.  Patch from
 
246
      Matt Brubeck.
 
247
 
 
248
    * More tests in test.sh.
 
249
 
 
250
    * Write profile data to a temporary file not into working
 
251
      directory and delete it when done.
 
252
 
 
253
    * Smaller .bzr.log with process ids.
 
254
 
 
255
 
 
256
  PORTABILITY:
 
257
 
 
258
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
259
      Bennetts.
 
260
 
 
261
    * Some improvements in handling paths on Windows, based on a patch
 
262
      from QuantumG.
 
263
 
 
264
 
 
265
bzr-0.0.3  2005-04-06
 
266
 
 
267
  ENHANCEMENTS:
 
268
 
 
269
    * New "directories" internal command lists versioned directories
 
270
      in the tree.
 
271
 
 
272
    * Can now say "bzr commit --help".
 
273
 
 
274
    * New "rename" command to rename one file to a different name
 
275
      and/or directory.
 
276
 
 
277
    * New "move" command to move one or more files into a different
 
278
      directory.
 
279
 
 
280
    * New "renames" command lists files renamed since base revision.
 
281
 
 
282
    * New cat command contributed by janmar.
 
283
 
 
284
  CHANGES:
 
285
 
 
286
    * .bzr.log is placed in $HOME (not pwd) and is always written in
 
287
      UTF-8.  (Probably not a completely good long-term solution, but
 
288
      will do for now.)
 
289
 
 
290
  PORTABILITY:
 
291
 
 
292
    * Workaround for difflib bug in Python 2.3 that causes an
 
293
      exception when comparing empty files.  Reported by Erik Toubro
 
294
      Nielsen.
 
295
 
 
296
  INTERNAL:
 
297
 
 
298
    * Refactored inventory storage to insert a root entry at the top.
 
299
 
 
300
  TESTING:
 
301
 
 
302
    * Start of shell-based black-box testing in test.sh.
 
303
 
 
304
 
 
305
bzr-0.0.2.1
 
306
 
 
307
  PORTABILITY:
 
308
 
 
309
    * Win32 fixes from Steve Brown.
 
310
 
 
311
 
 
312
bzr-0.0.2  "black cube"  2005-03-31
2
313
 
3
314
  ENHANCEMENTS:
4
315
 
22
333
    * New global --profile option.
23
334
    
24
335
    * Ignore patterns like './config.h' now correctly match files in
25
 
      the root directory only.
 
336
      the root directory only.
 
337
 
 
338
 
26
339
bzr-0.0.1  2005-03-26
27
340
 
28
341
  ENHANCEMENTS:
49
362
      supported).
50
363
 
51
364
 
52
 
 
53
365
bzr-0.0.0.69  2005-03-22
54
366
 
55
367
  ENHANCEMENTS: