-
Notifications
You must be signed in to change notification settings - Fork 1
/
NEWS
1976 lines (1140 loc) · 57 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
brz-svn 1.3.0 UNRELEASED
CHANGES
* Support breezy rather than Bazaar. (Jelmer Vernooij)
* Support newer versions of subvertpy. (Jelmer Vernooij)
bzr-svn 1.2.3 2012-12-13
BUG FIXES
* Support show_base argument to ``WorkingTree.pull``.
(Jelmer Vernooij, #1018797)
* Use unicode string for password prompt fixing ValueError
with newer bzr versions. (Martin Packman, #1076386)
bzr-svn 1.2.2 2012-04-16
BUG FIXES
* Don't store parent location when importing from
svn dump file. (Jelmer Vernooij, #957511)
* Cope with guessed layout being set as 'None' in
the configuration file. (Jelmer Vernooij, #958719)
* Print proper error without traceback when encountering svn
working copy in too old format. (Jelmer Vernooij)
* Support lazy registration when used with bzr 2.6.
(Jelmer Vernooij)
bzr-svn 1.2.1 2012-03-06
BUG FIXES
* Fix compatibility with bzr 2.5.0 proper. (Jelmer Vernooij)
bzr-svn 1.2.0 2011-01-23
FEATURES
* Support fetching to colocated branches in svn-import.
(Jelmer Vernooij)
* Follow redirects when using pycurl. (Jelmer Vernooij)
* New hidden command 'bzr fix-svn-ancestry' command.
(Jelmer Vernooij)
CHANGES
* No longer supports bzr 2.3 and 2.4. (Jelmer Vernooij)
BUG FIXES
* Properly abort when the commit editor commit function fails
rather than complaining about busy connections. (Jelmer Vernooij, #890529)
* Ignore .svn directories that aren't actually svn working
copies. (Jelmer Vernooij, #862910)
* Fix find_iter_revisions when accessing repository that contains
old mapping data. (Jelmer Vernooij, #898780)
* Reset pycurl state after OPTIONS request.
(Jelmer Vernooij, Vincent Ladeuil, #774571)
bzr-svn 1.1.1 2011-10-25
CHANGES
* The 'trunk' layout is now the default for an empty repository.
(Jelmer Vernooij)
FEATURES
* Support annotate in working trees. (Jelmer Vernooij)
* Add basic i18n support. (Jelmer Vernooij)
* Now passes all bzr interface tests for repositories, branches,
working trees and control directories. (Jelmer Vernooij)
BUG FIXES
* Implement `Repository.pack_fs()`. (Jelmer Vernooij)
* Fix several "Tree out of date" errors during commit/push if multiple
copies of a revision are present in the target repository.
(Jelmer Vernooij, #702870)
* Don't use bzr's locking mechanism in working copies.
(Jelmer Vernooij, #855113)
* Fix handling of working copy updates during partial commit.
(Jelmer Vernooij, #834918)
* Allow unversioned obstructions during working copy updates.
(Jelmer Vernooij, #562442)
* Make sure parent inventories are present in the repository itself
rather than in the stacked-on repositories during fetch.
(Jelmer Vernooij, #866028)
bzr-svn 1.1.0 2011-08-26
BUG FIXES
* Support `old_tip` argument to WorkingTree.update(). (Jelmer Vernooij, #695460)
* Cope with layouts returning project paths that don't exist.
(Max Bowsher, Jelmer Vernooij, #638492)
* Support symlinks being changed into files, when their contents
are no longer in the cache. (Max Bowsher, #638697)
* Fix regression in 'bzr missing -v'. (#645360, Jelmer Vernooij)
* Support non-ascii paths in SqliteCache when retrieving mappings. (#643737,
Jelmer Vernooij)
* Mark as compatible with bzr 2.3. (Jelmer Vernooij, #717475)
* Mark as compatible with bzr 2.4. (Jelmer Vernooij, #828381)
* Remove reference to edge.launchpad.net, which is going away. (Jelmer
Vernooij, #666021)
* Support binary files when sending svn-style diffs. (Jelmer Vernooij,
#665662)
* Fix compatibility with Python 2.4. (Kristian Berge Ness)
* Support revision argument to update(). (Jelmer Vernooij, #537387)
* Fix corner case bugs with branch moves. (Jelmer Vernooij, #701752)
* Store short testament rather than long testament in bzr:testament
revision property. (Jelmer Vernooij, #701380)
* Provide ``BranchConfig.has_explicit_nickname()``.
(Jelmer Vernooij, #704840)
* Implement ReverseTagDict.__iter__. (Jelmer Vernooij)
* SvnRepositoryFormat.initialize() is now implemented. (Jelmer Vernooij)
* Use filters when generating sha1 sum for working tree files.
(Jelmer Vernooij, #597887)
* Support commit wiht svn:keywords use in working tree.
(Jelmer Vernooij, #654329)
* Preserve username when looking up credentials.
(Jelmer Vernooij, #710931)
* Fix following of parent path copies from the root.
(Jelmer Vernooij, #665027)
* Abort when branches diverge during push. (Jelmer Vernooij, #515850)
* Support non-ascii characters in branch paths in foreign revision displayer
(used by e.g. "bzr log"). (Jelmer Vernooij, #728380)
* dpushing multiple commits no longer repeatedly downloads the entire
tree. (Jelmer Vernooij, #582898)
* Fix `push_merged_revisions = True` for committing to bound branches.
(Jelmer Vernooij, #486811)
* Transport.is_readonly() is now respected. (Jelmer Vernooij, #731268)
* Fix ControlDir.sprout() implementation for newer versions of bzr.
(Jelmer Vernooij, #717937)
* bzr-svn no longer uses file properties to store metadata anymore, unless
`allow_metadata_in_file_properties`. (Jelmer Vernooij, #704716)
* Implement more efficient ``InterFromSvnBranch.fetch``. (Jelmer Vernooij, #741760)
* Tags are now copied during clone if enabled ("branch.fetch_tags = True").
(Jelmer Vernooij, #309682)
* "bzr commit --lossy" can now be used in bound branches.
(Jelmer Vernooij, #587721)
* Directories that are not considered branches by the standard apache layout
can now be fetched. (Jelmer Vernooij, #794984)
* More efficient discovery of tags. (Jelmer Vernooij, #797915)
* Support tag setting for simple wildcard layouts. (Jelmer Vernooij, #816338)
* Fix handling of NULL_REVISION in per-file revision graphs.
(Jelmer Vernooij, #795700)
* Prevent "holes" in the tdb cache when the process is aborted while
updating the cache. (Jelmer Vernooij, #664085)
* Fix handling of non-ascii directories when pushed to svn. (IWATA Hidetaka, #795994)
* Fix importing of non-ascii characters in bzr:revprop: values.
(Jelmer Vernooij, #821168)
* Allow concurrent access of SQLite cache, rather than aborting.
(Jelmer Vernooij, #685251)
* Remove pointless _metadata_changed attribute which could not always
be accessed. (Jelmer Vernooij, #771536)
* Store correct file graph information in bzr-svn metadata.
(Jelmer Vernooij, #485601)
FEATURES
* When roundtripping revisions a revision property with the Bazaar testament is
now set as a revision property. (Jelmer Vernooij)
* bzr-svn now requires Bazaar 2.3 or higher. (Jelmer Vernooij)
* `bzr rmbranch` was implemented. (Jelmer Vernooij, #731305)
* New hidden ``bzr svn-branches`` command which can display the
branches found by bzr-svn in a svn repository.
(Jelmer Vernooij)
* Basic support for multiple branches in a single control directory.
(Jelmer Vernooij, #740261)
INTERNALS
* Switch to using record_iter_changes style committing everywhere.
(Jelmer Vernooij)
* Implement InterOtherSvnBranch.copy_content_into. (Jelmer Vernooij,
#731289)
* Push is now record_iter_changes() based. (Jelmer Vernooij, #387623)
CHANGES
* bzr-svn now requires Python 2.5. (Jelmer Vernooij)
bzr-svn 1.0.4 2010-08-30
BUG FIXES
* Set file revisions based on history rather than on magic file properties.
(Jelmer Vernooij, #480102)
* Cope with invalid svk:merge properties during fetch.
(Jelmer Vernooij, #504458)
* Avoid backtrace when getting 175200 error during log fetch.
* Warn when inconsistencies between cache and repository are
detected. (Jelmer Vernooij, #594872)
* Cope with non-ascii characters in branch names properly.
(Jelmer Vernooij, #500519)
* During incremental "fetching svn revision info", don't print progress info
is as if it had started afresh (Max Bowsher, #500991)
* Cope with copying from paths with a # sign in them. (Jelmer Vernooij)
* Avoid fetching revision info for single unnecessary revision.
(Jelmer Vernooij)
* Support revision tracking when copying from root. (Jelmer Vernooij,
#438928)
* Fix handling of revision metadata. (Jelmer Vernooij, #612611)
* Print proper errors on invalid working copies. (Jelmer Vernooij, #404598)
* Cope with changes to root as a branch path during revision
discovery. (Jelmer Vernooij, #616860)
* Support accessing branches without accessing the repository root.
Please note that this will only work when the log cache is disabled.
(Jelmer Vernooij, #409668)
* Cope with non-ascii characters in symlink targets.
(Jelmer Vernooij)
* Cope with spaces in URLs during connect. (Jelmer Vernooij)
* Add note about virus scanners accessing temporary files.
(Jelmer Vernooij, #290110)
PERFORMANCE
* Support using any connection when finding UUID, revision properties
or revision number. (Jelmer Vernooij)
FEATURES
* Warn the user when they are about to push to a repository while setting
file properties. (Jelmer Vernooij, #589440)
DEPENDENCIES
* bzr-svn now requires version 0.8.0 of subvertpy. This was necessary because of
various workingtree-related fixes in bzr-svn.
bzr-svn 1.0.3 2010-07-30
BUG FIXES
* Mark as compatible with Bazaar 2.2. (Martin Pool)
* Allow more levels of parent directories for trunk layouts.
(Jelmer Vernooij, Debian #573988, #489740)
* Mention correct command for obtaining repository UUID.
(Ralf Doering, #512876)
* Support passwords specified in authentication.conf.
(Jelmer Vernooij, #452121)
* Cope with CodePlex.com lowercasing the hostname in returned
repository URLs. (Jelmer Vernooij)
* Cope with non-ascii characters in files with svn-keywords.
(Jelmer Vernooij, #515450)
* Support for the KDE repository layout has been added.
(Jelmer Vernooij, #506257)
* Fix export in svn working copies. (Jelmer Vernooij, #524476)
* Fix use of authentication.conf for svn+http and svn+https.
(Jelmer Vernooij, #532292)
* Cope with new ordering argument to Repository.iter_inventories().
(Jelmer Vernooij, #532363)
* Fix use of svn:author=author. (Jelmer Vernooij, #527805)
* Provide BranchConfig._get_change_editor().
(Jelmer Vernooij, #530130)
* Simplify handling of text parents. (Jelmer Vernooij)
* Implement Repository.get_known_revision_graph(). (Jelmer Vernooij)
* Cope with local repository that can not be opened. (Jelmer Vernooij,
#463020)
* Don't rely on old revision being on the mainline after push.
(Jelmer Vernooij, #522836)
* Support + signs in URLs. (Jelmer Vernooij, #552868)
* Always detect newer tags. (Jelmer Vernooij, #504314)
* Non-unicode characters in existing commit messages are now squashed.
(Jelmer vernooij, #586408, #509063)
* Cope with concurrent access to ~/.bazaar/subversion.conf.
(Vincent Ladeuil, Jelmer Vernooij, #525571)
* Concurrent processes don't mix up writes in config files (interim
fix for lp). (Vincent Ladeuil, #525571)
* Cope with various getaddrinfo errors. (Jelmer Vernooij, #609497)
* Fix annotate after bzrlib changes. (Jelmer Vernooij, #609520)
* Support _override_hook_source_branch argument to InterBranch.push().
(Jelmer Vernooij, #609178)
* Support iterating over multiple prefixes in the caching logwalker
(Jelmer Vernooij, #579491)
FEATURES
* Support fetching a limited number of revisions. (Michael Hudson)
* Support 'bzr diff --format=svn'. (Jelmer Vernooij, #555994)
* Warn about broken server when accessing codeplex. (Jelmer Vernooij)
* Use standard iterator for RemoteAccess log browsing, if
provided by subvertpy. (Jelmer Vernooij)
* Filter out ghost revisions in SvnRepository.gather_stats().
(Jelmer Vernooij, #610219)
COMPATIBILITY
* Drop support for Bazaar < 2.2. (Jelmer Vernooij)
CHANGES
* "bzr svn-import --incremental" is now the default.
"bzr svn-import --restore" provides the previous behaviour and will
restore any branches that have been removed but have not been changed
since the last import. (Jelmer Vernooij, #395266)
bzr-svn 1.0.2 2010-01-22
BUG FIXES
* Cope with Google code Subversion repositories a bit better in the
layout detection code. (Jelmer Vernooij)
* Push tags when pushing to a new repository. (Jelmer Vernooij, #459444)
* Cope with non-ascii URLs.
* During connect. (#456548, Jelmer Vernooij)
* During repository creation. (#458008, Jelmer Vernooij)
* Cope with non-ascii characters in svn author names. (#460392,
Jelmer Vernooij)
* Fix expected URL in Repository.__repr__ tests that sometimes causes
troubles if the temporary directory contains special characters.
(John Szakmeister, #460899)
* Cope with pushing new non-mainline revisions. (Jelmer Vernooij, #416328)
* Support probing for Subversion repositories over existing HTTP transports
using pycurl. (Jelmer Vernooij, #424626)
* Show Subversion revno and uuid in "bzr version-info". (Jelmer Vernooij,
#490771)
* Properly handle invalid Subversion revision numbers. (Jelmer Vernooij,
#504376)
PERFORMANCE
* When updating the log cache, fetch from newest to oldest revision as
the Subversion database backends are optimized for this.
(John Szakmeister)
* Fetch history information newest revision to oldest revision because of
speed. (John Szakmeister, #453789)
* Add extra constraints in sqlite database. (Jelmer Vernooij)
FEATURES
* New variant of the 'trunk' layout named 'trunk-variable' that accepts
branches with any level of nesting, at some performance cost.
(Jelmer Vernooij)
bzr-svn 1.0.1 2009-10-20
BUG FIXES
* Mark as compatible with Bazaar 2.1. (Jelmer Vernooij)
* Only use tdb if Tdb.get is there. (Jelmer Vernooij, #440211)
* Cope with xdg_cache_home sometimes containing unicode. (Jelmer Vernooij)
* Provide right infrastructure for bzrlib.tests.per_foreign_vcs.
(Jelmer Vernooij)
bzr-svn 1.0.0 2009-09-24
PERFORMANCE
* Avoid re-fetching the basis inventory during fetch. (Jelmer Vernooij)
BUG FIXES
* Generate valid inventory delta's when the root of a tree is replaced with an older
copy of itself. (Jelmer Vernooij)
* Hide backtrace for EAI_NONAME errors. (John Szakmeister)
* Allow commits without an author. (Jelmer Vernooij, #434230)
* Cope with extra arguments to Repository._check(). (Jelmer Vernooij)
* Properly encode symlink targets when pushing. (Jelmer Vernooij)
bzr-svn 1.0.0rc1 2009-09-20
FEATURES
* Mark as compatible with Bazaar 2.0. (Jelmer Vernooij)
BUG FIXES
* Cope with InProcessTransport errors during format probe. (Jelmer Vernooij,
#433803)
bzr-svn 0.6.5 2009-09-01
API CHANGES
* Removed unused SvnRepository.find_children() function. (Jelmer Vernooij)
FEATURES
* Mark as compatible with bzr 1.18. (Jelmer Vernooij)
bzr-svn 0.6.4 2009-08-03
BUG FIXES
* Handle 404's being returned during http probe. (#402063) (Jelmer Vernooij)
* Handle patch change requests that are too large without
printing a traceback. (#394527) (Jelmer Vernooij)
* Avoid printing backtrace on lock contention. (#401677) (Jelmer Vernooij)
* Handle http servers returning 403 Forbidden to OPTIONS requests.
(#399942) (Jelmer Vernooij)
* Cope with http exceptions in the bzr-svn probe code a bit more
gracefully. (Jelmer Vernooij)
FEATURES
* Implement custom "bzr send" format that matches the format used by
"svn diff". This is used by default when submitting diffs against
Subversion branches. (Lukas Lalinský, Jelmer Vernooij)
* Provide hint about creating working trees in 'bzr svn-import'.
(Jelmer Vernooij)
bzr-svn 0.6.3 2009-07-17
FEATURES
* Pack relevant parts of the repository after fetch.
CHANGES
* Removed svn-branching-schemes help, because it's not relevant for new
users and might be confusing for users looking at "bzr help topics".
BUG FIXES
* Fix CustomLayout.get_branches. (#388698)
* Fix fetching of revisions with no commit message set to the 2a repository
format.
* Explain repository UUIDs in "bzr help svn-layout". (#391525)
* Mark as compatible with bzr 1.17.
bzr-svn 0.6.2 2009-06-18
FEATURES
* Integrated "bzr svn-serve" into "bzr serve --svn".
* ``append_revisions_only`` now defaults to True, to prevent new users
from accidently changing their Subversion mainline and upsetting their
fellow committers. (#383777)
* ``bzr svn-set-revprops`` has been folded into ``bzr reconcile``.
PERFORMANCE
* Avoid expensive fetching of tags just to figure out they are supported.
* Only check paths that actually have file properties set for
Bazaar revision id properties.
* Reduced number of revisions analysed for repository layout from 2000 to
300.
BUG FIXES
* Only look for file properties if there are actually new file properties.
(#383414)
* Repository.iter_inventories() is now implemented.
* Tags.get_reverse_dict().has_key() is now implemented.
* Tags.get_reverse_dict().iteritems() is now implemented.
* Register Subversion smart server as first server control format,
before the Bazaar smart client attempts to send POST to .bzr/smart over
HTTP.
* Support "bzr push --create-prefix". (#383778)
* In authentication fallback, ignore schemes that can not be
mapped to ports rather than erroring out. (#384813)
* Cope with forbidden parts of the repository a bit better. (#261194)
* Handle annotate after copies in Subversion. (#381523)
* Support unicode characters in tag names. (#385813)
* Support pulling older revisions that are direct ancestors of the current
tip. (#386198)
* "bzr svn-import --incremental" now handles resurrected branches correctly.
(#383980)
* Initial support for WorkingTree.apply_inventory_delta(). (#332107)
* Support using parameter to Repository.find_branches(). (#388960)
bzr-svn 0.6.1 2009-05-22
BUG FIXES
* Cope with credentials in shared connections sometimes being a direct
dictionary.
* Fix cache inspection after push when using the TDB database.
* Prevent NoSuchRevision exception when pulling into a local branch that
is ahead of the remote branch.
* Avoid buggy LogWalker.find_latest_change(). (#378799)
* Use xdg cache directory (~/.cache/bzr-svn usually) if the Python XDG
module is available.
* Handle hidden revisions properly during branch fetch.
bzr-svn 0.6.0 2009-05-20
FEATURES
* New cache database based on TDB (http://tdb.samba.org/). This is
significantly faster than the previous SQLite backend. The TDB
backend will automatically be used if TDB is available; if not,
the old SQLite database will be used.
TDB allows multiple writers to the database. (#185200)
* The version-info command now prints 'svn revno' and 'svn uuid'
when used in Subversion checkouts.
* The info command now prints the repository UUID and last committed
revision number when used on Subversion repositories. (#320271)
* Now registers a fallback credentials store, allowing
Subversion credentials to be used for non-Subversion
access. This is useful accessing http(s) URLs will
always attempt to open using the native Bazaar formats
first.
* Better error when pushing to a (diverged) empty branch. Unfortunately
"bzr push" masks this better error at the moment. (#354929)
* New option ``warn-upgrade`` that can be used to turn off the
warnings about slow servers. (#377949)
PERFORMANCE
* A custom reverse-tag dictionary implementation is now provided, making
"bzr log" a lot faster since there's no need to find all tags beforehand.
BUG FIXES
* Support working copies with non-ascii characters in the
base path. (#356845)
* Fix handling of newlines in Bazaar revision properties round-tripped to
Subversion file properties. (#360477)
* utf8-encode basenames when looking up file ids in CHKInventories.
* Handle root replaces when doing lightweight checkouts. (#352509)
* Simplify finding local changes. (#370755)
* Handle browsing of revisions outside of prefix in repository with
branch container directories (e.g. project1/trunk, etc). (#343382)
bzr-svn 0.5.4 2009-04-08
BUG FIXES
* Ignore spurious commits setting tags to the same revision. (#342824)
* Fix compatibility with Python2.4.
* Improve error message if subvertpy can't be found. (#345067)
* Cope with spaces in branch paths. (#348439)
* Properly deal with pointless commits when branching the
repository root. (#348786)
* dpush no longer sets custom bzr revision properties. (#351292)
* Re-use passwords that have been prompted earlier. (#331073)
* Fix compatibility with Bazaar 1.14.
FEATURES
* A new content filter "svn-keywords" is now supported and behaves like
the svn:keywords Subversion file property.
* Keywords and end of line properties in svn working copies are now honored.
(#81463)
* Support override-svn-revprops = svn:author=author to allow svn:author to be
set to the author of a pushed revision rather than the committer. (#342979)
bzr-svn 0.5.3 2009-03-10
BUG FIXES
* Lazily load commands during help. (#330928)
* Fix one-line helps for dpush / foreign-mapping-upgrade. (#331051)
* Skip unicode tests if the local file system doesn't support unicode
paths.
* Don't print traceback when connection errors occur during push. (#331078)
* Fix exception importing with itrunk* layout.
* Break subversion locks in ``bzr break-lock''.
* Handle corner case following branch paths outside of prefixes in
revision metadata browser.
* Handle strange corner case in HTTP, where get_dir() works on files and we
accidently start to call update() on files.
* Don't check branch root when looking for round-tripped revisions that used
revision properties. (#294784)
* Support non-ascii characters in home directories. (#333121)
* Fix recognizing tags when using wildcard layouts. (#333960)
* Fetch left-hand side ancestry if it's outside of the prefix in
svn-import. (#334692)
* Support pushing kind changes from directory to file. (#335445)
* Fixed canonicalization issue when retrieving remote revision trees
over HTTP.
* Fix recognition of v3 mappings pushed with incomplete revision properties.
* Print proper error when a part of the repository is inaccessible during
fetch. (#323084)
* Fix concurrent access problems during push/commit. (#248289)
* Allow svn: revision specifier in non-svn branches. (#337295)
* Cope with v3 and v4 mappings being interwined in a mainline
with roundtripped revisions. (#332364)
* Print proper error when it is impossible to get a branch path
in a particular layout. (#340081)
PERFORMANCE
* Significant speed improvements when no (old) tags have to be fetched. Requires
InterBranch.pull() patch.
* The guessed layout is now only stored in the configuration and no longer
re-determined every time a repository is accessed.
* Looking for missing revisions is now done in groups, significantly improving the
time spent in the "determining revisions to fetch" step.
* A simple LRU cache is now used for texts during fetch.
* Avoid loading subvertpy in a couple more situations when probing for
Subversion repositories. (#336449)
FEATURES
* Now prints parent Subversion revision number after successful pull. (#332196)
* Annotate run against Subversion repositories now works. (#335735)
bzr-svn 0.5.2 2009-02-18
BUG FIXES
* Fix installation of cache module.
bzr-svn 0.5.1 2009-02-17
BUG FIXES
* Fix parsing of "trunk/tags" style filenames in trunk repository layout
handling. (#324970)
* "bzr push" now also works when creating new branches. "bzr svn-push"
has been removed. This requires a patched version of bzr. (#127945)
* Fixed memory usage and performance bug while iterating over a repository.
(#318993)
* When following prefixes, cope with branches copied from outside of the
prefix. (#325428)
* Handle non-mainline history a bit better in dpush. (#329284)
* Assume that ERR_XML_MALFORMED only occurs for non-Subversion
URLs. (#327287)
* Only upgrade tags for which the revision they point to has been
upgraded in svn-upgrade.
* Fix handling of "unusual" branch paths in sparse logs. (#325727)
FEATURES
* Set svn:original-date property when revision properties can be committed.
* Add transport speed progress indication. (require subvertpy >= 0.6.4)
PERFORMANCE
* New cache that stores the most important metadata information used
when browsing history.
* More efficient pull from Subversion branches, avoiding unnecessary
calculation of revision numbers. (Requires InterBranch patch to bzr)
* More efficient pull from Subversion branches, by using the local
branch ancestry to find out tag revision ids rather than the remote
Subversion branch.
* Use VersionedFiles.insert_record_stream() rather than
VersionedFiles.add_lines(), should be slightly faster.
* By default, don't use a cache for log information when connected
to a local Subversion repository.
* Only fetch rebased revisions once during ``bzr dpush'', rather than
after every pushed revision.
* Use only a single graph object during push, rather than two.
bzr-svn 0.5.0 2009-02-03
BUG FIXES
* Fixed two assertions that were always true. (#323305)
* Fixed handling of round-tripped revisions in svn-upgrade. (#320113)
* Fixed handling of password prompting with username specified. (#275953)
* Use most appropriate mapping when setting tags for a branch. (#322856)
* Fixed handling of branch roots moving. (#295416)
FEATURES
* Added "bzr check" on Subversion repositories that checks
bzr-svn metadata. (#320929)
* Allow overriding over revision-properties on a per-branch basis. (#319819)
* Added --idmap-file option to svn-upgrade.
bzr-svn 0.5.0~rc2 2009-01-30
BUG FIXES
* Install subvertpy as separate module rather than as part of
bzrlib.plugins.svn. (#306145)
* Fix some tests when running overall bzr testsuite. (#306158)
* Handle duplicate forward slashes in the path part of a URL.
* Pass utf-8 connect string to sqlite3() connect function. (#262923)
* Fix pushing to repositories not allowing the setting of revision
properties.
* Deal with newly appearing file ids correctly in dpush(). (#300979)
* Fix handling of custom layouts, which used unicode internally. (#306629)
* Fix pointless commits when using roundtripping using revision
properties. (#299943)
* Make sure branches are properly removed in iter_all_changes().
(#306288, #300006)
* Handle pushing empty branches using dpush. (#311613)
* Cope with unicode filenames in manual file id detection. (#311744)
* Print proper error message when importing from non-svn repository in
svn-import. (#313817)
* Support committing renames of filenames with non-ascii characters
in their name. (#312166)
* Support strange rename during push. (#303563)
* Print proper error when attempting to create repository in Subversion
working copy. (#310063)
* Follow copied tags correctly. (#312272)
* No longer includes subvertpy, but rather depends on external installation.
* Properly determine file ids of children of directories that are replaced
by an older copy of themselves. (#316384)
* Use unicode objects internally for sqlite. (#296868)
* New implicit file id handling for copied directories.
+ Correctly handles implicit children when parent is copied from outside of the
branch. (#304134)
+ Correctly handles file id map generation for some stacked branches. (#310916)
* Handle children implicitly copied when replacing a directory with an older
copy of itself. (#308353, #318935)
* Invalidate revision ids of bzr-roundtripped revisions when the
Subversion repository's UUID changes. (#318940, Debian #512325)
* Handle unicode symlinks. (#319317)
* Handle unicode in working tree names and some directory names. (#319313)
* Cope with missing keys properly when branching based on VersionedFiles
(#311997)
* Properly determine whether to analyse revision properties.
* Handle null: keys in Repository.texts.
* Cope with ": " in bzr-svn revision metadata stored in file properties.
(#300105)
* Fix commits in working trees. (#306566)
* Properly stop reverse tracking newly added branches. (#300006)
PERFORMANCE
* Stop iterating over non-visible children of files when determining file ids. (#306259)
This should improve the performance of stacking and lightweight checkouts.
* Imports of svn-related modules is now done lazily. There will only be two extra
imports if bzr-svn is loaded but not used.
API
* Added accessor functions for Subversion file properties.
FEATURES
* Bazaar can now use credentials stored in ~/.subversion/auth/, but this
requires pending changes in Bazaar to pass the realm along to
credentials providers.
* When possible, bzr-svn will now copy from existing paths in the repository
when committing/pushing rather than duplicating the contents.
(generic implementation that also fixes #320742)
bzr-svn 0.5.0~rc1 2008-12-08
CHANGES
* Implement set-revprops command.
* Introduces a new Bzr<->Svn mapping format. Please
read UPGRADING for details.
+ Uses revision properties where possible. (#127736)
+ Branching schemes are no longer used and are
replaced by "repository layouts", which are
much more flexible. (#130372)
* Will avoid browsing the full repository for bzr-revisions,
only closely related paths. (#158657)
FEATURES
* Performance has been improved *significantly*.
* Add bzr:skip revision property to allow skipping
more detailed analysis of revisions not created by bzr.