summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-02put the 0.2.8.10 changelog in the releasenotes tootor-0.2.8.10Roger Dingledine
2016-12-02fix typoRoger Dingledine
also reorder a stanza to put the more exciting bug first
2016-12-02Pick a release date.Nick Mathewson
2016-12-01Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-12-01Bump to 0.2.8.10Nick Mathewson
2016-12-01Start an 0.2.8.10 changelogNick Mathewson
All entries are copied verbatim from the 029 changelog.
2016-12-01Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-11-22Try to work around breakage in the OSX 10.12 SDK.Nick Mathewson
Apple is supposed to decorate their function declarations with macros to indicate which OSX version introduced them, so that you can tell the compiler that you want to build against certain versions of OSX. But they forgot to do that for clock_gettime() and getentropy(), both of which they introduced in 10.12. This patch adds a kludge to the configure.ac script where, if we detect that we are targeting OSX 10.11 or earlier, we don't even probe to see if the two offending functions are present. Closes ticket 20235.
2016-11-07Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-11-07Merge branch 'maint-0.2.7' into maint-0.2.8Nick Mathewson
2016-11-07Merge branch 'maint-0.2.6' into maint-0.2.7Nick Mathewson
2016-11-07Merge branch 'maint-0.2.5' into maint-0.2.6Nick Mathewson
2016-11-07Merge branch 'maint-0.2.4' into maint-0.2.5Nick Mathewson
2016-11-07Update geoip and geoip6 to the November 3 2016 database.Karsten Loesing
2016-11-03Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-11-03Merge branch 'bug20551_028' into maint-0.2.8Nick Mathewson
2016-11-03Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-11-03Merge remote-tracking branch 'arma/bug19969_028_squashed' into maint-0.2.8Nick Mathewson
2016-11-03Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-11-03Work around a behavior change in openssl's BUF_MEM codeNick Mathewson
In our code to write public keys to a string, for some unfathomable reason since 253f0f160e1185c, we would allocate a memory BIO, then set the NOCLOSE flag on it, extract its memory buffer, and free it. Then a little while later we'd free the memory buffer with BUF_MEM_free(). As of openssl 1.1 this doesn't work any more, since there is now a BIO_BUF_MEM structure that wraps the BUF_MEM structure. This BIO_BUF_MEM doesn't get freed in our code. So, we had a memory leak! Is this an openssl bug? Maybe. But our code was already pretty silly. Why mess around with the NOCLOSE flag here when we can just keep the BIO object around until we don't need the buffer any more? Fixes bug 20553; bugfix on 0.0.2pre8
2016-11-03Use explicit casts to avoid warnings when building with openssl 1.1Nick Mathewson
fixes bug 20551; bugfix on 0.2.1.1-alpha
2016-11-01Always call connection_ap_attach_pending() once a second.Nick Mathewson
Fixes bug 19969; bugfix on b1d56fc58. We can fix this some more in later Tors, but for now, this is probably the simplest fix possible. This is a belt-and-suspenders fix, where the earlier fix ("Ask event_base_loop to finish when we add a pending stream") aims to respond to new streams as soon as they arrive, and this one aims to make sure that we definitely respond to all of the streams.
2016-11-01Ask event_base_loop to finish when we add a pending streamRoger Dingledine
Fixes bug 19969; bugfix on b1d56fc58. We can fix this some more in later Tors, but for now, this is probably the right fix for us.
2016-11-01refactor out the tor_event_base_loopexit() callRoger Dingledine
no actual changes
2016-10-17Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-10-17Bump to 0.2.8.9-devNick Mathewson
2016-10-17Changelog and releasenotes for 0.2.8.9tor-0.2.8.9Nick Mathewson
2016-10-17Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-10-17bump to 0.2.8.9Nick Mathewson
2016-10-17Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-10-17Merge branch 'buf_sentinel_026_v2' into maint-0.2.8Nick Mathewson
2016-10-17Add a one-word sentinel value of 0x0 at the end of each buf_t chunkNick Mathewson
This helps protect against bugs where any part of a buf_t's memory is passed to a function that expects a NUL-terminated input. It also closes TROVE-2016-10-001 (aka bug 20384).
2016-10-06Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-10-06Merge branch 'maint-0.2.7' into maint-0.2.8Nick Mathewson
2016-10-06Merge branch 'maint-0.2.6' into maint-0.2.7Nick Mathewson
2016-10-06Merge branch 'maint-0.2.5' into maint-0.2.6Nick Mathewson
2016-10-06Merge branch 'maint-0.2.4' into maint-0.2.5Nick Mathewson
2016-10-05Update geoip and geoip6 to the October 6 2016 database.Karsten Loesing
2016-09-23Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-09-23Bump to 0.2.8.8-dev.Nick Mathewson
2016-09-23Add 0.2.8.8 to ReleaseNotestor-0.2.8.8Nick Mathewson
2016-09-23Pick a dateNick Mathewson
2016-09-23Fold entry into changelog.Nick Mathewson
2016-09-23Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-09-23Merge remote-tracking branch 'teor/broken-028-fallbacks' into maint-0.2.8Nick Mathewson
2016-09-22Remove another fallback whose operator opted-outteor
2016-09-22Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson
2016-09-22Update versions to 0.2.8.8Nick Mathewson
2016-09-22Start on an 0.2.8.8 changelog.Nick Mathewson
2016-09-22Merge branch 'maint-0.2.8' into release-0.2.8Nick Mathewson