Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tinyproxy/tinyproxy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.11.2
Choose a base ref
...
head repository: tinyproxy/tinyproxy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 18 commits
  • 38 files changed
  • 6 contributors

Commits on Jun 2, 2024

  1. Configuration menu
    Copy the full SHA
    942d0c6 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

  1. 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.
    rofl0r committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    72b93f6 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Omit the version number from headers and HTML responses (#543)

    Omit the version number from headers, HTML responses, and templates
    jpmckinney authored Jun 20, 2024
    Configuration menu
    Copy the full SHA
    d652ed8 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2024

  1. conf: add BasicAuthRealm feature (#547)

    makes BasicAuth realm string editable in config file.
    
    closes #235
    Gruummy authored Jul 14, 2024
    Configuration menu
    Copy the full SHA
    73da8a3 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. 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
    rofl0r committed Oct 19, 2024
    Configuration menu
    Copy the full SHA
    c04ba47 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. 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
    rofl0r authored and obnoxxx committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    05f6e4e View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2025

  1. Configuration menu
    Copy the full SHA
    cea0ebe View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2025

  1. 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
    rofl0r committed Jan 22, 2025
    Configuration menu
    Copy the full SHA
    56404a3 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2025

  1. 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]>
    obnoxxx committed Feb 15, 2025
    Configuration menu
    Copy the full SHA
    74f5f59 View commit details
    Browse the repository at this point in the history
  2. 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]>
    obnoxxx committed Feb 15, 2025
    Configuration menu
    Copy the full SHA
    0712ec3 View commit details
    Browse the repository at this point in the history
  3. 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]>
    obnoxxx committed Feb 15, 2025
    Configuration menu
    Copy the full SHA
    f134786 View commit details
    Browse the repository at this point in the history
  4. build: add make shellcheck

    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]>
    obnoxxx committed Feb 15, 2025
    Configuration menu
    Copy the full SHA
    acd99f1 View commit details
    Browse the repository at this point in the history
  5. CI: add a shellcheck ci workflow

    Signed-off-by: Michael Adam <[email protected]>
    obnoxxx committed Feb 15, 2025
    Configuration menu
    Copy the full SHA
    1a02315 View commit details
    Browse the repository at this point in the history
  6. tests: remove duplicate code from run_tests.sh

    Signed-off-by: Michael Adam <[email protected]>
    obnoxxx committed Feb 15, 2025
    Configuration menu
    Copy the full SHA
    0a2da97 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2025

  1. remove unused vsyslog code

    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
    rofl0r committed May 1, 2025
    Configuration menu
    Copy the full SHA
    d62b7d2 View commit details
    Browse the repository at this point in the history
  2. 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.
    rofl0r committed May 1, 2025
    Configuration menu
    Copy the full SHA
    d54e9a7 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2025

  1. Configuration menu
    Copy the full SHA
    8b02f86 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2025

  1. 1 Configuration menu
    Copy the full SHA
    f0033b7 View commit details
    Browse the repository at this point in the history
Loading