Skip to content

Commit f69fd1a

Browse files
Excavator: Updates godel plugins to latest versions
1 parent 9f1fca4 commit f69fd1a

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

conjure/witchcraft/api/health/structs.conjure.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ func (o HealthCheckResult) MarshalJSON() ([]byte, error) {
2323
if o.Params == nil {
2424
o.Params = make(map[string]interface{}, 0)
2525
}
26-
type HealthCheckResultAlias HealthCheckResult
27-
return safejson.Marshal(HealthCheckResultAlias(o))
26+
type _tmpHealthCheckResult HealthCheckResult
27+
return safejson.Marshal(_tmpHealthCheckResult(o))
2828
}
2929

3030
func (o *HealthCheckResult) UnmarshalJSON(data []byte) error {
31-
type HealthCheckResultAlias HealthCheckResult
32-
var rawHealthCheckResult HealthCheckResultAlias
31+
type _tmpHealthCheckResult HealthCheckResult
32+
var rawHealthCheckResult _tmpHealthCheckResult
3333
if err := safejson.Unmarshal(data, &rawHealthCheckResult); err != nil {
3434
return err
3535
}
@@ -64,13 +64,13 @@ func (o HealthStatus) MarshalJSON() ([]byte, error) {
6464
if o.Checks == nil {
6565
o.Checks = make(map[CheckType]HealthCheckResult, 0)
6666
}
67-
type HealthStatusAlias HealthStatus
68-
return safejson.Marshal(HealthStatusAlias(o))
67+
type _tmpHealthStatus HealthStatus
68+
return safejson.Marshal(_tmpHealthStatus(o))
6969
}
7070

7171
func (o *HealthStatus) UnmarshalJSON(data []byte) error {
72-
type HealthStatusAlias HealthStatus
73-
var rawHealthStatus HealthStatusAlias
72+
type _tmpHealthStatus HealthStatus
73+
var rawHealthStatus _tmpHealthStatus
7474
if err := safejson.Unmarshal(data, &rawHealthStatus); err != nil {
7575
return err
7676
}

godel/config/godel.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ plugins:
33
- https://github.com/{{index GroupParts 1}}/{{index GroupParts 2}}/releases/download/v{{Version}}/{{Product}}-{{Version}}-{{OS}}-{{Arch}}.tgz
44
plugins:
55
- locator:
6-
id: com.palantir.godel-conjure-plugin:conjure-plugin:6.70.0
6+
id: com.palantir.godel-conjure-plugin:conjure-plugin:6.74.0
77
checksums:
8-
darwin-amd64: f5b6c4df8a8fada54e6c3a5c8deae79c8fa5f791e5f4d07c5aaa6298ab5d407f
9-
linux-amd64: 90673782291b01dd76df78fa83982a6bb2e1693a63e72f07541da1a626ab400f
8+
darwin-amd64: 510d193e03e6e2866b97b767e526e14a8897a519f3d2e404bde0368c42211ef7
9+
linux-amd64: e96385c6ee3255411dce8287f338bfa19ea22faba2b040f7c4e8718f2be711d8
1010
- locator:
11-
id: com.palantir.godel-mod-plugin:mod-plugin:1.45.0
11+
id: com.palantir.godel-mod-plugin:mod-plugin:1.46.0
1212
checksums:
13-
darwin-amd64: 86c00f02a2fa80a2223d492e931c4ec3312b3e0c895822c2f5ed8c0ea7b2e1b9
14-
linux-amd64: ac50a961c95657a92105c417671b8d18dfe45da0019e72cdac0b9f5938f2ea4c
13+
darwin-amd64: 66c0d7942a73e3fc48cbf192a2e09b78c218f22daa712141fe4408ffb930c377
14+
linux-amd64: 242803426b46260202c6a5341ff4b01a8b82a067c8a6f803ea6c94fe4b1ea13e
1515
environment:
1616
GO111MODULE: "on"
1717
GOFLAGS: "-mod=vendor"

0 commit comments

Comments
 (0)