aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
Commit message (Collapse)AuthorAge
* partial changelog for 0.2.2.15-alphaRoger Dingledine2010-07-21
|
* 0.2.2.14-alpha blurbRoger Dingledine2010-07-13
|
* bump to 0.2.2.14-alpha-devRoger Dingledine2010-07-13
|
* guh. 'git commit' did not do what i expect.Roger Dingledine2010-07-12
|
* fold in the latest changesRoger Dingledine2010-07-09
|
* start an 0.2.2.14-alpha changelogRoger Dingledine2010-06-29
|
* Copy the release notes from 0.2.1.26 into the master ChangeLogNick Mathewson2010-06-11
|
* put the blurb in 0.2.2.13-alphaRoger Dingledine2010-05-05
|
* bump to 0.2.2.13-alphaRoger Dingledine2010-04-24
|
* prepare the 0.2.2.13-alpha changelogRoger Dingledine2010-04-23
|
* blurbs for two recent alphasRoger Dingledine2010-04-23
|
* merge in the bug 1364 fixRoger Dingledine2010-04-20
|
* prepare for 0.2.2.12-alphaRoger Dingledine2010-04-20
|
* bump to 0.2.2.11-alpha-devRoger Dingledine2010-04-19
|
* bump to 0.2.2.11-alphaRoger Dingledine2010-04-15
|
* gather together the 0.2.2.11-alpha changelogRoger Dingledine2010-04-15
|
* Merge branch 'maint-0.2.1'Roger Dingledine2010-04-03
|\ | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.in contrib/tor-mingw.nsi.in src/win32/orconfig.h
| * give us a blurb; add stanza to the releasenotesRoger Dingledine2010-03-16
| |
| * bump to 0.2.1.25Roger Dingledine2010-03-15
| | | | | | | | it's perfect, let's ship it
* | fold in the recent changelog entriesRoger Dingledine2010-04-02
| |
* | let people test the RefuseUnknownExits ideaRoger Dingledine2010-03-10
| |
* | blurbs for recent alphasRoger Dingledine2010-03-08
| |
* | fix the tor-exit-notice.html file (bug 1295)Roger Dingledine2010-03-08
| |
* | bump to 0.2.2.10-alpha-devRoger Dingledine2010-03-08
| | | | | | | | now's your chance to destabilize it
* | prepare 0.2.2.10-alpha for releaseRoger Dingledine2010-03-07
| |
* | Merge branch 'maint-0.2.1'Roger Dingledine2010-03-06
|\| | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.in contrib/tor-mingw.nsi.in src/win32/orconfig.h
| * clean up the 0.2.1.25 changelogRoger Dingledine2010-03-06
| |
* | Merge commit 'sebastian/manpage'Nick Mathewson2010-03-04
|\ \
| * | Add configure switch to disable use of asciidocSebastian Hahn2010-03-01
| | | | | | | | | | | | | | | Also break the build if that switch isn't used and asciidoc isn't available.
| * | Simplify asciidoc-helperSebastian Hahn2010-03-01
| | | | | | | | | | | | | | | We don't need sed for our string manipulation, so let's get rid of it. Suggested by weasel.
| * | Ship the asciidoc-helper file in our tarballsSebastian Hahn2010-03-01
| | | | | | | | | | | | | | | Otherwise, the build process breaks when one of the .1.txt gets a new mtime. Suggested by weasel.
* | | Merge commit 'origin/maint-0.2.1'Nick Mathewson2010-03-04
|\ \ \ | |/ / |/| / | |/ | | | | Conflicts: src/or/config.c src/or/test.c
| * Apply Roger's bug 1269 fix.Nick Mathewson2010-03-04
| | | | | | | | | | | | | | | | | | | | | | | | | | From http://archives.seul.org/tor/relays/Mar-2010/msg00006.html : As I understand it, the bug should show up on relays that don't set Address to an IP address (so they need to resolve their Address line or their hostname to guess their IP address), and their hostname or Address line fails to resolve -- at that point they'll pick a random 4 bytes out of memory and call that their address. At the same time, relays that *do* successfully resolve their address will ignore the result, and only come up with a useful address if their interface address happens to be a public IP address.
* | Fix a consensus-extension bug found by outofwordsNick Mathewson2010-02-27
| | | | | | | | | | | | | | | | | | | | When the bandwidth-weights branch added the "directory-footer" token, and began parsing the directory footer at the first occurrence of "directory-footer", it made it possible to fool the parsing algorithm into accepting unsigned data at the end of a consensus or vote. This patch fixes that bug by treating the footer as starting with the first "directory-footer" or the first "directory-signature", whichever comes first.
* | Merge remote branch 'origin/maint-0.2.1'Nick Mathewson2010-02-27
|\| | | | | | | | | | | Conflicts: ChangeLog src/or/routerparse.c
| * Properly handle non-terminated stringsSebastian Hahn2010-02-27
| | | | | | | | | | | | | | | | Treat strings returned from signed_descriptor_get_body_impl() as not NUL-terminated. Since the length of the strings is available, this is not a big problem. Discovered by rieo.
| * Proper NULL checking in circuit_list_path_impl()Sebastian Hahn2010-02-26
| | | | | | | | | | | | | | Another dereference-then-NULL-check sequence. No reports of this bug triggered in the wild. Fixes bugreport 1256. Thanks to ekir for discovering and reporting this bug.
| * Proper NULL checking for hsdesc publicationSebastian Hahn2010-02-26
| | | | | | | | | | | | | | | | | | Fix a dereference-then-NULL-check sequence. This bug wasn't triggered in the wild, but we should fix it anyways in case it ever happens. Also make sure users get a note about this being a bug when they see it in their log. Thanks to ekir for discovering and reporting this bug.
| * Zero a cipher completely before freeing itSebastian Hahn2010-02-26
| | | | | | | | | | | | We used to only zero the first ptrsize bytes of the cipher. Since cipher is large enough, we didn't zero too many bytes. Discovered and fixed by ekir. Fixes bug 1254.
* | Merge remote branch 'mikeperry/consensus-bw-weights5-merge'Nick Mathewson2010-02-25
|\ \ | | | | | | | | | | | | Conflicts: ChangeLog
| * | Add a changelog entry for the bandwidth weightings.Mike Perry2010-02-22
| | |
* | | Merge remote branch 'sebastian/manpage'Nick Mathewson2010-02-25
|\ \ \
| * | | Restrict PerConnBWRate|Burst to INT32_MAX, update manpageSebastian Hahn2010-02-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All other bandwidthrate settings are restricted to INT32_MAX, but this check was forgotten for PerConnBWRate and PerConnBWBurst. Also update the manpage to reflect the fact that specifying a bandwidth in terabytes does not make sense, because that value will be too large.
* | | | Update a section of the exit notice file, give it a changelog.Sebastian Hahn2010-02-23
|/ / /
* | | Proper NULL checking for hsdesc publicationSebastian Hahn2010-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | Fix a dereference-then-NULL-check sequence. This bug wasn't triggered in the wild, but we should fix it anyways in case it ever happens. Also make sure users get a note about this being a bug when they see it in their log. Thanks to ekir for discovering and reporting this bug.
* | | Fix another coverity-spotted memleakSebastian Hahn2010-02-23
|/ /
* | elevate a changelog entry, and get my mailto out of the man pageRoger Dingledine2010-02-22
| |
* | Merge remote branch 'sebastian/bug1254'Nick Mathewson2010-02-22
|\ \
| * | Zero a cipher completely before freeing itSebastian Hahn2010-02-22
| | | | | | | | | | | | | | | | | | We used to only zero the first ptrsize bytes of the cipher. Since cipher is large enough, we didn't zero too many bytes. Discovered and fixed by ekir. Fixes bug 1254.
* | | Expand homedirs in paths passed to tor-checkkeySebastian Hahn2010-02-22
|/ / | | | | | | | | This is so that coverity stops complaining about using a user-supplied string with the open() syscall. Let's see if it works.