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

Excavator: Updates godel plugins to latest versions #277

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions conjure/witchcraft/api/health/structs.conjure.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ func (o HealthCheckResult) MarshalJSON() ([]byte, error) {
if o.Params == nil {
o.Params = make(map[string]interface{}, 0)
}
type HealthCheckResultAlias HealthCheckResult
return safejson.Marshal(HealthCheckResultAlias(o))
type _tmpHealthCheckResult HealthCheckResult
return safejson.Marshal(_tmpHealthCheckResult(o))
}

func (o *HealthCheckResult) UnmarshalJSON(data []byte) error {
type HealthCheckResultAlias HealthCheckResult
var rawHealthCheckResult HealthCheckResultAlias
type _tmpHealthCheckResult HealthCheckResult
var rawHealthCheckResult _tmpHealthCheckResult
if err := safejson.Unmarshal(data, &rawHealthCheckResult); err != nil {
return err
}
Expand Down Expand Up @@ -64,13 +64,13 @@ func (o HealthStatus) MarshalJSON() ([]byte, error) {
if o.Checks == nil {
o.Checks = make(map[CheckType]HealthCheckResult, 0)
}
type HealthStatusAlias HealthStatus
return safejson.Marshal(HealthStatusAlias(o))
type _tmpHealthStatus HealthStatus
return safejson.Marshal(_tmpHealthStatus(o))
}

func (o *HealthStatus) UnmarshalJSON(data []byte) error {
type HealthStatusAlias HealthStatus
var rawHealthStatus HealthStatusAlias
type _tmpHealthStatus HealthStatus
var rawHealthStatus _tmpHealthStatus
if err := safejson.Unmarshal(data, &rawHealthStatus); err != nil {
return err
}
Expand Down
12 changes: 6 additions & 6 deletions godel/config/godel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ plugins:
- https://github.com/{{index GroupParts 1}}/{{index GroupParts 2}}/releases/download/v{{Version}}/{{Product}}-{{Version}}-{{OS}}-{{Arch}}.tgz
plugins:
- locator:
id: com.palantir.godel-conjure-plugin:conjure-plugin:6.70.0
id: com.palantir.godel-conjure-plugin:conjure-plugin:6.74.0
checksums:
darwin-amd64: f5b6c4df8a8fada54e6c3a5c8deae79c8fa5f791e5f4d07c5aaa6298ab5d407f
linux-amd64: 90673782291b01dd76df78fa83982a6bb2e1693a63e72f07541da1a626ab400f
darwin-amd64: 510d193e03e6e2866b97b767e526e14a8897a519f3d2e404bde0368c42211ef7
linux-amd64: e96385c6ee3255411dce8287f338bfa19ea22faba2b040f7c4e8718f2be711d8
- locator:
id: com.palantir.godel-mod-plugin:mod-plugin:1.45.0
id: com.palantir.godel-mod-plugin:mod-plugin:1.46.0
checksums:
darwin-amd64: 86c00f02a2fa80a2223d492e931c4ec3312b3e0c895822c2f5ed8c0ea7b2e1b9
linux-amd64: ac50a961c95657a92105c417671b8d18dfe45da0019e72cdac0b9f5938f2ea4c
darwin-amd64: 66c0d7942a73e3fc48cbf192a2e09b78c218f22daa712141fe4408ffb930c377
linux-amd64: 242803426b46260202c6a5341ff4b01a8b82a067c8a6f803ea6c94fe4b1ea13e
environment:
GO111MODULE: "on"
GOFLAGS: "-mod=vendor"
Expand Down