Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/ProtonMail/go-crypto from 1.1.0-alpha.2 to 1.1.0-alpha.2-proton in the go-modules group #29

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ require (
)

require (
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 // indirect
github.com/ProtonMail/go-crypto v1.1.0-alpha.2-proton // indirect
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/cloudflare/circl v1.3.9 // indirect
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -5,8 +5,8 @@ github.com/Intevation/gval v1.3.0/go.mod h1:xmGyGpP5be12EL0P12h+dqiYG8qn2j3PJxIg
github.com/Intevation/jsonpath v0.2.1 h1:rINNQJ0Pts5XTFEG+zamtdL7l9uuE1z0FBA+r55Sw+A=
github.com/Intevation/jsonpath v0.2.1/go.mod h1:WnZ8weMmwAx/fAO3SutjYFU+v7DFreNYnibV7CiaYIw=
github.com/ProtonMail/go-crypto v0.0.0-20230717121422-5aa5874ade95/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0=
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 h1:bkyFVUP+ROOARdgCiJzNQo2V2kiB97LyUpzH9P6Hrlg=
github.com/ProtonMail/go-crypto v1.1.0-alpha.2/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
github.com/ProtonMail/go-crypto v1.1.0-alpha.2-proton h1:HKz85FwoXx86kVtTvFke7rgHvq/HoloSUvW5semjFWs=
github.com/ProtonMail/go-crypto v1.1.0-alpha.2-proton/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f h1:tCbYj7/299ekTTXpdwKYF8eBlsYsDVoggDAuAjoK66k=
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f/go.mod h1:gcr0kNtGBqin9zDW9GOHcVntrwnjrK+qdJ06mWYBybw=
github.com/ProtonMail/gopenpgp/v2 v2.7.5 h1:STOY3vgES59gNgoOt2w0nyHBjKViB/qSg7NjbQWPJkA=

Unchanged files with check annotations Beta

// Do implements the respective method of the Client interface.
func (lc *LimitingClient) Do(req *http.Request) (*http.Response, error) {
lc.Limiter.Wait(context.Background())

Check failure on line 142 in util/client.go

GitHub Actions / lint

Error return value of `lc.Limiter.Wait` is not checked (errcheck)
return lc.Client.Do(req)
}
// Get implements the respective method of the Client interface.
func (lc *LimitingClient) Get(url string) (*http.Response, error) {
lc.Limiter.Wait(context.Background())

Check failure on line 148 in util/client.go

GitHub Actions / lint

Error return value of `lc.Limiter.Wait` is not checked (errcheck)
return lc.Client.Get(url)
}
// Head implements the respective method of the Client interface.
func (lc *LimitingClient) Head(url string) (*http.Response, error) {
lc.Limiter.Wait(context.Background())

Check failure on line 154 in util/client.go

GitHub Actions / lint

Error return value of `lc.Limiter.Wait` is not checked (errcheck)
return lc.Client.Head(url)
}
for i, field := range record {
if i > 0 {
fqcw.w.WriteRune(fqcw.Comma)

Check failure on line 43 in util/csv.go

GitHub Actions / lint

Error return value of `fqcw.w.WriteRune` is not checked (errcheck)
}
fqcw.w.WriteByte('"')

Check failure on line 45 in util/csv.go

GitHub Actions / lint

Error return value of `fqcw.w.WriteByte` is not checked (errcheck)
if !fqcw.UseCRLF {
field = strings.ReplaceAll(field, "\r\n", "\n")
}
fqcw.w.WriteString(strings.ReplaceAll(field, `"`, `""`))

Check failure on line 49 in util/csv.go

GitHub Actions / lint

Error return value of `fqcw.w.WriteString` is not checked (errcheck)
fqcw.w.WriteByte('"')

Check failure on line 50 in util/csv.go

GitHub Actions / lint

Error return value of `fqcw.w.WriteByte` is not checked (errcheck)
}
var err error
if fqcw.UseCRLF {
// if TEST_HELP was set, try parsing the help flag
if os.Getenv("TEST_HELP") == "1" {
os.Args = []string{"cmd", "--help"}
p.Parse()

Check failure on line 84 in pkg/options/options_test.go

GitHub Actions / lint

Error return value of `p.Parse` is not checked (errcheck)
return
}
// test the version flag
if os.Getenv("TEST_VERSION") == "1" {
os.Args = []string{"cmd", "--version"}
p.Parse()

Check failure on line 99 in pkg/options/options_test.go

GitHub Actions / lint

Error return value of `p.Parse` is not checked (errcheck)
return
}
return "data/empty.toml"
},
}
p.Parse()

Check failure on line 197 in pkg/options/options_test.go

GitHub Actions / lint

Error return value of `p.Parse` is not checked (errcheck)
t.Fatalf("Second command line parsing pass help should not reach this.\n")
return
}