Support retrieving passwords from Bazaar.
[jelmer/subvertpy.git] / NEWS
1 bzr-svn 0.4.6   UNRELEASED
2
3   PERFORMANCE
4   
5    * Remember where revids have already been detected. Makes incremental
6      push a lot faster, in particular in Subversion repositories 
7          with a lot of branches.
8
9    * Work around memory leak in the Python Subversion bindings of svn.ra.get_log(). 
10
11    * Support retrieving credentials from Bazaar rather than relying on Subversions' cache. (#120768)
12
13 bzr-svn 0.4.5   2007-12-01
14
15   IMPROVEMENTS
16
17    * Add revision specifier for "svn:" that accepts a single revision number. (#160605)
18
19   INTERNALS
20
21    * No longer store svn:author, svn:date and svn:log in the bzr-svn cache. 
22      This should make it easier to use bzr-specific revprops later on and 
23      saves some disk space.
24
25    * Use new rich-roots format everywhere rather than experimental 
26      dirstate-with-subtree.
27
28   BUG FIXES
29
30    * Properly decode unicode commit messages. 
31
32    * Handle some corner cases when finding branches.
33
34    * Print comprehensible error when unsupport characters occur in file names.
35      (partial fix of #163585)
36
37    * Fix compatibility with Bazaar 1.0rc1.
38
39
40 bzr-svn 0.4.4   2007-11-02
41
42   PERFORMANCE
43
44    * Improved import times, making bzr faster if bzr-svn is loaded but 
45      not used.
46
47   IMPROVEMENTS
48    
49    * Avoid tracebacks on "Malformed data" errors.
50
51    * Make push location optional for svn-push. 
52    
53    * Make svn-push support --remember.
54
55    * No longer gives trackeback when already upgraded revisions are present.
56      (#130471)
57
58    * Clearer error when prefix is missing during push.
59
60    * Support optionally overriding svn:author and svn:date (#140001)
61
62    * Convert errno's returned by the remote server into OSError exceptions.
63
64   INTERNALS
65
66    * Handle NULL_REVISION in SvnRepository.copy_content(). Fixes compatibility 
67      with bzr merge-into.
68
69    * Implement ListBranchingScheme.is_branch_parent(). (#144357)
70
71    * Use revprop lists rather than just commit message when committing.
72
73    * The version of bzr-rebase is now checked before it's being used.
74
75    * Handle checks of modified children correctly when path is the root 
76      in LogWalker.find_latest_change().
77
78   BUG FIXES
79
80    * Fix compatibility with 0.92.
81
82    * Fix compatibility with packs. (#139442)
83
84    * Handle long file names with unicode characters correctly on 
85      python2.4 (#129334)
86
87    * Give proper warning message when running 'bzr svn-branching-scheme' on 
88      something that is not a Subversion repository. (#145159)
89
90    * Give proper warning message when running 'bzr svn-import' on 
91      something that is not a Subversion repository. 
92
93    * Support svn+ hack when committing in bound branches. (#150699)
94
95    * Give proper error when changes can't be pushed to root of repository. 
96      (#145148)
97
98    * Encode = in list branching scheme names (unusable in Subversion property 
99      names). (#125751)
100
101    * Fix 'bzr checkout --lightweight' for http and https branches. 
102      (#144032)
103
104    * Don't print traceback when raising errors about bzr versions.
105
106    * Show proper exception when lightweight checkout is out of date.
107
108    * Fix pulling in changes push earlier by bzr-svn with directory renames 
109      of directories containing files. (#153347)
110
111    * Handle special characters in committer name correctly. (#158347)
112
113    * Avoid crashes on sending empty diffs over http/svn+SCHEME (#159111)
114
115    * Decent progress bar for "svn-import". (#127933)
116
117   DOCUMENTATION
118
119    * Add simple FAQ file. (#144388)
120
121 bzr-svn 0.4.3   2007-09-15
122  
123   PERFORMANCE
124
125    * Avoid extra RA connection in LogWalker if it isn't going to be used.
126
127   BUG FIXES
128
129    * Fix determination of relative URLs in SvnRaTransport._request_path(). 
130      (#139020)
131
132    * Mark as compatible with Bazaar 0.91.
133
134    * Use write groups in fetch as required by the packs branch.
135
136    * Handle pushing merges of which LHS parent is older revision of 
137      branch path.
138
139   INTERNALS
140
141    * Track moving parents correctly in follow_path().
142
143    * Implement SvnWorkingTreeDir.needs_format_conversion().
144
145 bzr-svn 0.4.2   2007-09-09
146
147   BUG FIXES
148
149    * Fix regression that prevented the "svn+" prefix trick from working.
150
151    * Export version information so the version is displayed properly 
152      in "bzr plugins".
153
154    * Avoid deprecated static BzrDir.create_repository().
155
156    * Fix pushing of revisions of which only a non-left hand side parent
157      is present in the Subversion repository. (#131692)
158
159    * Fix some problems pushing to HTTP repositories because of 
160      the backing URL hack introduced to fix #80553. (#137176)
161
162    * Display unknown hostname errors properly without tracebacks.
163
164    * Handle files of which path didn't change but parent did when pushing. 
165      (#137455)
166
167    * Fix sqlite index that was causing indexing errors when a repository 
168      contains multiple copies of a single revision. 
169
170 bzr-svn 0.4.1   2007-08-26
171
172   BUG FIXES
173
174    * Convert errors to bzr errors when fetching data (avoids backtraces).
175
176    * Raise proper exception when repository can't be found remotely. (#130633)
177
178    * Use knits to store file id maps.
179
180    * Don't try to open repository root for http:// or https:// URLs. (#80553)
181    
182    * Handle corner cases fetching renames.
183
184    * Support WorkingTree.update()
185
186    * Mark as supporting Bazaar 0.90 rather than 0.19. (#133388)
187
188    * Don't mutter during commit unless explicitly enabled with -Dcommit.
189
190    * Fix pushing while svk:merge properties are not found. 
191      (#133287, Lukáš Lalinský)
192
193    * Show proper exception when a svn dump file ends prematurely. 
194
195    * Don't try to open directories of which parents haven't yet been opened 
196      from commit. (#133288, Lukáš Lalinský)
197
198    * Timestamps in properties no longer include locale-specific data. (#131337)
199
200    * Handle copies of parent directories of branches correctly. (#131180)
201
202   INTERNALS
203
204    * Support `topo_sorted` argument to by Repository.get_ancestry().
205
206   FEATURES
207
208    * Support initializing Subversion repositories. 
209      `bzr init-repo --format=subversion` now works.
210
211    * Support reading gzip and bzip2 compressed dump files in svn-import.
212
213 bzr-svn 0.4.0   2007-08-04      
214   
215   BUG FIXES
216
217    * Non-ascii characters in file ids are now supported (fixes imports 
218      of the Python repository).
219
220    * Fixed error raised during version incompatibility. (Wouter van Heyst, 
221                                                          #80467)
222
223    * Implemented Repository.get_revision_graph(None)
224
225    * svn-import will no longer spin using CPU if the target directory 
226      did not exist (#80223).
227
228    * Remove branches when they are being replaced. Fixes DivergedBranches 
229      error when using svn-import (#81908).
230  
231    * Consistently treat property changes as actual changes (#122115)
232
233    * Be a bit less verbose when trying to connect (#124858)
234
235    * Fix locking issues (#125212)
236
237    * Warn when used with experimental version of mappings. (#117198)
238
239    * Only warn about out of date mappings, bzr-svn version or 
240      experimental mappings when the plugin is being used. (#93319)
241
242    * Clearer warning when branch specified to svn-import. (#121391)
243
244    * Support pushing multiple revisions in a row. (#115494)
245
246    * Fix compatibility with Subversion 1.5. (#73918)
247
248    * Fix import of svk:merge properties (need to be sorted lexicographically).
249
250    * Support possible_transports argument to BzrDir.sprout(). (#128500)
251
252    * Fix incorrect delete when a child of a renamed directory is removed.
253
254    * Support pushing adding empty files. (#113667)
255
256   BEHAVIOUR CHANGES
257
258    * Use shared repositories by default in svn-import command.
259
260    * Avoid muttering when possible.
261
262   TESTS
263
264    * Add blackbox test for svn-import with dumpfile. (#123493)
265
266   PERFORMANCE
267
268    * do_update() is now used to find the contents of a directory recursively. 
269      This should reduce the number of roundtrips significantly when 
270          finding file id mappings.
271
272    * Support read locking for Branch.
273
274   FEATURES
275    
276    * add -v option to svn-upgrade
277
278    * store and allow setting the branching scheme in subversion.conf
279
280    * allow setting the branching scheme from a file property 
281      on the repository root
282
283    * Support true push (#80612).
284
285    * Support commits in heavy checkouts (#79330).
286
287    * Support using custom branching schemes.
288
289    * Support pushing new branches.
290
291    * Add --prefix option to svn-import. (#125993)
292
293    * Add 'bzr help svn-branching-schemes'
294
295    * Branching schemes can now be autodetected using some simple heuristics. 
296      (#81976)
297
298    * Added command `svn-branching-scheme` for setting branching schemes.
299      (#127003)
300
301   INTERNALS
302
303    * Implement SvnRaTransport.local_abspath(). (#117090)
304
305    * Implement SvnRemoteAccess.create_branch().
306
307    * Implement SvnWorkingTree.smart_add() (#79336)
308
309 bzr-svn 0.3.4   2007-06-15
310
311   BUG FIXES
312
313   * Check for a working pysqlite, rather than checking that the 
314     first one found works. (#115026)
315
316   * Fix compatibility with Bazaar 0.17.
317
318 bzr-svn 0.3.3   2007-04-29
319
320   IMPROVEMENTS
321
322   * Fix compatibility with Bazaar 0.16 (#110164)
323
324   * Don't do extra checkout before push if possible. (#91885)
325
326   * Set parent URLs in svn-import. (#94406)
327
328   * Don't show "not updating working tree" warnings when pushing.
329
330 bzr-svn 0.3.2   2007-03-13
331
332   BUG FIXES
333
334   * Fix compatibility with Bazaar 0.15.
335
336   * Check for parent paths moving as well in LogWalker.find_latest_change(). 
337     Fixes #84087.
338
339   * Handle unicode characters in commit messages. Fixes #85551.
340
341   * Handle unicode characters in filenames (#54736)
342
343 bzr-svn 0.3.1   2007-01-31
344
345   BUG FIXES
346  
347    *  Warning given when the version of python-subversion is not patched 
348       is now fixed. (Wouter van Heyst)
349
350   IMPROVEMENTS
351
352    * A proper warning will now be printed if no sqlite implementation is 
353      available.
354
355    * Working tree copies will be disabled if the version of python-subversion 
356      is too old.
357
358 bzr-svn 0.3.0   2007-01-16
359
360   BUG FIXES
361
362    * Use checksums for the path in case the file id is too long. (#77453)
363
364    * Don't rely on listdir() kind results. Fixes imports of several 
365      repositories. (#56647)
366
367    * Fixed two problems with replaces that are nested.
368
369    * Branch downgrades and dir upgrades are now recognized properly (#67010).
370
371    * Supported branching schemes other that trunk-0.
372
373    * Properly recognize discontinued branches. (#76823)
374
375    * Switched to storing data in SQLite. (#74798)
376    
377    * Locks ra transports. (#76280)
378
379    * Use built-in ra callbacks from Subversion. (#64816)
380
381    * Implement SvnRaTransport.mkdir(). (#65138)
382
383    * Avoid raising SubversionException's for non-subversion directories. 
384
385    * Remove requirement for svn+ prefix. (#75751)
386
387    * Don't consider SvnRepositories for writing for regular Bazaar 
388      branches. (#77023)
389
390    * Don't try to import files as branches.
391
392    * Store file id map when committing to Subversion. (#54738)
393
394    * Support spaces in filenames in working trees.
395
396   IMPROVEMENTS
397
398    * Implemented SvnRepository.all_revision_ids().
399
400    * Proper ProgressBars.
401
402    * Made `to_location' argument for svn-import optional.
403
404    * Removed unused code.
405
406    * Several attempts to reduce memory usage.
407
408    * The LogWalker class is now a lot dumber.
409
410    * Added --scheme and --all options to svn-import.
411
412    * Implemented SvnRaTransport.list_dir().
413
414    * Conversion output can now be on a remote transport.
415
416    * Upgrade command can be used to upgrade branches created with 
417      older versions of the plugin.
418
419    * Fail early when unpatched python Subversion bindings are installed.
420
421   PERFORMANCE IMPROVEMENTS
422
423    * More efficient implementation of follow_history().
424
425    * Split out follow_branch_history() of follow_branch().
426
427    * Reduced number of remote listdir calls.
428
429    * Only determine file ids for changed files. Reduces disk usage 
430      significantly.
431
432 bzr-svn 0.2  2006-12-14
433
434   BUG FIXES
435
436     * Fixed "KeyError" problems (#64831)
437
438     * Fixed compatibility with Bazaar 0.13.
439
440     * Fixed "bzr checkout" and "bzr checkout --lightweight" for svn 
441       branches. (#65220)
442
443     * Don't fetch revision info until necessary. (#64850)
444
445     * Don't try to open remote checkouts. (#67281)
446
447     * Escape control codes in commit messages. (#54736)
448
449   IMPROVEMENTS
450
451     * Add repository format for Subversion repositories.
452    
453     * Plugin directory no longer needs to be named 'svn'
454
455     * Warn about incompatible Bazaar versions (#66993)
456
457 bzr-svn 0.1
458  
459  Initial release.