فهرست منبع

updating changelog and readme

zach rice 7 سال پیش
والد
کامیت
9f8326de56
3فایلهای تغییر یافته به همراه13 افزوده شده و 2 حذف شده
  1. 10 0
      CHANGELOG.md
  2. 2 1
      README.md
  3. 1 1
      main.go

+ 10 - 0
CHANGELOG.md

@@ -1,6 +1,16 @@
 CHANGELOG
 =========
 
+1.24.0
+----
+-- `--commit` now allows users to target a specific commit to audit
+-- `--commit-stop` audit all commits up to and including what is specified at `--commit-stop` 
+-- Updated go-git version to 4.9.1
+
+1.23.0
+----
+-- `--repo-config` allows users to load configs specific to a repo target
+
 1.22.0
 ----
 - context inclusion for redactions 

+ 2 - 1
README.md

@@ -70,7 +70,8 @@ Application Options:
       --github-pr=      Github PR url to audit. This does not clone the repo. GITHUB_TOKEN must be set
       --gitlab-user=    GitLab user ID to audit
       --gitlab-org=     GitLab group ID to audit
-  -c, --commit=         sha of commit to stop at
+      --commit-stop=    sha of commit to stop at
+      --commit=         sha of commit to audit
       --depth=          maximum commit depth
       --repo-path=      Path to repo
       --owner-path=     Path to owner directory (repos discovered)

+ 1 - 1
main.go

@@ -71,7 +71,7 @@ type Options struct {
 	GitLabOrg  string `long:"gitlab-org" description:"GitLab group ID to audit"`
 
 	CommitStop string `long:"commit-stop" description:"sha of commit to stop at"`
-	Commit     string `long:"commit" description:"sha of commit to investigate"`
+	Commit     string `long:"commit" description:"sha of commit to audit"`
 	Depth      int64  `long:"depth" description:"maximum commit depth"`
 
 	// local target option