/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugins/upload/NEWS

  • Committer: Robert Collins
  • Date: 2006-02-25 05:48:54 UTC
  • mto: (1587.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1588.
  • Revision ID: robertc@robertcollins.net-20060225054854-2f9e99cd1469d8c2
Make reconcile work with shared repositories.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
########################
2
 
bzr-upload Release Notes
3
 
########################
4
 
 
5
 
.. contents:: List of Releases
6
 
   :depth: 1
7
 
 
8
 
bzr-upload 1.2.0
9
 
################
10
 
 
11
 
:1.2.0: NOT RELEASED YET
12
 
 
13
 
New Features
14
 
************
15
 
 
16
 
.. New commands, options, etc that users may wish to try out.
17
 
 
18
 
Improvements
19
 
************
20
 
 
21
 
* Use bzr config stacks, bzr >= 2.5 is now required. (Vincent Ladeuil)
22
 
 
23
 
Bug Fixes
24
 
*********
25
 
 
26
 
.. Fixes for situations where bzr would previously crash or give incorrect
27
 
   or undesirable results.
28
 
 
29
 
Documentation
30
 
*************
31
 
 
32
 
.. Improved or updated documentation.
33
 
 
34
 
Testing
35
 
*******
36
 
 
37
 
.. Fixes and changes that are only relevant to bzr's test framework and 
38
 
   suite.  This can include new facilities for writing tests, fixes to 
39
 
   spurious test failures and changes to the way things should be tested.
40
 
 
41
 
 
42
 
bzr-upload 1.1.0
43
 
################
44
 
 
45
 
:1.1.0: 2012-03-15
46
 
 
47
 
New Features
48
 
************
49
 
 
50
 
.. New commands, options, etc that users may wish to try out.
51
 
 
52
 
Improvements
53
 
************
54
 
 
55
 
.. Improvements to existing commands, especially improved performance 
56
 
   or memory usage, or better results.
57
 
 
58
 
Bug Fixes
59
 
*********
60
 
 
61
 
.. Fixes for situations where bzr would previously crash or give incorrect
62
 
   or undesirable results.
63
 
 
64
 
Documentation
65
 
*************
66
 
 
67
 
.. Improved or updated documentation.
68
 
 
69
 
Testing
70
 
*******
71
 
 
72
 
* Now requires bzr >= 2.5 for testing. The plugin itself should still work
73
 
  with previous versions. (Vincent Ladeuil)
74
 
 
75
 
* Avoid deprecation warning with bzr-2.5 by using tree.iter_entries_by_dir
76
 
  avoiding direct inventory access, this should still be compatible with
77
 
  older bzr versions. (Vincent Ladeuil)
78
 
 
79
 
bzr-upload 1.0.1
80
 
################
81
 
 
82
 
:1.0.1: 2012-03-15
83
 
 
84
 
Bug Fixes
85
 
*********
86
 
 
87
 
* Fix a typo to avoid crashing when encountering symlinks during
88
 
  a full upload. (Jonathan Paugh)
89
 
 
90
 
Testing
91
 
*******
92
 
 
93
 
* Use assertPathDoesNotExist and assertPathExist instead of failIfExists and
94
 
  failUnlessExists in the test suite. This requires bzr-2.4 to run the tests
95
 
  but doesn't affect the plugin compatibility itself with previous verions
96
 
  of bzr. (Vincent Ladeuil)
97
 
 
98
 
 
99
 
bzr-upload 1.0.0
100
 
################
101
 
 
102
 
:1.0.0: 2010-12-10
103
 
 
104
 
New Features
105
 
************
106
 
 
107
 
* ``.bzrignore-upload`` can be used to avoid uploading some files or
108
 
  directories. It uses the same syntax as ``.bzrignore`` including regular
109
 
  expressions.
110
 
  (Martin Albisetti, Vincent Ladeuil, #499525, #499941)
111
 
 
112
 
* Remote branches can be used to upload from.
113
 
  (Gary van der Merwe, Vincent Ladeuil)
114
 
 
115
 
* The auto hook verbosity is now controlled by the 'upload_auto_quiet'
116
 
  config variable. If defaults to False if not set.
117
 
  (Vincent Ladeuil, #312686)
118
 
 
119
 
* The file where the revision id is stored on the remote server is now
120
 
  controlled by the 'upload_revid_location' configuration variable. It
121
 
  defaults to '.bzr-upload.revid'.
122
 
  (Vincent Ladeuil, #423331)
123
 
 
124
 
* Upload now checks that the revision we are uploading is a descendent
125
 
  from the revision that was uploaded, and hence that the branchs that
126
 
  they were uploaded from have not diverged. This can be ignored by passing
127
 
  the --overwrite option. (Gary van der Merwe)
128
 
 
129
 
 
130
 
Bug Fixes
131
 
*********
132
 
 
133
 
* Fix auto hook trying to display an url without using the right encoding.
134
 
  (Vincent Ladeuil, #312686)
135
 
 
136
 
* Fix compatibility with bzr versions that don't provide
137
 
  get_user_option_as_bool().
138
 
  (Vincent Ladeuil, #423791)
139
 
 
140
 
* Emit warnings instead of backtrace when symlinks are encountered.
141
 
 (Vincent Ladeuil, #477224)
142
 
 
143
 
Documentation
144
 
*************
145
 
 
146
 
* Clarify 'changes' definition in online help.
147
 
  (Vincent Ladeuil, #275538)
148
 
 
149
 
* Move the README file into the module doc string so that it
150
 
  becomes available through the 'bzr help plugins/upload'
151
 
  command.  (Vincent Ladeuil, #424193)
152
 
 
153
 
Testing
154
 
*******
155
 
 
156
 
* Make tests requiring a unicode file system skip where applicable.
157
 
  (Vincent Ladeuil, #671964)