-
Notifications
You must be signed in to change notification settings - Fork 22
Comparing changes
Open a pull request
base repository: DeepSourceCorp/cli
base: master
head repository: DeepSourceCorp/cli
compare: v2
- 7 commits
- 130 files changed
- 2 contributors
Commits on Jan 28, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 55044ed - Browse repository at this point
Copy the full SHA 55044edView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 7ad3d64 - Browse repository at this point
Copy the full SHA 7ad3d64View commit details -
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)
Configuration menu - View commit details
-
Copy full SHA for 2fae34d - Browse repository at this point
Copy the full SHA 2fae34dView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for acbc52e - Browse repository at this point
Copy the full SHA acbc52eView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 7004163 - Browse repository at this point
Copy the full SHA 7004163View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 60b0a48 - Browse repository at this point
Copy the full SHA 60b0a48View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for f9dafcb - Browse repository at this point
Copy the full SHA f9dafcbView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...v2