/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.64.80 by Ian Clatworthy
added NEWS and setup.py
1
----------------------------
2
bzr-fastimport Release Notes
3
----------------------------
4
5
.. contents::
6
0.64.85 by Ian Clatworthy
prepare for 0.7 development
7
IN DEVELOPMENT
8
--------------
9
0.64.97 by Ian Clatworthy
update NEWS, making latest changes the start of 0.8dev
10
  COMPATIBILITY BREAKS:
11
0.79.10 by Ian Clatworthy
documentation clean-ups
12
    * ``exporters/bzr-fast-export`` has been replaced with a
13
      ``fast-export`` command. Some minor issues have been
14
      fixed at the same time: the first commit now goes into
15
      refs/heads/master (not refs/head/tmp); there's no
16
      checkpoint at the top of the stream; parent commits are
17
      now always given lower mark numbers than the commits they
18
      are merged into. (Ian Clatworthy)
19
0.64.116 by Ian Clatworthy
fast-import-filter for including/excluding paths from a stream
20
    * The old ``fast-import-filter`` command is now called
21
      ``fast-import-query``. ``fast-import-filter`` now
22
      really filters the input to produce a fast-import stream
23
      based on filtering criteria. See below.
0.64.111 by Ian Clatworthy
rename fast-import-filter to fast-import-query
24
      (Ian Clatworthy)
25
0.64.99 by Ian Clatworthy
remove --inv-fulltext option
26
    * The ``--inv-fulltext`` option is no longer supported. It was
27
      only used in experimental mode for old versions of bzrlib so
28
      it added more complexity than value. (Ian Clatworthy)
29
0.64.85 by Ian Clatworthy
prepare for 0.7 development
30
  FEATURES:
31
0.77.16 by Ian Clatworthy
added NEWS item
32
    * Added ``fast-import-filter`` command for splitting out a
33
      subdirectory or bunch of files into their own project. It can
34
      also be used to create a new repository without any history
35
      for nominated files and directories. This is useful for
36
      removing information which is a security risk, huge binary
37
      files like ISO images, etc.
38
      (Ian Clatworthy)
39
0.76.4 by Ian Clatworthy
added NEWS item
40
    * Copying of files and symbolic links is now supported.
41
      (Ian Clatworthy)
42
0.64.109 by Ian Clatworthy
initial cut at reset support
43
    * Initial cut at reset support. (Brian de Alwis, Ian Clatworthy)
44
0.64.85 by Ian Clatworthy
prepare for 0.7 development
45
  IMPROVEMENTS:
46
0.64.109 by Ian Clatworthy
initial cut at reset support
47
    * If ``refs/heads/xxx`` and ``refs/remotes/origin/xxx`` are both
48
      defined, the latter is now mapped to a bzr branch called
49
      ``xxx.remote`` rather than ``remotes--origins--xxx``.
50
      (Ian Clatworthy)
51
0.64.105 by Ian Clatworthy
handle > 16 parents in fast-import-info
52
    * ``bzr fast-import-info`` now handles an unlimited # of parents for a
53
      revision. The spec suggests the maximum ought to be 16 but the linux
54
      kernel has revisions with more than that.
55
      (Ian Clatworthy)
56
0.64.107 by Ian Clatworthy
warn on tags with a missing from clause
57
    * Tag commands with a missing from clause now produce a warning but
58
      are otherwise ignored. (Scott James Remnant, Ian Clatworthy)
59
0.64.106 by Ian Clatworthy
let the id-map file have more revisions than the repository
60
    * The fastimport-id-map file can now have more revisions than the
61
      repository. (Scott James Remnant)
62
0.64.101 by Ian Clatworthy
reapply local enhancements to hg-fast-export
63
    * Updated the bundled version of hg-fast-export to be the latest
64
      code from http://repo.or.cz/w/fast-export.git. It should now
65
      support recent Mercurial releases.
66
      (Ian Clatworthy, #318903)
67
0.64.97 by Ian Clatworthy
update NEWS, making latest changes the start of 0.8dev
68
  BUG FIXES:
69
0.64.115 by Ian Clatworthy
update NEWS with info about filecopy bug
70
    * Fixed a *bad* bug where filecopy commands were being parsed
71
      as filerename commands. Repositories generated by previous
72
      version of bzr-fast-import where the input stream contained
73
      filecopy commands might be missing data (the copy source will
74
      no longer be there if it was unchanged since the copy happened)
75
      and ought to be regenerated.
76
      (Ian Clatworthy)
77
0.64.98 by Ian Clatworthy
fix os import as needed on Windows
78
    * Fix ``os`` import as needed on Windows.
79
      (Ian Clatworthy, esskov, #264988)
80
0.64.102 by Ian Clatworthy
Handle a directory becoming a file and subsequent child deletes
81
    * Handle a directory turning into a file and then the children
82
      of that directory being deleted.
83
      (Ian Clatworthy, #309486)
84
0.64.104 by Ian Clatworthy
handle multiple merges in the one merge clause
85
    * Handle an empty email section.
86
      (Ian Clatworthy)
87
88
    * Handle multiple merges within the one merge clause. That's illegal
89
      according to the spec but git-fast-export does it.
90
      (Ian Clatworthy, #259711)
91
92
    * Handle names and paths that aren't utf8 encoded. The spec recommends
93
      utf8 encoding of these but git-fast-export doesn't always do that.
94
      (Ian Clatworthy, #289088)
95
0.64.97 by Ian Clatworthy
update NEWS, making latest changes the start of 0.8dev
96
    * Ignore lightweight tags with no from clause rather than abort.
97
      (It seems git-fast-export outputs these commands frequently now
98
      while it didn't appear to in early versions.)
99
      (Ian Clatworthy, edice, #259711)
100
101
    * Import into rich-root (and subtree) repositories without aborting.
102
      (Ian Clatworthy, #300921)
103
0.64.108 by Ian Clatworthy
recursively delete children when a directory is deleted
104
    * Recursively delete children when a directory is deleted.
105
      (Scott James Remnant)
106
0.64.110 by Ian Clatworthy
make deleteall less agressive in the files it tries to delete
107
    * The ``deleteall`` command now only tries to delete files in the
108
      nominated branch, not all known files. As a consequence,
109
      it should now be possible (if it wasn't before) to import
110
      multiple Darcs branches (via darcs-fast-export) at once.
111
      (Ian Clatworthy)
112
0.64.97 by Ian Clatworthy
update NEWS, making latest changes the start of 0.8dev
113
  API BREAKS:
114
115
  TESTING:
116
0.64.116 by Ian Clatworthy
fast-import-filter for including/excluding paths from a stream
117
    * A large number of tests have been added.
118
      (Ian Clatworthy)
119
0.64.97 by Ian Clatworthy
update NEWS, making latest changes the start of 0.8dev
120
  INTERNALS:
121
0.64.117 by Ian Clatworthy
generic_processor.py refactoring
122
    * Refactored ``processors/generic_processor.py`` into a bunch of modules.
123
      (Ian Clatworthy)
124
0.64.97 by Ian Clatworthy
update NEWS, making latest changes the start of 0.8dev
125
126
0.7 09-Feb-2009
127
---------------
128
129
  COMPATIBILITY BREAKS:
130
131
    * bzr-fast-export.py renamed to bzr-fast-export.
132
      (Jelmer Vernooij)
133
134
  IMPROVEMENTS:
135
0.64.91 by Ian Clatworthy
Add deleteall support (Miklos Vajna)
136
    * Add support for the deleteall command.
137
      (Miklos Vajna, #284941)
138
0.64.85 by Ian Clatworthy
prepare for 0.7 development
139
  BUG FIXES:
140
0.64.87 by Ian Clatworthy
bzr-fast-export exports rm+mv correctly now (Jonas)
141
    * bzr-fast-export now exports rm+mv correctly.
142
      (Jonas)
143
0.64.88 by Ian Clatworthy
Fix recursive rename handling (Pieter de Bie)
144
    * Fix recursive rename handling in bzr-fast-export.
145
      (Pieter de Bie, #287785)
146
0.64.86 by Ian Clatworthy
hg-fast-export should use binary mode on Windows (Alexey Stukalov)
147
    * hg-fast-export should use binary mode on Windows.
148
      (Alexey Stukalov)
149
0.64.90 by Ian Clatworthy
setup.py no longer requires python2.4
150
    * setup.py no longer assumes python2.4.
151
      (schickb@gmail.com)
152
0.64.89 by Ian Clatworthy
setup.py support fixed (Jelmer Vernooij)
153
    * setup.py support fixed.
154
      (Jelmer Vernooij)
155
0.64.92 by Ian Clatworthy
fix last-modified revision after rename (John Arbash Meinel)
156
    * Update the last-modified revision for a renamed file.
157
      (John Arbash Meinel)
158
0.64.85 by Ian Clatworthy
prepare for 0.7 development
159
0.64.84 by Ian Clatworthy
release 0.6
160
0.6 23-Jul-2008
161
---------------
0.64.80 by Ian Clatworthy
added NEWS and setup.py
162
163
  FEATURES:
164
165
  IMPROVEMENTS:
166
167
    * Added NEWS containing Release Notes. (Ian Clatworthy)
168
0.64.81 by Ian Clatworthy
'bzr help fastimport' now provides useful help
169
    * ``bzr help fastimport`` now provides help that is useful.
170
      (Ian Clatworthy)
171
0.64.82 by Ian Clatworthy
Merge Pieter de Bie's export-fixes branch
172
    * Numerous fixes to ``bzr-fast-export.py`` to improve round-tripping
173
      with Git. Added ``--import-marks`` and ``--export-marks`` options
174
      to ``fast-import`` as well.
175
      (Pieter de Bie)
176
0.64.83 by Ian Clatworthy
Merge Mirko Friedenhagen's regex improvement to svn-fast-export.py
177
    * ``svn-fast-export.py`` now supports a regular-expression to specify
178
      the branches to export.
179
      (Mirko Friedenhagen)
180
0.64.80 by Ian Clatworthy
added NEWS and setup.py
181
  BUG FIXES:
182
183
    * Support the new Repository API added in bzr.dev r3510. The old API
184
      will be used for earlier versions of bzr including bzr 1.6beta2 and
185
      earlier. (Ian Clatworthy)
186
187
  COMPATIBILITY BREAKS:
188
189
    * The ``--inv-fulltext`` option is not yet supported when the new
0.64.81 by Ian Clatworthy
'bzr help fastimport' now provides useful help
190
      Repository API is used to import revisions. The option can be
191
      provided but it will be ignored. (Ian Clatworthy)
0.64.80 by Ian Clatworthy
added NEWS and setup.py
192
193
  API BREAKS:
194
195
    * The ``RevisionLoader`` class has been renamed to ``RevisionLoader1``.
196
      The ``ExperimentalRevisionLoader`` class has been renamed to
197
      ``ImportRevisionLoader1``. New classes called ``RevisionLoader2``
198
      and ``ImportRevisionLoader2`` are provided that use the new
199
      Repository API. (Ian Clatworthy)
200
201
  TESTING:
202
203
  INTERNALS:
204
205
    * Improved packaging by adding a setup.py file. (Ian Clatworthy)
206
207
208
0.5 02-Jun-2008
209
---------------
210
211
  FEATURES:
212
213
    * Version suitable for Bazaar 1.5.
214
      (Ian Clatworthy)