-
Notifications
You must be signed in to change notification settings - Fork 729
Comparing changes
Open a pull request
base repository: tinyproxy/tinyproxy
base: 1.11.2
head repository: tinyproxy/tinyproxy
compare: master
- 18 commits
- 38 files changed
- 6 contributors
Commits on Jun 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 942d0c6 - Browse repository at this point
Copy the full SHA 942d0c6View commit details
Commits on Jun 16, 2024
-
CI: update release workflow to non-deprecated actions
github continues to deprecate actions and idioms in their CI system. hopefully these changes will last for a while and maintaining a simple CI task doesn't turn into a neverending story.
Configuration menu - View commit details
-
Copy full SHA for 72b93f6 - Browse repository at this point
Copy the full SHA 72b93f6View commit details
Commits on Jun 20, 2024
-
Omit the version number from headers and HTML responses (#543)
Omit the version number from headers, HTML responses, and templates
Configuration menu - View commit details
-
Copy full SHA for d652ed8 - Browse repository at this point
Copy the full SHA d652ed8View commit details
Commits on Jul 14, 2024
-
conf: add BasicAuthRealm feature (#547)
makes BasicAuth realm string editable in config file. closes #235
Configuration menu - View commit details
-
Copy full SHA for 73da8a3 - Browse repository at this point
Copy the full SHA 73da8a3View commit details
Commits on Oct 19, 2024
-
reqs: don't compile upstream code if feature disabled
fixes warning about implicit function declaration which is by default treated as an error starting with GCC14. closes #560
Configuration menu - View commit details
-
Copy full SHA for c04ba47 - Browse repository at this point
Copy the full SHA c04ba47View commit details
Commits on Nov 4, 2024
-
basic auth: fix error status 401 vs 407
if tinyproxy serves as a HTTP server (i.e. when serving stats), use error code 401, else error code 407. fixes #532
Configuration menu - View commit details
-
Copy full SHA for 05f6e4e - Browse repository at this point
Copy the full SHA 05f6e4eView commit details
Commits on Jan 6, 2025
-
Configuration menu - View commit details
-
Copy full SHA for cea0ebe - Browse repository at this point
Copy the full SHA cea0ebeView commit details
Commits on Jan 22, 2025
-
replace orderedmap for connection headers with linear list
it turned out that a hashmap isn't the right datastructure, as the special-case header Set-Cookie not only can, but is even heavily recommended to be used multiple times. we now use a dumb list as a key-value store for this purpose, but restrict it to max 256 entries so the linear search can always be completed in reasonable time in case of an attack. closes #403
Configuration menu - View commit details
-
Copy full SHA for 56404a3 - Browse repository at this point
Copy the full SHA 56404a3View commit details
Commits on Feb 15, 2025
-
build: fix shellcheck errors in autogen.sh
The following error types are addressed: https://www.shellcheck.net/wiki/SC2164 -- Use 'cd ... || exit' or 'cd ... || return' in case cd fails. https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing and word splitting. https://www.shellcheck.net/wiki/SC2006 -- Use $(...) notation instead of legacy backticks `...`. Signed-off-by: Michael Adam <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 74f5f59 - Browse repository at this point
Copy the full SHA 74f5f59View commit details -
tests: fix shellcheck issues and syntax errors in run_tests.sh
This fixes several instances of the following shellcheck issues: https://www.shellcheck.net/wiki/SC2046 -- Quote this to prevent word splitting. https://shellcheck.net/wiki/SC3037 (warning): In POSIX sh, echo flags are undefined. https://shellchelleck.net/wiki/SC2268 (style): Avoid x-prefix in comparisons as it no longer serves a purpose. https://shellcheck.net/wiki/SC2009 (info): Consider using pgrep instead of grepping ps output. https://shellcheck.net/wiki/SC3028 (warning): In POSIX sh, SECONDS is undefined. SC2059 (info): Don't use variables in the printf format string COUNT appears unused. Verify use (or export if used externally). https://shellcheck.net/wiki/SC2162 (info): read without -r will mangle backslashes. https://shellcheck.net/wiki/SC2034 (warning): READ appears unused. Verify use (or export if used externally). https://shellcheck.net/wiki/SC2317 (info): Command appears to be unreachable. Check usage (or ignore if invoked indirectly). https://shellcheck.net/wiki/SC2086 (info): Double quote to prevent globbing and word splitting. Signed-off-by: Michael Adam <[email protected]> tests: fix syntax errors in run_tests.sh Signed-off-by: Michael Adam <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0712ec3 - Browse repository at this point
Copy the full SHA 0712ec3View commit details -
tests: fix shellcheck issues in run_tests_valgrind.sh
This fixes instances of: https://shellcheck.net/wiki/SC2086 (info): Double quote to prevent globbing and word splitting. https://shellcheck.net/wiki/SC2034 (warning): BASEDIR appears unused. Signed-off-by: Michael Adam <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f134786 - Browse repository at this point
Copy the full SHA f134786View commit details -
This can be used to lint shell scripts for syntactic correctness and style. It requires shellcheck to be installed on the host. Signed-off-by: Michael Adam <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for acd99f1 - Browse repository at this point
Copy the full SHA acd99f1View commit details -
CI: add a shellcheck ci workflow
Signed-off-by: Michael Adam <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1a02315 - Browse repository at this point
Copy the full SHA 1a02315View commit details -
tests: remove duplicate code from run_tests.sh
Signed-off-by: Michael Adam <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0a2da97 - Browse repository at this point
Copy the full SHA 0a2da97View commit details
Commits on May 1, 2025
-
due to the use of an invalid macro HAVE_VSYSLOG_H (a corresponding header doesn't exist on POSIX libcs, plus there was no configure check setting it), the code here was never compiled in, and the portable fallback was always used. since the fallback is already there and known to work as intended, just use it always. closes #574
Configuration menu - View commit details
-
Copy full SHA for d62b7d2 - Browse repository at this point
Copy the full SHA d62b7d2View commit details -
remove unused strlcat checks and fallback code
the function isn't used anywhere in the current codebase, so don't waste user's time checking for it.
Configuration menu - View commit details
-
Copy full SHA for d54e9a7 - Browse repository at this point
Copy the full SHA d54e9a7View commit details
Commits on May 7, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 8b02f86 - Browse repository at this point
Copy the full SHA 8b02f86View commit details
Commits on Jun 21, 2025
-
1
Configuration menu - View commit details
-
Copy full SHA for f0033b7 - Browse repository at this point
Copy the full SHA f0033b7View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 1.11.2...master