~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-05-03 08:00:27 UTC
  • Revision ID: mbp@sourcefrog.net-20050503080027-908edb5b39982198
doc

Show diffs side-by-side

added added

removed removed

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