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: SocketDev/socket-python-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b8b49f5
Choose a base ref
...
head repository: SocketDev/socket-python-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4903ae3
Choose a head ref
  • 1 commit
  • 13 files changed
  • 2 contributors

Commits on Mar 6, 2026

  1. Fix has_manifest_files failing to match root-level manifest files (#168)

    * Fix has_manifest_files failing to match root-level manifest files
    
    PurePath.match("**/package.json") returns False for root-level files
    in Python 3.12+ because ** requires at least one directory component.
    The function was unconditionally prepending **/ to all patterns,
    causing root-level manifests like package.json and package-lock.json
    to never match. This forced every scan into full scan mode instead of
    diff scan mode, which meant MR/PR comments were never posted.
    
    Fix by trying the direct pattern match first, then falling back to
    the **/ prefixed pattern for subdirectory matching.
    
    Fixes Zendesk #2447
    
    * Bump version to 2.2.77
    
    * Add tests/core to CI trigger paths and test command
    
    * Fixing compatibility drift between CLI <> SDK surfaced by test failures
    
    Signed-off-by: lelia <[email protected]>
    
    * Fixing core test failures caused by updated stale fixtures, outdated test construction
    
    Signed-off-by: lelia <[email protected]>
    
    ---------
    
    Signed-off-by: lelia <[email protected]>
    Co-authored-by: lelia <[email protected]>
    dc-larsen and lelia authored Mar 6, 2026
    Configuration menu
    Copy the full SHA
    4903ae3 View commit details
    Browse the repository at this point in the history
Loading