Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-11 | Merge branch 'maint-0.4.3' into maint-0.4.4 | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.4.4' | Nick Mathewson | |
2020-08-11 | CI: label our python versions. | Nick Mathewson | |
2020-08-11 | CI: Only run doxygen on 0.4.3 and later. | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.4.4' | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.4.2' into maint-0.4.3 | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.3.5' into maint-0.4.2 | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.4.3' into maint-0.4.4 | Nick Mathewson | |
2020-08-11 | Fix a pair of typos in ci-driver.sh. | Nick Mathewson | |
2020-08-11 | Fix "run_check_subsystem_order.sh" to use $PYTHON. | Nick Mathewson | |
Previously it just used /usr/bin/env/python, which would fail if we only had a "python3" binary. Fixes bug 40095; bugfix on 0.4.4.1-alpha. | |||
2020-08-11 | Merge branch 'maint-0.4.4' | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.4.2' into maint-0.4.3 | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.3.5' into maint-0.4.2 | Nick Mathewson | |
2020-08-11 | Merge branch 'maint-0.4.3' into maint-0.4.4 | Nick Mathewson | |
2020-08-11 | Add a pair of warnings about only editing CI in 035 | Nick Mathewson | |
2020-08-10 | Merge branch 'maint-0.4.4' | Nick Mathewson | |
2020-08-10 | Merge branch 'maint-0.4.3' into maint-0.4.4 | Nick Mathewson | |
2020-08-10 | Merge branch 'maint-0.4.2' into maint-0.4.3 | Nick Mathewson | |
2020-08-10 | Merge branch 'maint-0.3.5' into maint-0.4.2 | Nick Mathewson | |
2020-08-10 | Add a shareable continuous-integration script. | Nick Mathewson | |
Eventually this should be used by every one of our CI scripts. | |||
2020-08-03 | Minor style improvements. #30045 | Daniel Pinto | |
2020-08-01 | Add --format argument to --key-expiration option. #30045 | Daniel Pinto | |
2020-07-20 | Merge remote-tracking branch 'tor-gitlab/mr/59' | Nick Mathewson | |
2020-07-20 | Merge branch 'tor-gitlab/mr/66' | Alexander Færøy | |
2020-07-20 | Merge branch 'tor-gitlab/mr/65' | Alexander Færøy | |
2020-07-17 | Add running glibc version to the log. #40047 | Daniel Pinto | |
Also adds the compiled and running glibc version when using the --library-versions flag. | |||
2020-07-17 | Add git-resquash.sh to repository | Nick Mathewson | |
This differs from my old git-resquash.sh in that it uses the newer `git rebase --keep-base` if available | |||
2020-07-17 | Use gitlab-friendly URLs when formatting changelogs as HTML | Nick Mathewson | |
Our old https://bugs.torproject.org/nnnn URLs only work for bugs numbered before 40000. Newer gitlab bugs need to have specific projects mentioned. This patch assumes that bugs are in tpo/core/tor by default, but allows us to refer to several other projects by saying e.g. "chutney#40002" if we want. | |||
2020-07-15 | Add support for patterns on %include #25140 | Daniel Pinto | |
Also adds generic tor_glob function to expand globs. | |||
2020-07-14 | doc: Move manpages into doc/man/ | David Goulet | |
Closes #40044 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-07-10 | Merge remote-tracking branch 'tor-gitlab/mr/29' | Nick Mathewson | |
2020-07-09 | git-install-tools: use -b, not --backup. | Nick Mathewson | |
The osx version of this tool doesn't have --backup | |||
2020-07-09 | Update git scripts to include tor-gitlab repository | Nick Mathewson | |
Analogously to tor-github, we now make a tor-gitlab repository. It is set up to disable push direct attempts, and to fetch merge requests into appropriate branches. git-pull-all.sh knows how to fetch this repository. | |||
2020-07-08 | trace: Move LTTng specific declartion to .inc file | David Goulet | |
LTTng tracepoint probe declaration is not really following a C standard that coccinelle and checkSpace.pl likes. Move everything to a .inc file and standardize the trace_probes_circuit.h header to include that LTTng specific file if the instrumentation was enabled at configure time. Part of #32910 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-07-08 | trace: Add single tracepoint in circuit subsystem | David Goulet | |
This is the very first tracepoint in tor. It is in the circuit subsystem for when a new circuit opens. LTTng instrumentation requires lot more around a tracepoint than USDT thus this commit only adds one tracepoint in order to outline a base to add more tracepoints later. The idea is that we separate subsystem into what LTTng defines as "providers" so the circuit provider contains the tracepoint definitions for the circuit subsystem. Signed-off-by: David Goulet <dgoulet@torproject.org> Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-07-03 | Merge branch 'tor-github/pr/1934' | George Kadianakis | |
2020-07-02 | scripts: Don't run practracker in git hooks | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-07-02 | scripts: Add env variable to disable pre-commit hook | David Goulet | |
We introduce TOR_EXTRA_PRE_COMMIT_CHECKS environment variable to run the pre-commit hook. The pre-push git hook will set it in order to run all pre-commit checks. Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-07-02 | Extract extend_info manipulation functions into a new file. | Nick Mathewson | |
2020-06-30 | scripts: Fix rename_c_identifier.py uncommitted warning | David Goulet | |
Only warn when we actually want a commit _and_ there are uncommitted changes found. Else, it is fine to rename if the script is not creating a commit. Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-06-24 | Merge branch 'tor-github/pr/1945' | David Goulet | |
2020-06-24 | Merge branch 'tor-github/pr/1929' | George Kadianakis | |
2020-06-23 | addr: Rename resolve_my_address to be v4 specific | David Goulet | |
Part of #33233 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-06-16 | practracker FTL! | Mike Perry | |
Faster Than Light! | |||
2020-06-11 | Merge branch 'maint-0.4.4' | George Kadianakis | |
2020-06-11 | Improve our clang-format.sh script | Nick Mathewson | |
Previously, this script ran over every C file in our source code, which took up to a minute on my desktop. Instead, the script now has several modes that it can run in, to minimize the time spent and improve useful output. It should now be suitable for everyday use and git hooks. I hope. I've also renamed this script, so that we can keep using it in the future if we were to move to some tool other than clang-format. | |||
2020-06-11 | Fold in a changes file and update exceptions.txt. | George Kadianakis | |
Co-authored-by: Florentin Rochet <florentin.rochet@uclouvain.be> | |||
2020-06-09 | Remove "enable_practracker_in_hooks" for 0.4.4. | Nick Mathewson | |
2020-06-09 | Merge remote-tracking branch 'tor-github/pr/1888/head' | Nick Mathewson | |
2020-06-09 | Add 0.4.4 to list of tor branches used by git scripts. | Nick Mathewson | |