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: github-community-projects/contributors
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.6
Choose a base ref
...
head repository: github-community-projects/contributors
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.7
Choose a head ref
  • 4 commits
  • 7 files changed
  • 2 contributors

Commits on Mar 30, 2026

  1. Configuration menu
    Copy the full SHA
    7751e51 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    866ac8e View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump requests from 2.33.0 to 2.33.1 (#444)

    Bumps [requests](https://github.com/psf/requests) from 2.33.0 to 2.33.1.
    - [Release notes](https://github.com/psf/requests/releases)
    - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
    - [Commits](psf/requests@v2.33.0...v2.33.1)
    
    ---
    updated-dependencies:
    - dependency-name: requests
      dependency-version: 2.33.1
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 30, 2026
    Configuration menu
    Copy the full SHA
    3ba51bd View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2026

  1. fix: compare sponsor_info as bool instead of string (#446)

    Relates to github-community-projects/cleanowners#373
    
    ## What
    
    Changed the sponsor_info gate in contributors.py from a string comparison
    (`== "true"`) to a truthy check, and updated the test mock to return a
    bool to match what get_bool_env_var actually returns.
    
    ## Why
    
    get_bool_env_var returns a Python bool, but the comparison checked for
    the string "true". Since `True == "true"` is always False, sponsor
    information was never fetched regardless of the SPONSOR_INFO env var
    setting.
    
    ## Notes
    
    - markdown.py already has `_is_truthy()` that handles both types, so the
      rendering side was not affected — only the data fetch was skipped.
    - json_writer.py passes sponsor_info through without comparison, so it's
      also unaffected.
    
    Signed-off-by: jmeridth <jmeridth@gmail.com>
    jmeridth authored Apr 1, 2026
    Configuration menu
    Copy the full SHA
    8452e4e View commit details
    Browse the repository at this point in the history
Loading