Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-10 | Stop setting $CARGO_HOME | teor | |
cargo will use the user's $CARGO_HOME, or $HOME/.cargo by default. Fixes bug 26497; bugfix on 0.3.1.5-alpha. | |||
2018-08-09 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-08-09 | Travis: add lzma and zstd, where available | teor | |
Forward-ports parts of the 0.3.2 travis config on top of the 0.2.9 merge. Part of 24629, also fixes 27090. | |||
2018-08-09 | Merge branch 'travis-osx-029' into travis-osx-032 | teor | |
Replace 032 .travis.yml with 029 .travis.yml. Subsequent commits will restore 032 functionality. | |||
2018-08-09 | Travis: run an asciidoc build | teor | |
Implements 27087. | |||
2018-08-09 | Travis: Use ccache | teor | |
Part of ticket 26952. | |||
2018-08-09 | Travis: create configure flags once, then echo the flags | teor | |
Creating the configure flags once avoids inconsistent flags between configure and distcheck configure. Echoing the flags helps developers work out what configure is doing. (Backported to 0.2.9 and later as a precaution.) Fixes 27088 on 0.3.4.1-alpha, adds logging in previous releases. | |||
2018-08-09 | Update geoip and geoip6 to the August 7 2018 database. | Karsten Loesing | |
2018-08-09 | Add more optional packages to Travis | Taylor Yu | |
Apparently we weren't building with either libcap or libseccomp on Travis. Install libcap-dev and libseccomp-dev in .travis.yml. Closes ticket 26560. | |||
2018-08-08 | Don't search for -lpthread on Windows | Nick Mathewson | |
If we're building for Windows, we want to use windows threads no matter what, and we don't want to link a pthread library even if it is present. Fixes bug 27081; bugfix on 1790dc67607799a in 0.1.0.1-rc. | |||
2018-08-08 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-08-08 | Changes file for 25440 | Nick Mathewson | |
2018-08-03 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-08-03 | Merge branch 'fix_nonstandard_malloc_029' into maint-0.2.9 | Nick Mathewson | |
2018-07-30 | Merge remote-tracking branch 'teor/bug26924_032' into maint-0.3.2 | Nick Mathewson | |
2018-07-26 | Don't disable an unsupported compiler warning | Taylor Yu | |
Conditionalize the pragma that temporarily disables -Wunused-const-variable. Some versions of gcc don't support it. We need to do this because of an apparent bug in some libzstd headers. Fixes bug 26785; bugfix on 0.3.2.11. | |||
2018-07-25 | Improve connection auth logging | teor | |
Improve the log message when connection initiators fail to authenticate direct connections to relays. Fixes bug 26927; bugfix on 0.3.0.1-alpha. | |||
2018-07-25 | Merge branch 'bug26924_029' into bug26924_032 | teor | |
2018-07-25 | Stop logging link auth warnings on Single Onion Services and Tor2web | teor | |
Instead, log a protocol warning when single onion services or Tor2web clients fail to authenticate direct connections to relays. Fixes bug 26924; bugfix on 0.2.9.1-alpha. | |||
2018-07-20 | Merge branch 'ticket26647_032' into maint-0.3.2 | Nick Mathewson | |
2018-07-19 | Merge remote-tracking branch 'teor/bug26853_032' into maint-0.3.2 | Nick Mathewson | |
2018-07-18 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-07-18 | Changes file for bug 26787 | Nick Mathewson | |
2018-07-18 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-07-18 | Merge branch 'bug26485_029_squashed' into maint-0.2.9 | Nick Mathewson | |
2018-07-18 | Warn the directory authority operator if their versions list is bogus | Nick Mathewson | |
Prevents bug 26485; bugfix on 0.1.1.6-alpha. | |||
2018-07-18 | SKIP test_key_expiration.sh on Windows until the underlying issue is resolved | teor | |
Skip an unreliable key expiration test on Windows, until the underlying issue in bug 26076 is resolved. Fixes bug 26853; bugfix on 0.3.2.1-alpha. | |||
2018-07-17 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-07-17 | SKIP test_keygen.sh on Windows until the underlying issue is resolved | teor | |
Skip an unreliable key generation test on Windows, until the underlying issue in bug 26076 is resolved. Fixes bug 26830; bugfix on 0.2.7.3-rc. | |||
2018-07-12 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-07-12 | put new bridge auth Serge into place | Roger Dingledine | |
The "Bifroest" bridge authority has been retired; the new bridge authority is "Serge", and it is operated by George from the TorBSD project. Closes ticket 26771. | |||
2018-07-11 | When setting a nonstandard malloc, disable the system malloc. | Nick Mathewson | |
Closes ticket 20424. | |||
2018-07-10 | Add controller support for listing ExtORPort and HTTPTunnelPorts | Nick Mathewson | |
Closes ticket 26647. | |||
2018-07-09 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-07-09 | Merge branch 'bug26269_029' into maint-0.2.9 | Nick Mathewson | |
2018-07-09 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-07-06 | Update geoip and geoip6 to the July 3 2018 database. | Karsten Loesing | |
2018-07-03 | Merge branch 'maint-0.2.9' into maint-0.3.2 | Nick Mathewson | |
2018-07-02 | hs_ntor_ref.py: pass only strings to subprocess.Popen | Nick Mathewson | |
Recent Python3 versions seem to require this on Windows. Fixes bug 26535; bug copied from ntor_ref.py on 0.3.1.1-alpha. | |||
2018-07-02 | ntor_ref.py: pass only strings to subprocess.Popen | Nick Mathewson | |
Recent Python3 versions seem to require this on Windows. Fixes bug 26535; bug introduced in f4be34f70d6f277a0f3f73e, which was apparently intended itself as a Python3 workaround. | |||
2018-06-29 | Merge branch 'maint-0.3.1' into maint-0.3.2 | Nick Mathewson | |
2018-06-29 | Merge branch 'maint-0.2.9' into maint-0.3.1 | Nick Mathewson | |
2018-06-29 | Changes file for 26467 | Nick Mathewson | |
2018-06-26 | Merge branch 'maint-0.3.1' into maint-0.3.2 | Nick Mathewson | |
2018-06-26 | Merge branch 'maint-0.2.9' into maint-0.3.1 | Nick Mathewson | |
2018-06-21 | Prefer recent Python 3 in autoconf. | Nick Mathewson | |
Closes ticket 26372. | |||
2018-06-13 | Fix a GCC "potential null dereference" warning. | Nick Mathewson | |
Fixes bug 26269; bugfix on c30be5a82d47328 in 0.2.8.2-alpha | |||
2018-06-13 | Merge branch 'maint-0.3.1' into maint-0.3.2 | Nick Mathewson | |
2018-06-13 | Fix an extra space in a changes file | Nick Mathewson | |
2018-06-13 | Merge branch 'maint-0.3.1' into maint-0.3.2 | Nick Mathewson | |