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: DeepSourceCorp/cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: DeepSourceCorp/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 7 commits
  • 130 files changed
  • 2 contributors

Commits on Jan 28, 2026

  1. Configuration menu
    Copy the full SHA
    55044ed View commit details
    Browse the repository at this point in the history
  2. Refactor: reorganize codebase structure with internal package layout

    Move utility packages from root `utils/` and `configvalidator/` into
    organized `internal/` subdirectories:
    - utils/prompt.go → internal/cli/prompt/
    - utils/colors.go → internal/cli/style/
    - utils/cmd_validator.go → internal/cli/args/
    - utils/fetch_oidc_token.go → internal/oidc/
    - utils/remote_resolver.go → internal/vcs/
    - utils/fetch_remote.go → internal/vcs/remotes.go
    - configvalidator/* → internal/configvalidator/
    - utils/fetch_analyzers_transformers.go → internal/configdata/
    
    Add shell completion support via internal/cli/completion package.
    
    Update all import paths across commands and services to reflect new
    structure. This improves code organization and follows Go's internal
    package conventions for better encapsulation.
    vishnu-deepsource authored and jai-deepsource committed Jan 28, 2026
    Configuration menu
    Copy the full SHA
    7ad3d64 View commit details
    Browse the repository at this point in the history
  3. Add whoami and issues browse commands, refactor output messages

    - Add new `auth whoami` command to display authenticated user info
    - Add new `issues browse` command for opening issues in browser
    - Add GetViewer API method to fetch authenticated user details
    - Refactor output messages to use pterm.Print* instead of pterm.Info
      for consistency across auth, config, issues, and repo commands
    - Update dependencies (pterm, testify, bubbletea, lipgloss)
    vishnu-deepsource authored and jai-deepsource committed Jan 28, 2026
    Configuration menu
    Copy the full SHA
    2fae34d View commit details
    Browse the repository at this point in the history
  4. Add runs command with list and issues subcommands

    - Add `runs list` command to display analysis runs for a repository
    - Add `runs issues` command to show issues for a specific run
    - Add GetAnalysisRuns and GetRunIssues API methods to client
    - Add GraphQL schema and queries for runs and run issues
    - Refactor whoami command to use boxed output format
    - Remove issues browse command
    - Add runs domain types and query helpers
    vishnu-deepsource authored and jai-deepsource committed Jan 28, 2026
    Configuration menu
    Copy the full SHA
    acbc52e View commit details
    Browse the repository at this point in the history
  5. chore: update dependencies to latest versions

    Update all Go dependencies to their latest versions including:
    - github.com/spf13/cobra: v1.5.0 → v1.10.2
    - github.com/spf13/viper: v1.7.1 → v1.21.0
    - github.com/getsentry/sentry-go: v0.6.0 → v0.41.0
    - github.com/stretchr/testify: v1.8.4 → v1.11.1
    - github.com/fatih/color: v1.12.0 → v1.18.0
    - github.com/google/go-cmp: v0.5.5 → v0.6.0
    
    Also includes improvements to issues display:
    - Add terminal width-aware table rendering with column wrapping
    - Improve issue location formatting (single line vs range)
    - Add color-coded severity formatting
    - Add JSON export capability for run issues with --json and --output-file flags
    vishnu-deepsource authored and jai-deepsource committed Jan 28, 2026
    Configuration menu
    Copy the full SHA
    7004163 View commit details
    Browse the repository at this point in the history
  6. feat: add filtering options for run issues command

    Add support for filtering issues by analyzer, category, severity, code, and path.
    Filters can be specified multiple times to match any of the provided values.
    
    New flags:
    - --analyzer: filter by analyzer shortcode
    - --category: filter by issue category
    - --severity: filter by severity level
    - --code: filter by issue code
    - --path: filter by file path (supports partial matching)
    
    Also refactor runs command to accept commit-oid argument and wire up
    issue flags via AddRunIssueFlags for better flag reusability.
    vishnu-deepsource authored and jai-deepsource committed Jan 28, 2026
    Configuration menu
    Copy the full SHA
    60b0a48 View commit details
    Browse the repository at this point in the history
  7. Migrate build system to just and update dependencies

    - Replace Makefile with justfile, add VERSION file for version tracking
    - Replace goreleaser release pipeline with build-and-deploy workflow
    - Add install script template
    - Move version/ package to buildinfo/
    - Swap DataDog/zstd (cgo) for klauspost/compress/zstd (pure Go)
    - Replace deprecated io/ioutil usage with os and io
    - Bump Go version to 1.25 in CI
    - Update SARIF schema URL to official OASIS source
    - Add TCP readiness check for mock server in tests
    - Update README with auth docs and current command list
    jai-deepsource committed Jan 28, 2026
    Configuration menu
    Copy the full SHA
    f9dafcb View commit details
    Browse the repository at this point in the history
Loading