diff --git a/core/services/llo/cre/report_codec.go b/core/services/llo/cre/report_codec.go index 462ca19f90e..336dbd16ac3 100644 --- a/core/services/llo/cre/report_codec.go +++ b/core/services/llo/cre/report_codec.go @@ -50,7 +50,7 @@ func (r *ReportCodecCapabilityTriggerOpts) Decode(opts []byte) error { return nil } decoder := json.NewDecoder(bytes.NewReader(opts)) - decoder.DisallowUnknownFields() // Error on unrecognized fields + // decoder.DisallowUnknownFields() // Error on unrecognized fields return decoder.Decode(r) } diff --git a/core/services/streams/delegate.go b/core/services/streams/delegate.go index e044a4b0c79..d82b375cf83 100644 --- a/core/services/streams/delegate.go +++ b/core/services/streams/delegate.go @@ -83,7 +83,7 @@ func ValidatedStreamSpec(tomlString string) (job.Job, error) { r := strings.NewReader(tomlString) d := toml.NewDecoder(r) - d.DisallowUnknownFields() + // d.DisallowUnknownFields() err := d.Decode(&jb) if err != nil { return jb, errors.Wrap(err, "toml unmarshal error on job") diff --git a/go.mod b/go.mod index 04295d568a4..8468d4447a7 100644 --- a/go.mod +++ b/go.mod @@ -88,7 +88,7 @@ require ( github.com/smartcontractkit/chainlink-common v0.11.1 github.com/smartcontractkit/chainlink-common/keystore v1.0.2 github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 - github.com/smartcontractkit/chainlink-data-streams v0.1.13 + github.com/smartcontractkit/chainlink-data-streams v0.1.14-0.20260326134153-d6bf0945a0cd github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260320152158-2191d797b5ce github.com/smartcontractkit/chainlink-evm/contracts/cre/gobindings v0.0.0-20260107191744-4b93f62cffe3 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20251222115927-36a18321243c diff --git a/go.sum b/go.sum index 953646897a5..081f76e2ee0 100644 --- a/go.sum +++ b/go.sum @@ -1243,8 +1243,8 @@ github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 h1:FJAFgXS9 github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10/go.mod h1:oiDa54M0FwxevWwyAX773lwdWvFYYlYHHQV1LQ5HpWY= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20251215152504-b1e41f508340 h1:PsjEI+5jZIz9AS4eOsLS5VpSWJINf38clXV3wryPyMk= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20251215152504-b1e41f508340/go.mod h1:P/0OSXUlFaxxD4B/P6HWbxYtIRmmWGDJAvanq19879c= -github.com/smartcontractkit/chainlink-data-streams v0.1.13 h1:YOmt545DW6U0SyaqBf+NTGDLm1yMurVI7yOvxP5hlJk= -github.com/smartcontractkit/chainlink-data-streams v0.1.13/go.mod h1:00aL7OK0BJdF9gn/4t4f/pctUu2VLwwfA8G/tl9rCrM= +github.com/smartcontractkit/chainlink-data-streams v0.1.14-0.20260326134153-d6bf0945a0cd h1:xQwlNdJt5ckPLX+kaF7xjTVfgN0RQUZ6Cyrf9e9XzIA= +github.com/smartcontractkit/chainlink-data-streams v0.1.14-0.20260326134153-d6bf0945a0cd/go.mod h1:00aL7OK0BJdF9gn/4t4f/pctUu2VLwwfA8G/tl9rCrM= github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260320152158-2191d797b5ce h1:EZNvMVS90eowY+kkK1WXha2+lJIjSsAZaYv+czWU/QY= github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260320152158-2191d797b5ce/go.mod h1:pKO1eJueNiwFEdPxffi0etmc5nGfyiuBDsgSxRHhegA= github.com/smartcontractkit/chainlink-evm/contracts/cre/gobindings v0.0.0-20260107191744-4b93f62cffe3 h1:V22ITnWmgBAyxH+VVVo1jxm/LeJ3jcVMCVYB+zLN5mU=