This repository was archived by the owner on Jan 22, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11## [ Unreleased]
22
3+ - Ignore go.sum (checksums only), treat go.mod as lockfile
4+
35## [ 0.6.1] - 2026-01-05
46
57- Fix ` stats ` command crash on most changed dependencies query
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class Analyzer
1818 pom.xml ivy.xml build.gradle build.gradle.kts gradle-dependencies-q.txt
1919 maven-resolved-dependencies.txt sbt-update-full.txt maven-dependency-tree.txt maven-dependency-tree.dot
2020 Cargo.toml Cargo.lock
21- go.mod go.sum glide.yaml glide.lock Godeps Godeps/Godeps.json
21+ go.mod glide.yaml glide.lock Godeps Godeps/Godeps.json
2222 vendor/manifest vendor/vendor.json Gopkg.toml Gopkg.lock go-resolved-dependencies.json
2323 composer.json composer.lock
2424 Podfile Podfile.lock *.podspec *.podspec.json
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class DiffDriver
2323 composer.lock
2424 gems.locked
2525 glide.lock
26- go.sum
26+ go.mod
2727 mix.lock
2828 npm-shrinkwrap.json
2929 package-lock.json
Original file line number Diff line number Diff line change 55module Git
66 module Pkgs
77 module Config
8- # File patterns ignored by default (SBOM formats not supported)
8+ # File patterns ignored by default (SBOM formats not supported, go.sum is checksums only )
99 DEFAULT_IGNORED_FILES = %w[
1010 cyclonedx.xml
1111 cyclonedx.json
1212 *.cdx.xml
1313 *.cdx.json
1414 *.spdx
1515 *.spdx.json
16+ go.sum
1617 ] . freeze
1718
1819 def self . ignored_dirs
You can’t perform that action at this time.
0 commit comments