summaryrefslogtreecommitdiff
path: root/changes
AgeCommit message (Collapse)Author
2019-05-02Merge remote-tracking branch 'tor-github/pr/989'Nick Mathewson
2019-05-01Merge remote-tracking branch 'tor-github/pr/950'Nick Mathewson
2019-04-30Merge branch 'maint-0.4.0'George Kadianakis
2019-04-30Merge branch 'tor-github/pr/978' into maint-0.4.0George Kadianakis
2019-04-30Merge branch 'tor-github/pr/985'George Kadianakis
2019-04-30Merge branch 'tor-github/pr/937'George Kadianakis
2019-04-30Merge branch 'tor-github/pr/936'George Kadianakis
2019-04-30Merge branch 'tor-github/pr/993'George Kadianakis
2019-04-30Merge branch 'tor-github/pr/983'George Kadianakis
2019-04-30Merge branch 'tor-github/pr/980'David Goulet
Signed-off-by: David Goulet <dgoulet@torproject.org>
2019-04-30Merge branch 'tor-github/pr/909'David Goulet
Signed-off-by: David Goulet <dgoulet@torproject.org>
2019-04-30Changes file for periodic event movementNick Mathewson
2019-04-30Changes file for 29732.Nick Mathewson
2019-04-30Add changes filerl1987
2019-04-29Merge remote-tracking branch 'tor-github/pr/972'Nick Mathewson
2019-04-29Merge branch 'maint-0.4.0'Nick Mathewson
2019-04-29Merge remote-tracking branch 'tor-github/pr/974' into maint-0.4.0Nick Mathewson
2019-04-27Remove obsolete OpenSUSE initscriptrl1987
2019-04-26Use fast check for missing id in node_is_a_configured_bridge()Nick Mathewson
Fixes bug 30308; bugfix on 0.3.5.1-alpha.
2019-04-26Use a linear algorithm to subtract two nodelists.Nick Mathewson
The nodelist_idx for each node_t serves as a unique identifier for the node, so we can use a bitarray to hold all the excluded nodes, and then remove them from the smartlist. Previously use used smartlist_subtract(sl, excluded), which is O(len(sl)*len(excluded)). We can use this function in other places too, but this is the one that showed up on the profiles of 30291. Closes ticket 30307.
2019-04-25Merge remote-tracking branch 'tor-github/pr/889'Nick Mathewson
2019-04-25changes file for ticket 30091 (controller parsing refactor)Nick Mathewson
2019-04-25When parsing a multiline controller command, be careful with linebreaksNick Mathewson
The first line break in particular was mishandled: it was discarded if no arguments came before it, which made it impossible to distinguish arguments from the first line of the body. To solve this, we need to allocate a copy of the command rather than using NUL to separate it, since we might have "COMMAND\n" as our input. Fixes ticket 29984.
2019-04-25Merge branch 'maint-0.4.0'George Kadianakis
2019-04-25Merge branch 'tor-github/pr/960' into maint-0.4.0George Kadianakis
2019-04-25Merge branch 'tor-github/pr/953'George Kadianakis
2019-04-25Lower log level of unlink() errors in networkstatus_set_current_consensus().Alexander Færøy
In this patch we lower the log level of the failures for the three calls to unlink() in networkstatus_set_current_consensus(). These errors might trigger on Windows because the memory mapped consensus file keeps the file in open state even after we have close()'d it. Windows will then error on the unlink() call with a "Permission denied" error. The consequences of ignoring these errors is that we leave an unused file around on the file-system, which is an easier way to fix this problem right now than refactoring networkstatus_set_current_consensus(). See: https://bugs.torproject.org/29930
2019-04-24Merge remote-tracking branch 'tor-github/pr/942'Nick Mathewson
2019-04-24Merge remote-tracking branch 'tor-github/pr/964'Nick Mathewson
2019-04-24Merge branch 'tor-github/pr/951'David Goulet
2019-04-24Merge branch 'tor-github/pr/955'David Goulet
2019-04-24Merge branch 'tor-github/pr/939'David Goulet
2019-04-23Merge remote-tracking branch 'tor-github/pr/944'Nick Mathewson
2019-04-23Merge remote-tracking branch 'tor-github/pr/935'Nick Mathewson
2019-04-23Merge remote-tracking branch 'tor-github/pr/971'Nick Mathewson
2019-04-23Merge branch 'ticket30051_take2_squashed'Nick Mathewson
2019-04-23Add changes filerl1987
2019-04-23Merge remote-tracking branch 'tor-github/pr/962'Nick Mathewson
2019-04-23Stop looking for scripts in the build directory during "make shellcheck"teor
Fixes bug 30263; bugfix on 0.4.0.1-alpha.
2019-04-23Coding Standards: Document how to find git commitsteor
Document how to find git commits and tags for bug fixes in CodingStandards.md. And update some changes file documentation. Closes ticket 30261.
2019-04-22Travis: Show stem's tor log after failureteor
Closes ticket 30234.
2019-04-19Merge branch 'maint-0.3.4' into maint-0.3.5teor
2019-04-19Merge remote-tracking branch 'tor-github/pr/710' into maint-0.3.5teor
2019-04-19Merge remote-tracking branch 'tor-github/pr/726' into maint-0.3.5teor
2019-04-19Merge remote-tracking branch 'tor-github/pr/745' into maint-0.3.5teor
2019-04-19Merge remote-tracking branch 'tor-github/pr/947' into maint-0.3.5teor
2019-04-19Merge remote-tracking branch 'tor-github/pr/946' into maint-0.3.4teor
2019-04-19Merge remote-tracking branch 'tor-github/pr/638' into maint-0.3.4teor
2019-04-19Merge remote-tracking branch 'tor-github/pr/791' into maint-0.3.4teor
2019-04-18Merge branch 'tor-github/pr/938'George Kadianakis