Skip to content

Tags: rostomzed/go-githubapp

Tags

v0.12.1

Toggle v0.12.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Improve handler panic reporting (palantir#145)

Stack traces for handler panics were lost, making it hard to determine
where the panic actually happened. Now, stack traces are captured by a
special error type so that handlers can print them. By default, nothing
actually changes, but I plan to extend the default configuration of
go-baseapp so that these errors are formatted with stack traces in logs.

I copied the error code from my implementation in `bluekeyes/hatpear` so
that they'll share the same interface. The `pkg/errors` package has a
similar interface, but uses package-specific types. Using standard
library types seemed preferrable, even though we have a dependency on
`pkg/errors` already.

v0.12.0

Toggle v0.12.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update google/go-github to v43 (palantir#139)

v0.11.0

Toggle v0.11.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Excavator: Manage go module dependencies (palantir#124)

v0.10.1

Toggle v0.10.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Excavator: Manage go module dependencies (palantir#120)

v0.10.0

Toggle v0.10.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Excavator: Manage go module dependencies (palantir#114)

v0.9.3

Toggle v0.9.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update dependencies to latest versions (palantir#110)

v0.9.2

Toggle v0.9.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update go-github to v39 (palantir#106)

v0.9.1

Toggle v0.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support remote references in default config (palantir#99)

v0.9.0

Toggle v0.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update go-github to v38 (palantir#96)

v0.8.1

Toggle v0.8.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix YAMLRemoteRefParser with empty input (palantir#94)

Do not treat empty input as an invalid remote reference, since apps may
use an empty file as an on/off switch. Also add some tests for parsing,
since there are several edge cases now.