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