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: matin/garth
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.7.9
Choose a base ref
...
head repository: matin/garth
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.7.10
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 19, 2026

  1. Use dynamic MFA method from login response (#215)

    The MFA verification endpoint requires the correct mfaMethod value
    ("email", "phone", etc.) but it was hardcoded to "email". Users with
    SMS/phone MFA got MFA_CODE_INVALID errors.
    
    Read mfaLastMethodUsed from the login response's customerMfaInfo and
    pass it through to handle_mfa() and resume_login().
    
    Coerce falsy mfaLastMethodUsed to "email"
    
    If the key exists but is null/empty, .get() returns None instead of
    the default. Use `or "email"` to handle that case.
    
    bump version
    tobias-goertz authored Mar 19, 2026
    Configuration menu
    Copy the full SHA
    9760c41 View commit details
    Browse the repository at this point in the history
Loading