Ticket #1223: news-1223.dpatch

File news-1223.dpatch, 11.2 KB (added by francois, at 2010-10-30T11:36:52Z)
Line 
12 patches for repository http://allmydata.org/source/tahoe-lafs/trunk:
2
3Sat Oct 30 12:13:51 CEST 2010  Francois Deppierraz <francois@ctrlaltdel.ch>
4  * NEWS: add a NEWS entry about bug #1045
5
6Sat Oct 30 13:11:30 CEST 2010  Francois Deppierraz <francois@ctrlaltdel.ch>
7  * NEWS: add news entry for #1223
8
9New patches:
10
11[NEWS: add a NEWS entry about bug #1045
12Francois Deppierraz <francois@ctrlaltdel.ch>**20101030101351
13 Ignore-this: 7e758afbbd0f1d22a5d0b4fc38661c1d
14] hunk ./NEWS 18
15    involving a non-ASCII filename. (#1224)
16  - Fix rarely-encountered bug involving printing large strings to
17    the console on Windows. (#1232)
18+ - Fix a memory leak in the ResponseCache which is used during mutable file
19+   operations. (#1045)
20 
21 * Release 1.8.0 (2010-09-23)
22 
23[NEWS: add news entry for #1223
24Francois Deppierraz <francois@ctrlaltdel.ch>**20101030111130
25 Ignore-this: 6b6afd4b0f0527a3c9784c1db95d083
26] hunk ./NEWS 20
27    the console on Windows. (#1232)
28  - Fix a memory leak in the ResponseCache which is used during mutable file
29    operations. (#1045)
30+ - Fix a regression and add a performance improvement in the downloader. This
31+   issue caused repair to fail in some special cases. (#1223)
32 
33 * Release 1.8.0 (2010-09-23)
34 
35
36Context:
37
38[setup: run require_auto_deps() before attempting to import any deps in __init__.py
39zooko@zooko.com**20101030081035
40 Ignore-this: ffcaf2450628543e020e9919e455f691
41 For one thing, this makes missing-dependency failures into DistributionNotFound errors instead of ImportErrors, which might be more useful to the user. For another thing, if someone is using distributions that were installed with --multi-version, then they might be not importable until after require_auto_deps() has been run. (The docs claim that this would be the case, but we don't have an example of this happening at this time.)
42] 
43[setup: show-tool-versions: emit module and __version__ information even when module name != distribution (package) name, and add TwistedCore, TwistedWeb, and TwistedConch
44zooko@zooko.com**20101030070233
45 Ignore-this: 3df19910090d44502ddeeef5d9c29a7
46] 
47[misc/build_helpers/test-with-fake-pkg.py: look for eggs in the parent of the src directory. refs #1190
48david-sarah@jacaranda.org**20101030034303
49 Ignore-this: 4a3cf286272cdb5d06aac15fb5998b33
50] 
51[scripts/runner.py: fix unused import of allmydata. refs #1190
52david-sarah@jacaranda.org**20101030003149
53 Ignore-this: b2fc67f6192ea7ccf8a5ad010ce74a64
54] 
55[scripts/runner.py: remove pkg_resources.require() calls. These are at best redundant because we have already called _auto_deps.require_auto_deps() (from allmydata.__init__) at that point, and they are causing failure of the test-from-prefixdir step on some buildslaves. refs #1190
56david-sarah@jacaranda.org**20101029235328
57 Ignore-this: e00dee63acc7b76a5755025d75abf524
58] 
59[misc/build_helpers/run_trial.py: look for zetuptoolz egg in the parent directory, not the cwd of run_trial. refs #1190
60david-sarah@jacaranda.org**20101029230329
61 Ignore-this: 1596fb8c290d1c706f079701b1857db8
62] 
63[bundled zetuptoolz: if __main__.__requires__ exists then do not add packages to the working set if they provide an incompatible version of a package. Also put a complete __requires__ listing the transitive closure of dependencies at the beginning of generated scripts, rather than a shallow __requires__ specifying only the application version. refs #1190
64david-sarah@jacaranda.org**20101029223111
65 Ignore-this: a95f1967884340e53bf3adf90db40cfc
66] 
67[setup.py, misc/build_helpers/run_trial.py: use undocumented __requires__ variable to cause setuptools/zetuptoolz to put the correct versions of dependencies on sys.path. Also ensure that run_trial adds the bundled zetuptoolz egg at the start of sys.path if present. Make the source directory comparison work correctly for the test-with-fake-pkg build step. refs #1190
68david-sarah@jacaranda.org**20101029222825
69 Ignore-this: 8b09366eb6ce3d55c7db5239077a0fac
70] 
71[test_runner.py: fix error in BinTahoe.test_version_no_noise introduced by last patch. refs #1235
72david-sarah@jacaranda.org**20101029221123
73 Ignore-this: 4bf21ea34768e8e6adf104e56f939fd0
74] 
75[test_runner.py: also allow 'from pkg_resources import load_entry_point' as noise. refs #1235.
76david-sarah@jacaranda.org**20101029204246
77 Ignore-this: a47440aa2cdd29ce55ac7c6c7f4bcaf2
78] 
79[test_runner.py: if the only noise is 'UserWarning: Unbuilt egg for setuptools', skip instead of failing the no_noise tests. This version avoids 'any' to be compatible with Python < 2.5. refs #1235.
80david-sarah@jacaranda.org**20101029191804
81 Ignore-this: 83ca1543fc9673e664a8eeefe1eba429
82] 
83[NEWS: clarify (strengthen) description of what backdoors.rst declares, and add bugfix entries for 'tahoe cp' and Windows console bugs. refs #1216, #1224, #1232
84david-sarah@jacaranda.org**20101028180046
85 Ignore-this: 1c3eef3cd353b06b6ee00ce87c5ef59a
86] 
87[make ResponseCache smarter to avoid memory leaks: don't record timestamps, use DataSpans to merge entries, and clear the cache when we see a new seqnum. refs #1045, #1229
88david-sarah@jacaranda.org**20101027043302
89 Ignore-this: 88fd6fba7f35a2f8af1693b92718f5f3
90] 
91[windows/fixups.py: limit length of string passed in a single call to WriteConsoleW. fixes #1232.
92david-sarah@jacaranda.org**20101027021636
93 Ignore-this: fbd99e0d22493974696d37925d97c7d6
94] 
95[scripts/tahoe_backup.py: oops, fix missing import, thanks pyflakes
96Brian Warner <warner@lothar.com>**20101029094223
97 Ignore-this: 285c35af824935641a5be35c008b080c
98 
99 test_cli.py: hush minor pyflakes complaint
100] 
101[mutable/servermap.py: update comment. Closes #1231.
102Brian Warner <warner@lothar.com>**20101029091424
103 Ignore-this: 80bf854123fc254e097a81b82bdf4990
104] 
105[tahoe_cp.py: Don't call urllib.quote with an Unicode argument, fix #1224
106Brian Warner <warner@lothar.com>**20101029084520
107 Ignore-this: 5524722d5e5babbb73ca0969d54967f6
108 tahoe_backup.py: Fix another (potential) occurrence of calling urllib.quote()
109 with an Unicode parameter
110] 
111[fix #1223, crash+inefficiency during repair due to read overrun
112Brian Warner <warner@lothar.com>**20101029082036
113 Ignore-this: e6aa0295ad254544da3b5cc41b33d862
114 
115 * repairer (really the uploader) reads beyond end of input file (Uploadable)
116 * new-downloader does not tolerate overreads
117 * uploader does lots of tiny reads (inefficient)
118 
119 This fixes the last two. The uploader still does a single overread at the end
120 of the input file, but now that's ok so we can leave it in place. The
121 uploader now expects the Uploadable to behave like a normal disk
122 file (reading beyond EOF will return less data than was asked for), and now
123 the new-downloadable behaves that way.
124] 
125[add misc/build_helpers/test-with-fake-pkg.py. refs #1190
126david-sarah@jacaranda.org**20101029025150
127 Ignore-this: 995f220962708f1bad83092161130f67
128] 
129[startstop_node.py: pyflakes import fix. refs #1190
130david-sarah@jacaranda.org**20101028014805
131 Ignore-this: 369ef5022c8ee5a0d8341af01553bcef
132] 
133['tahoe start': use import+call rather than find+spawn
134"Brian Warner <warner@lothar.com>"**20101027061342
135 
136 This removes the need to use a locally-built (dependency) bin/twistd, and
137 removes a big chunk of behavior differences between unix and windows. It
138 also happens to resolve the "client node probably started" uncertainty.
139 Might help with #1190, #602, and #71.
140] 
141[docs/known_issues.rst: Add section on traffic analysis. Fix URL for current version of file.
142david-sarah@jacaranda.org**20101024234259
143 Ignore-this: f3416e79d3bb833f5118da23e85723ad
144] 
145[test_mutable.py: add test for ResponseCache memory leak. refs #1045, #1129
146david-sarah@jacaranda.org**20101024193409
147 Ignore-this: 3aee7f0677956cc6deaccb4d5b8e415f
148] 
149[test_encodingutil.py: test_argv_to_unicode modified the wrong encoding variable. fixes #1214
150david-sarah@jacaranda.org**20101023035810
151 Ignore-this: e5f1f849931b96939facc53d93ff61c5
152] 
153[docs/running.html: fix missing end-quote, and change frontends/ doc references to .rst.
154david-sarah@jacaranda.org**20101024171500
155 Ignore-this: 47c645a6595e1790b1d1adfa71af0e1d
156] 
157[docs/running.html: 'tahoe create-client' now creates a node with storage disabled. Also change configuration.txt references to configuration.rst.
158david-sarah@jacaranda.org**20101024170431
159 Ignore-this: e5b048055494ba3505bb8a506610681c
160] 
161[doc: add explanation of the motivation for the surprising and awkward API to erasure coding
162zooko@zooko.com**20101015060202
163 Ignore-this: 428913ff6e1bf5b393deffb1f20b949b
164] 
165[setup: catch and log ValueError from locale.getdefaultlocale() in show-tool-versions.py
166zooko@zooko.com**20101015054440
167 Ignore-this: 827d91490562c32ed7cf6526dfded773
168 I got a bug report from Mathias Baert showing that locale.getdefaultlocale() raises an exception on his Mac OS X system. Heh.
169] 
170[docs: update how-to-make-a-release doc with a few tweaks from the 1.8.0 process
171zooko@zooko.com**20101015054413
172 Ignore-this: ca5e9478531a3393792ae283239549dd
173] 
174[docs: update NEWS ref: #1216
175zooko@zooko.com**20101015053719
176 Ignore-this: 2e0b92e4145d667cdf075e64b7965530
177] 
178[docs: fix tab-vs-spaces, make some CLI examples <tt>/"literal", wrap some to
179Brian Warner <warner@lothar.com>**20101015060606
180 Ignore-this: eae08bdf0afb19a2fbf41c31e70a8122
181 80-cols, remove spurious whitespace. Add rst2html.py rule to Makefile.
182] 
183[docs: add Peter Secor, Shawn Willden, and Terrell Russell as signatories to docs/backdoors.rst
184zooko@zooko.com**20101015053242
185 Ignore-this: c77adf819d664f673e17c4aaeb353f33
186] 
187[docs: convert all .txt docs to .rst thanks to Ravi Pinjala
188zooko@zooko.com**20101015052913
189 Ignore-this: 178a5122423189ecfc45b142314a78ec
190 fixes #1225
191] 
192[docs: add statement on our refusal to insert backdoors
193zooko@zooko.com**20101006051147
194 Ignore-this: 644d308319a7b80c4434bdff9760404a
195] 
196[setup: add --multi-version to the "setup.py develop" command-line
197zooko@zooko.com**20101005182350
198 Ignore-this: 709155cc21caff29826b8d41a8c8d63d
199 fixes #530. I earlier tried this twice (see #530 for history) and then twice rolled it back due to some problems that arose. However, I didn't write down what the problems were in enough detail on the ticket that I can tell today whether those problems are still issues, so here goes the third attempt. (I did write down on the ticket that it would not create site.py or .pth files in the target directory with --multi-version mode, but I didn't explain why *that* was a problem.)
200] 
201[setup: use execfile to access _auto_deps.py in its proper location of src/allmydata/ instead of copying it into place when setup.py is executed
202zooko@zooko.com**20100906055714
203 Ignore-this: c179b42672d775580afad40121f86812
204] 
205[trivial: M-x whitespace-cleanup
206zooko@zooko.com**20100903144712
207 Ignore-this: 1bb764d11ac69b4a35ea091cfb13158a
208] 
209[minor: remove unused interface declaration, change allmydata.org to tahoe-lafs.org in email address, fix wording in relnotes.txt
210zooko@zooko.com**20100930153708
211 Ignore-this: a452969228afed2774de375e29fa3048
212] 
213[immutable/repairer.py: don't use the default happiness setting when repairing
214Kevan Carstensen <kevan@isnotajoke.com>**20100927200102
215 Ignore-this: bd704d9744b970849da8d46a16b8089a
216] 
217[NEWS: note dependency updates to pycryptopp and pycrypto.
218david-sarah@jacaranda.org**20100924191207
219 Ignore-this: eeaf5c9c9104f24c450c2ec4482ac1ee
220] 
221[TAG allmydata-tahoe-1.8.0
222zooko@zooko.com**20100924021631
223 Ignore-this: 494ca0a885c5e20c883845fc53e7ab5d
224] 
225Patch bundle hash:
22633bbc01817352e23b08b315f86107f9305676355