/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: Martin Pool
  • Date: 2005-05-09 08:27:49 UTC
  • Revision ID: mbp@sourcefrog.net-20050509082749-22b1a6f4af329f7b
- bzr log and bzr root now accept an http URL
- new RemoteBranch.relpath()
- new find_branch factory method

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bzr-0.0.5  NOT RELEASED YET
 
2
 
 
3
  ENHANCEMENTS:
 
4
 
 
5
    * New 'bzr whoami --email' option shows only the email component
 
6
      of the user identification, from Jo Vermeulen.
 
7
 
 
8
    * New 'bzr ignore PATTERN' command.
 
9
 
 
10
    * Nicer error message for broken pipe, interrupt and similar
 
11
      conditions that don't indicate an internal error.
 
12
 
 
13
    * Add ``.*.swp .*.tmp *,v`` to default ignore patterns.
 
14
 
 
15
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
16
      either read or write mode.
 
17
 
 
18
    * New option ``bzr log --show-ids`` shows revision and file ids.
 
19
 
 
20
    * New usage ``bzr log FILENAME`` shows only revisions that
 
21
      affected that file.
 
22
 
 
23
    * Changed format for describing changes in ``bzr log -v``.
 
24
 
 
25
    * New option ``bzr commit --file`` to take a message from a file,
 
26
      suggested by LarstiQ.
 
27
 
 
28
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz Oler.
 
29
 
 
30
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
31
      a filename.
 
32
 
 
33
 
 
34
  TESTING:
 
35
 
 
36
    * Converted black-box test suites from Bourne shell into Python;
 
37
      now run using ``./testbzr``.  Various structural improvements to
 
38
      the tests.
 
39
 
 
40
    * testbzr by default runs the version of bzr found in the same
 
41
      directory as the tests, or the one given as the first parameter.
 
42
 
 
43
    * testbzr also runs the internal tests, so the only command
 
44
      required to check is just ``./testbzr``.
 
45
 
 
46
 
 
47
  INTERNAL:
 
48
 
 
49
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
50
 
 
51
    * Refactor command functions into Command objects based on HCT by
 
52
      Scott James Remnant.
 
53
 
 
54
    * Better help messages for many commands.
 
55
 
 
56
    * Expose bzrlib.open_tracefile() to start the tracefile; until
 
57
      this is called trace messages are just discarded.
 
58
 
 
59
    * New internal function find_touching_revisions() and hidden
 
60
      command touching-revisions trace the changes to a given file.
 
61
 
 
62
    * Simpler and faster compare_inventories() function.
 
63
 
 
64
    * bzrlib.open_tracefile() takes a tracefilename parameter.
 
65
 
 
66
    * New AtomicFile class.
 
67
bzr-0.0.4  2005-04-22
 
68
 
 
69
  ENHANCEMENTS:
 
70
 
 
71
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
72
      basic.  Patch from QuantumG.
 
73
 
 
74
    * More default ignore patterns.
 
75
 
 
76
    * New 'bzr log --verbose' shows a list of files changed in the
 
77
      changeset.  Patch from Sebastian Cote.
 
78
 
 
79
    * Roll over ~/.bzr.log if it gets too large.
 
80
 
 
81
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
82
      by Jason Diamon.
 
83
 
 
84
    * New 'bzr help commands' based on a patch from Denys Duchier.
 
85
 
 
86
 
 
87
  CHANGES:
 
88
 
 
89
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
90
      or $EMAIL.  All are decoded by the locale preferred encoding.
 
91
      If none of these are present user@hostname is used.  The host's
 
92
      fully-qualified name is not used because that tends to fail when
 
93
      there are DNS problems.
 
94
 
 
95
    * New 'bzr whoami' command instead of username user-email.
 
96
 
 
97
 
 
98
  BUG FIXES: 
 
99
 
 
100
    * Make commit safe for hardlinked bzr trees.
 
101
 
 
102
    * Some Unicode/locale fixes.
 
103
 
 
104
    * Partial workaround for difflib.unified_diff not handling
 
105
      trailing newlines properly.
 
106
 
 
107
 
 
108
  INTERNAL:
 
109
 
 
110
    * Allow docstrings for help to be in PEP0257 format.  Patch from
 
111
      Matt Brubeck.
 
112
 
 
113
    * More tests in test.sh.
 
114
 
 
115
    * Write profile data to a temporary file not into working
 
116
      directory and delete it when done.
 
117
 
 
118
    * Smaller .bzr.log with process ids.
 
119
 
 
120
 
 
121
  PORTABILITY:
 
122
 
 
123
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
124
      Bennetts.
 
125
 
 
126
    * Some improvements in handling paths on Windows, based on a patch
 
127
      from QuantumG.
 
128
 
 
129
 
 
130
bzr-0.0.3  2005-04-06
 
131
 
 
132
  ENHANCEMENTS:
 
133
 
 
134
    * New "directories" internal command lists versioned directories
 
135
      in the tree.
 
136
 
 
137
    * Can now say "bzr commit --help".
 
138
 
 
139
    * New "rename" command to rename one file to a different name
 
140
      and/or directory.
 
141
 
 
142
    * New "move" command to move one or more files into a different
 
143
      directory.
 
144
 
 
145
    * New "renames" command lists files renamed since base revision.
 
146
 
 
147
    * New cat command contributed by janmar.
 
148
 
 
149
  CHANGES:
 
150
 
 
151
    * .bzr.log is placed in $HOME (not pwd) and is always written in
 
152
      UTF-8.  (Probably not a completely good long-term solution, but
 
153
      will do for now.)
 
154
 
 
155
  PORTABILITY:
 
156
 
 
157
    * Workaround for difflib bug in Python 2.3 that causes an
 
158
      exception when comparing empty files.  Reported by Erik Toubro
 
159
      Nielsen.
 
160
 
 
161
  INTERNAL:
 
162
 
 
163
    * Refactored inventory storage to insert a root entry at the top.
 
164
 
 
165
  TESTING:
 
166
 
 
167
    * Start of shell-based black-box testing in test.sh.
 
168
 
 
169
 
 
170
bzr-0.0.2.1
 
171
 
 
172
  PORTABILITY:
 
173
 
 
174
    * Win32 fixes from Steve Brown.
 
175
 
 
176
 
 
177
bzr-0.0.2  "black cube"  2005-03-31
 
178
 
 
179
  ENHANCEMENTS:
 
180
 
 
181
    * Default ignore list extended (see bzrlib/__init__.py).
 
182
 
 
183
    * Patterns in .bzrignore are now added to the default ignore list,
 
184
      rather than replacing it.
 
185
 
 
186
    * Ignore list isn't reread for every file.
 
187
 
 
188
    * More help topics.
 
189
 
 
190
    * Reinstate the 'bzr check' command to check invariants of the
 
191
      branch.
 
192
 
 
193
    * New 'ignored' command lists which files are ignored and why;
 
194
      'deleted' lists files deleted in the current working tree.
 
195
 
 
196
    * Performance improvements.
 
197
 
 
198
    * New global --profile option.
 
199
    
 
200
    * Ignore patterns like './config.h' now correctly match files in
 
201
      the root directory only.
 
202
 
 
203
 
 
204
bzr-0.0.1  2005-03-26
 
205
 
 
206
  ENHANCEMENTS:
 
207
 
 
208
    * More information from info command.
 
209
 
 
210
    * Can now say "bzr help COMMAND" for more detailed help.
 
211
 
 
212
    * Less file flushing and faster performance when writing logs and
 
213
      committing to stores.
 
214
 
 
215
    * More useful verbose output from some commands.
 
216
 
 
217
  BUG FIXES:
 
218
 
 
219
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
 
220
 
 
221
  PORTABILITY:
 
222
 
 
223
    * Include a subset of ElementTree-1.2.20040618 to make
 
224
      installation easier.
 
225
 
 
226
    * Fix time.localtime call to work with Python 2.3 (the minimum
 
227
      supported).
 
228
 
 
229
 
 
230
bzr-0.0.0.69  2005-03-22
 
231
 
 
232
  ENHANCEMENTS:
 
233
 
 
234
    * First public release.
 
235
 
 
236
    * Storage of local versions: init, add, remove, rm, info, log,
 
237
      diff, status, etc.