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: theskumar/python-dotenv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.3
Choose a base ref
...
head repository: theskumar/python-dotenv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: HEAD
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Aug 17, 2026

  1. fix: parse empty unquoted value with inline comment as empty string

    An unquoted empty value followed by an inline comment (e.g. `KEY= # comment`)
    was parsed as the comment text because the equal-sign regex consumed the
    whitespace after `=`, leaving no whitespace for the comment-stripping rule to
    match. When the value is empty (whitespace follows `=`) and starts with `#`,
    treat the rest of the line as a comment and the value as empty. Values with no
    space before `#` (e.g. `KEY=#novalue`, `KEY=a#b`) are unchanged.
    
    Closes #600
    Noethix55555 authored and theskumar committed Aug 17, 2026
    Configuration menu
    Copy the full SHA
    f5485a6 View commit details
    Browse the repository at this point in the history
  2. docs: add CHANGELOG entry for #663 (fix #600)

    Credit @Noethix55555 for fixing inline comment on empty unquoted values.
    theskumar committed Aug 17, 2026
    Configuration menu
    Copy the full SHA
    a00cb2e View commit details
    Browse the repository at this point in the history
Loading