~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Aaron Bentley
  • Date: 2005-09-21 15:33:23 UTC
  • mto: (1185.1.37)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: abentley@panoramicfeedback.com-20050921153323-5db674d572d7649d
Fixed bug in distance-from-root graph operation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr-0.0.5  NOT RELEASED YET
 
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
 
2
198
 
3
199
  ENHANCEMENTS:
4
200
 
5
201
    * New 'bzr whoami --email' option shows only the email component
6
202
      of the user identification, from Jo Vermeulen.
7
203
 
8
 
    * New 'bzr ignore PATTERN' command.
 
204
    * New ``bzr ignore PATTERN`` command.
9
205
 
10
206
    * Nicer error message for broken pipe, interrupt and similar
11
207
      conditions that don't indicate an internal error.
12
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
 
13
265
  TESTING:
14
266
 
15
 
    * Converted black-box test suites from Bourne shell into Python.
16
 
      Various structural improvements to the tests.
 
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
 
17
282
 
18
283
  INTERNAL:
19
284
 
20
285
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
21
286
 
22
 
    * Refactor command functions into Command objects based on
23
 
      mango-sorbet by Scott James Remnant.
 
287
    * Refactor command functions into Command objects based on HCT by
 
288
      Scott James Remnant.
24
289
 
25
290
    * Better help messages for many commands.
26
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
 
27
312
 
28
313
bzr-0.0.4  2005-04-22
29
314