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: manuzhang/mkdocs-htmlproofer-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.0
Choose a base ref
...
head repository: manuzhang/mkdocs-htmlproofer-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.0
Choose a head ref
  • 4 commits
  • 5 files changed
  • 3 contributors

Commits on Feb 27, 2024

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

Commits on Mar 3, 2024

  1. Don't treat some HTTP status error codes as not errors (#78)

    Previously 401, 403, 503, 504, and 999 HTTP status codes were
    treated as "not an error" and therefore not reported. At the time
    this made sense as there was no easy way to say "do not treat 504
    codes as an error, I will assume it is transient". However, with a
    recent change you can do:
    
    ```yml
    raise_error_excludes:
            504: ['*']
    ```
    
    And treat all 504s as not an error.
    
    This commit makes all "special HTTP status codes" an error and allows
    for users to configure their `raise_error_excludes` if they want to
    get the old behavior back.
    
    I found this functionality when trying to figure out why some links
    that we had that there bad weren't being reported by htmlproofer. It
    turned out that the broken links were coming back with "probably good"
    error codes and thus we never saw them.
    
    Closes #77
    SeanTAllen authored Mar 3, 2024
    Configuration menu
    Copy the full SHA
    ed60f7c View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

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

Commits on Mar 5, 2024

  1. Release 1.2.0

    manuzhang committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    3b5535b View commit details
    Browse the repository at this point in the history
Loading