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
|
########################
bzr-upload Release Notes
########################
.. contents:: List of Releases
:depth: 1
bzr-upload 1.2.0
################
:1.2.0: NOT RELEASED YET
New Features
************
.. New commands, options, etc that users may wish to try out.
Improvements
************
* Use bzr config stacks, bzr >= 2.5 is now required. (Vincent Ladeuil)
Bug Fixes
*********
.. Fixes for situations where bzr would previously crash or give incorrect
or undesirable results.
Documentation
*************
.. Improved or updated documentation.
Testing
*******
.. Fixes and changes that are only relevant to bzr's test framework and
suite. This can include new facilities for writing tests, fixes to
spurious test failures and changes to the way things should be tested.
bzr-upload 1.1.0
################
:1.1.0: 2012-03-15
New Features
************
.. New commands, options, etc that users may wish to try out.
Improvements
************
.. Improvements to existing commands, especially improved performance
or memory usage, or better results.
Bug Fixes
*********
.. Fixes for situations where bzr would previously crash or give incorrect
or undesirable results.
Documentation
*************
.. Improved or updated documentation.
Testing
*******
* Now requires bzr >= 2.5 for testing. The plugin itself should still work
with previous versions. (Vincent Ladeuil)
* Avoid deprecation warning with bzr-2.5 by using tree.iter_entries_by_dir
avoiding direct inventory access, this should still be compatible with
older bzr versions. (Vincent Ladeuil)
bzr-upload 1.0.1
################
:1.0.1: 2012-03-15
Bug Fixes
*********
* Fix a typo to avoid crashing when encountering symlinks during
a full upload. (Jonathan Paugh)
Testing
*******
* Use assertPathDoesNotExist and assertPathExist instead of failIfExists and
failUnlessExists in the test suite. This requires bzr-2.4 to run the tests
but doesn't affect the plugin compatibility itself with previous verions
of bzr. (Vincent Ladeuil)
bzr-upload 1.0.0
################
:1.0.0: 2010-12-10
New Features
************
* ``.bzrignore-upload`` can be used to avoid uploading some files or
directories. It uses the same syntax as ``.bzrignore`` including regular
expressions.
(Martin Albisetti, Vincent Ladeuil, #499525, #499941)
* Remote branches can be used to upload from.
(Gary van der Merwe, Vincent Ladeuil)
* The auto hook verbosity is now controlled by the 'upload_auto_quiet'
config variable. If defaults to False if not set.
(Vincent Ladeuil, #312686)
* The file where the revision id is stored on the remote server is now
controlled by the 'upload_revid_location' configuration variable. It
defaults to '.bzr-upload.revid'.
(Vincent Ladeuil, #423331)
* Upload now checks that the revision we are uploading is a descendent
from the revision that was uploaded, and hence that the branchs that
they were uploaded from have not diverged. This can be ignored by passing
the --overwrite option. (Gary van der Merwe)
Bug Fixes
*********
* Fix auto hook trying to display an url without using the right encoding.
(Vincent Ladeuil, #312686)
* Fix compatibility with bzr versions that don't provide
get_user_option_as_bool().
(Vincent Ladeuil, #423791)
* Emit warnings instead of backtrace when symlinks are encountered.
(Vincent Ladeuil, #477224)
Documentation
*************
* Clarify 'changes' definition in online help.
(Vincent Ladeuil, #275538)
* Move the README file into the module doc string so that it
becomes available through the 'bzr help plugins/upload'
command. (Vincent Ladeuil, #424193)
Testing
*******
* Make tests requiring a unicode file system skip where applicable.
(Vincent Ladeuil, #671964)
|