From e6ece7d3e035716b31deb35c460920b84a7187f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Duchesneau?= Date: Thu, 4 Apr 2024 14:28:04 -0400 Subject: [PATCH] bump substreams: fix context leak slowing down tier1 responses --- CHANGELOG.md | 6 ++++++ go.mod | 4 ++-- go.sum | 8 ++++---- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9d560df..8caaa707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). See [MAINTAINERS.md](./MAINTAINERS.md) for instructions to keep up to date. +## v2.4.2 + +### substreams + +* Fix a context leak causing tier1 responses to slow down progressively + ## v2.4.1 ### Substreams diff --git a/go.mod b/go.mod index 00f70464..af691457 100644 --- a/go.mod +++ b/go.mod @@ -21,12 +21,12 @@ require ( github.com/streamingfast/dstore v0.1.1-0.20240325191553-bcce8892a9bb github.com/streamingfast/eth-go v0.0.0-20240312122859-216e183c0b7f github.com/streamingfast/firehose v0.1.1-0.20240118135215-dcf04d40bfcd - github.com/streamingfast/firehose-core v1.3.2 + github.com/streamingfast/firehose-core v1.3.3 github.com/streamingfast/jsonpb v0.0.0-20210811021341-3670f0aa02d0 github.com/streamingfast/logging v0.0.0-20230608130331-f22c91403091 github.com/streamingfast/pbgo v0.0.6-0.20240131193313-6b88bc7139db github.com/streamingfast/shutter v1.5.0 - github.com/streamingfast/substreams v1.5.1 + github.com/streamingfast/substreams v1.5.2 github.com/stretchr/testify v1.8.4 github.com/test-go/testify v1.1.4 github.com/tidwall/gjson v1.14.1 diff --git a/go.sum b/go.sum index 6bccc892..065a7db8 100644 --- a/go.sum +++ b/go.sum @@ -607,8 +607,8 @@ github.com/streamingfast/eth-go v0.0.0-20240312122859-216e183c0b7f h1:1LwsmRVENf github.com/streamingfast/eth-go v0.0.0-20240312122859-216e183c0b7f/go.mod h1:UEm8dqibr3c3A1iIA3CHpkhN7j3X78prN7/55sXf3A0= github.com/streamingfast/firehose v0.1.1-0.20240118135215-dcf04d40bfcd h1:t5n8dDcgUi7t36Qwxm19K4H2vyOLJfY6MHxTbOvK1z8= github.com/streamingfast/firehose v0.1.1-0.20240118135215-dcf04d40bfcd/go.mod h1:du6tys2Q6X2pRQ3JbCziWiy7Y7KrOcl4CSb9uiGsVxA= -github.com/streamingfast/firehose-core v1.3.2 h1:k8XhCl0Fhpi7tumnidks56MOdtTXRh2z9KJN9/FZhGk= -github.com/streamingfast/firehose-core v1.3.2/go.mod h1:BvPKlMiMJG0Uj9Tnlci8mIkeg1dyP4Odu/DoMgn96Tw= +github.com/streamingfast/firehose-core v1.3.3 h1:lBOymLwEF+U5UvZVn8uOZYz5nffFPP/TaL/NtDDqEvE= +github.com/streamingfast/firehose-core v1.3.3/go.mod h1:Gouh80tQwT+0GC0XsVotltfWf4FLf2S+KaCG1y2nYrM= github.com/streamingfast/jsonpb v0.0.0-20210811021341-3670f0aa02d0 h1:g8eEYbFSykyzIyuxNMmHEUGGUvJE0ivmqZagLDK42gw= github.com/streamingfast/jsonpb v0.0.0-20210811021341-3670f0aa02d0/go.mod h1:cTNObq2Uofb330y05JbbZZ6RwE6QUXw5iVcHk1Fx3fk= github.com/streamingfast/logging v0.0.0-20210811175431-f3b44b61606a/go.mod h1:4GdqELhZOXj4xwc4IaBmzofzdErGynnaSzuzxy0ZIBo= @@ -630,8 +630,8 @@ github.com/streamingfast/shutter v1.5.0 h1:NpzDYzj0HVpSiDJVO/FFSL6QIK/YKOxY0gJAt github.com/streamingfast/shutter v1.5.0/go.mod h1:B/T6efqdeMGbGwjzPS1ToXzYZI4kDzI5/u4I+7qbjY8= github.com/streamingfast/snapshotter v0.0.0-20230316190750-5bcadfde44d0 h1:Y15G1Z4fpEdm2b+/70owI7TLuXadlqBtGM7rk4Hxrzk= github.com/streamingfast/snapshotter v0.0.0-20230316190750-5bcadfde44d0/go.mod h1:/Rnz2TJvaShjUct0scZ9kKV2Jr9/+KBAoWy4UMYxgv4= -github.com/streamingfast/substreams v1.5.1 h1:0Pi2DfeD93PEaq8TxJMpLcMi0KxfC4ueTEzOT9RB7ek= -github.com/streamingfast/substreams v1.5.1/go.mod h1:bMUaX8cdj/BVf8zcS+8I86WbxlC1mL/opxIykBoVGPc= +github.com/streamingfast/substreams v1.5.2 h1:zoeIJ/Z44vrYb7ceGmB/0vNYKrga1snse9TMeJ2/h5Y= +github.com/streamingfast/substreams v1.5.2/go.mod h1:bMUaX8cdj/BVf8zcS+8I86WbxlC1mL/opxIykBoVGPc= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=