From bbe7a1053bc0ec366a7629b49d0df0f104704b8d Mon Sep 17 00:00:00 2001 From: svc-excavator-bot Date: Tue, 31 Dec 2024 04:52:50 +0000 Subject: [PATCH] Excavator: Updates godel plugins to latest versions --- conjure/witchcraft/api/health/structs.conjure.go | 16 ++++++++-------- godel/config/godel.yml | 12 ++++++------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/conjure/witchcraft/api/health/structs.conjure.go b/conjure/witchcraft/api/health/structs.conjure.go index 20f9872..f6a5347 100644 --- a/conjure/witchcraft/api/health/structs.conjure.go +++ b/conjure/witchcraft/api/health/structs.conjure.go @@ -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 } @@ -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 } diff --git a/godel/config/godel.yml b/godel/config/godel.yml index aac4d6c..02ea51f 100644 --- a/godel/config/godel.yml +++ b/godel/config/godel.yml @@ -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"