build(deps): Bump the all-go group across 8 directories with 8 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 1
(11 months ago)
(11 months ago)
(11 months ago)
T:dependencies
Bumps the all-go group with 3 updates in the / directory: github.com/celestiaorg/go-header, github.com/stretchr/testify and google.golang.org/protobuf.
Bumps the all-go group with 2 updates in the /apps/testapp directory: github.com/stretchr/testify and google.golang.org/protobuf.
Bumps the all-go group with 1 update in the /da directory: github.com/stretchr/testify.
Bumps the all-go group with 3 updates in the /execution/evm directory: github.com/stretchr/testify, golang.org/x/crypto and google.golang.org/protobuf.
Bumps the all-go group with 1 update in the /execution/grpc directory: google.golang.org/protobuf.
Bumps the all-go group with 3 updates in the /sequencers/single directory: github.com/celestiaorg/go-header, github.com/stretchr/testify and google.golang.org/protobuf.
Bumps the all-go group with 5 updates in the /test/docker-e2e directory:
| Package | From | To |
|---|---|---|
| github.com/spf13/pflag | 1.0.6 |
1.0.7 |
| github.com/stretchr/testify | 1.10.0 |
1.11.0 |
| golang.org/x/crypto | 0.38.0 |
0.41.0 |
| google.golang.org/protobuf | 1.36.7 |
1.36.8 |
| github.com/celestiaorg/tastora | 0.2.3 |
0.2.4 |
Bumps the all-go group with 3 updates in the /test/e2e directory: github.com/celestiaorg/go-header, github.com/stretchr/testify and google.golang.org/protobuf.
Updates github.com/celestiaorg/go-header from 0.6.6 to 0.7.0
Release notes
Sourced from github.com/celestiaorg/go-header's releases.
v0.7.0
v0.7.0 release brings high-performance dynamic Tail maintenance for Syncer, also known as header pruning.
Notable Changes
Syncer
These new fields were introduced to Syncer's config:
// PruningWindow defines the duration within which headers are retained before being pruned. // Default is 337 hours. PruningWindow time.Duration // SyncFromHash is the hash of the header from which Syncer should start syncing. // Zero value to disable. Value updates up and down the chain are gracefully handled by Syncer. // // By default, Syncer maintains PruningWindow number of headers. SyncFromHash overrides this default, // allowing any user to specify a custom starting point. // // SyncFromHash has higher priority than SyncFromHeight. SyncFromHash string // SyncFromHeight is the height of the header from which Syncer should start syncing. // Zero value to disable. Value updates up and down the chain are gracefully handled by Syncer. // // By default, Syncer maintains PruningWindow number of headers. SyncFromHeight overrides this default, // allowing any user to specify a custom starting point. // // SyncFromHeight has lower priority than SyncFromHash. SyncFromHeight uint64Store
store.Store.DeleteTomethod (celestiaorg/go-header#275)store.Store.OnDeletemethod, which allows users to register individual header deletion handlers. This will enable users to execute farewell logic when headers are removed, e.g., cleanup data committed in the header but stored separately. (celestiaorg/go-header#320)- Unsafe store recovery tools (celestiaorg/go-header#325)
Breaks
store.Store.Initandstore.Initwere removed. Initialization is now performed lazily using the first header given tostore.Append(celestiaorg/go-header#274)What's Changed
- chore(CODEOWNERS): remove
@cristalolegby@cristalolegin celestiaorg/go-header#288- chore(sync): improve bifurcation logs by
@Wondertanin celestiaorg/go-header#291- Pruning Meta PR by
@Wondertanin celestiaorg/go-header#292- fix(store): support intermittent writes for batch by
@Wondertanin celestiaorg/go-header#296- fix(store): Tail aware HasAt by
@Wondertanin celestiaorg/go-header#298- fix(sync): move tail only if head changes by
@Wondertanin celestiaorg/go-header#293- chore: bump deps by
@Wondertanin celestiaorg/go-header#299- chore: bump libp2p by
@Wondertanin celestiaorg/go-header#300- fix(syncer): check tail hash via len by
@Wondertanin celestiaorg/go-header#309- fix(headertest): correctly initialize Tail by
@Wondertanin celestiaorg/go-header#308- feat(store)!: OnDelete method by
@Wondertanin celestiaorg/go-header#304- chore(store|sync): error wrappings by
@Wondertanin celestiaorg/go-header#310
... (truncated)
Commits
9b03087feat(store): store recovery tools (#325)38be935perf(store): batch reads (#331)bc5064bfix(sync): allow estimation errors (#329)aa4ae28fix(sync): subj init death loop (#324)5c305adfeat(store): allow partial init (#327)105a106perf(store): pass batch through context (#328)03ded0dmisc(store): various fixes and chores (#330)5776877fix(store): stop long receding/advancing on Stop (#326)27b8dfeperf(store): almost readless parallel deletes (#320)21b31ffchore(syncer): improved logging (#315)- Additional commits viewable in compare view
Updates github.com/stretchr/testify from 1.10.0 to 1.11.0
Release notes
Sourced from github.com/stretchr/testify's releases.
v1.11.0
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
- Call stack perf change for CallerInfo by
@mikeauclairin stretchr/testify#1614- Lazily render mock diff output on successful match by
@mikeauclairin stretchr/testify#1615- assert: check early in Eventually, EventuallyWithT, and Never by
@cszczepaniakin stretchr/testify#1427- assert: add IsNotType by
@bartventerin stretchr/testify#1730- assert.JSONEq: shortcut if same strings by
@dolmenin stretchr/testify#1754- assert.YAMLEq: shortcut if same strings by
@dolmenin stretchr/testify#1755- assert: faster and simpler isEmpty using reflect.Value.IsZero by
@dolmenin stretchr/testify#1761- suite: faster methods filtering (internal refactor) by
@dolmenin stretchr/testify#1758Fixes
- assert.ErrorAs: log target type by
@craig65535in stretchr/testify#1345- Fix failure message formatting for Positive and Negative asserts in stretchr/testify#1062
- Improve ErrorIs message when error is nil but an error was expected by
@tsioftasin stretchr/testify#1681- fix Subset/NotSubset when calling with mixed input types by
@siliconbrainin stretchr/testify#1729- Improve ErrorAs failure message when error is nil by
@ccoVeillein stretchr/testify#1734- mock.AssertNumberOfCalls: improve error msg by
@3scalationin stretchr/testify#1743Documentation, Build & CI
- docs: Fix typo in README by
@alexandearin stretchr/testify#1688- Replace deprecated io/ioutil with io and os by
@alexandearin stretchr/testify#1684- Document consequences of calling t.FailNow() by
@greg0irein stretchr/testify#1710- chore: update docs for Unset #1621 by
@techfgin stretchr/testify#1709- README: apply gofmt to examples by
@alexandearin stretchr/testify#1687- refactor: use %q and %T to simplify fmt.Sprintf by
@alexandearin stretchr/testify#1674- Propose Christophe Colombier (ccoVeille) as approver by
@brackendawsonin stretchr/testify#1716- Update documentation for the Error function in assert or require package by
@architagrin stretchr/testify#1675- assert: remove deprecated build constraints by
@alexandearin stretchr/testify#1671- assert: apply gofumpt to internal test suite by
@ccoVeillein stretchr/testify#1739- CI: fix shebang in .ci.*.sh scripts by
@dolmenin stretchr/testify#1746- assert,require: enable parallel testing on (almost) all top tests by
@dolmenin stretchr/testify#1747- suite.Passed: add one more status test report by
@Ararsa-Deresein stretchr/testify#1706- Add Helper() method in internal mocks and assert.CollectT by
@dolmenin stretchr/testify#1423- assert.Same/NotSame: improve usage of Sprintf by
@ccoVeillein stretchr/testify#1742- mock: enable parallel testing on internal testsuite by
@dolmenin stretchr/testify#1756- suite: cleanup use of 'testing' internals at runtime by
@dolmenin stretchr/testify#1751- assert: check test failure message for Empty and NotEmpty by
@ccoVeillein stretchr/testify#1745- deps: fix dependency cycle with objx (again) by
@dolmenin stretchr/testify#1567- assert.Empty: comprehensive doc of "Empty"-ness rules by
@dolmenin stretchr/testify#1753- doc: improve godoc of top level 'testify' package by
@dolmenin stretchr/testify#1760- assert.ErrorAs: simplify retrieving the type name by
@ccoVeillein stretchr/testify#1740- assert.EqualValues: improve test coverage to 100% by
@dolmenin stretchr/testify#1763- suite.Run: simplify running of Setup/TeardownSuite by
@renzoarreazain stretchr/testify#1769- assert.CallerInfo: micro optimization by using LastIndexByte by
@dolmenin stretchr/testify#1767- assert.CallerInfo: micro cleanup by
@dolmenin stretchr/testify#1768- assert: refactor TestFileExists and TestDirExists tests to enable parallel testing by
@dolmenin stretchr/testify#1766
... (truncated)
Commits
b7801fbMerge pull request #1778 from stretchr/dependabot/github_actions/actions/chec...69831f3build(deps): bump actions/checkout from 4 to 5a53be35Improve captureTestingT helperaafb604mock: improve formatting of error message7218e03improve error msg929a212Merge pull request #1758 from stretchr/dolmen/suite-faster-method-filteringbc7459esuite: faster filtering of methods (-testify.m)7d37b5csuite: refactor methodFilterc58bc90Merge pull request #1764 from stretchr/dolmen/suite-refactor-stats-for-readab...87101a6suite.Run: refactor handling of stats- Additional commits viewable in compare view
Updates google.golang.org/protobuf from 1.36.7 to 1.36.8
Updates github.com/stretchr/testify from 1.10.0 to 1.11.0
Release notes
Sourced from github.com/stretchr/testify's releases.
v1.11.0
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
- Call stack perf change for CallerInfo by
@mikeauclairin stretchr/testify#1614- Lazily render mock diff output on successful match by
@mikeauclairin stretchr/testify#1615- assert: check early in Eventually, EventuallyWithT, and Never by
@cszczepaniakin stretchr/testify#1427- assert: add IsNotType by
@bartventerin stretchr/testify#1730- assert.JSONEq: shortcut if same strings by
@dolmenin stretchr/testify#1754- assert.YAMLEq: shortcut if same strings by
@dolmenin stretchr/testify#1755- assert: faster and simpler isEmpty using reflect.Value.IsZero by
@dolmenin stretchr/testify#1761- suite: faster methods filtering (internal refactor) by
@dolmenin stretchr/testify#1758Fixes
- assert.ErrorAs: log target type by
@craig65535in stretchr/testify#1345- Fix failure message formatting for Positive and Negative asserts in stretchr/testify#1062
- Improve ErrorIs message when error is nil but an error was expected by
@tsioftasin stretchr/testify#1681- fix Subset/NotSubset when calling with mixed input types by
@siliconbrainin stretchr/testify#1729- Improve ErrorAs failure message when error is nil by
@ccoVeillein stretchr/testify#1734- mock.AssertNumberOfCalls: improve error msg by
@3scalationin stretchr/testify#1743Documentation, Build & CI
- docs: Fix typo in README by
@alexandearin stretchr/testify#1688- Replace deprecated io/ioutil with io and os by
@alexandearin stretchr/testify#1684- Document consequences of calling t.FailNow() by
@greg0irein stretchr/testify#1710- chore: update docs for Unset #1621 by
@techfgin stretchr/testify#1709- README: apply gofmt to examples by
@alexandearin stretchr/testify#1687- refactor: use %q and %T to simplify fmt.Sprintf by
@alexandearin stretchr/testify#1674- Propose Christophe Colombier (ccoVeille) as approver by
@brackendawsonin stretchr/testify#1716- Update documentation for the Error function in assert or require package by
@architagrin stretchr/testify#1675- assert: remove deprecated build constraints by
@alexandearin stretchr/testify#1671- assert: apply gofumpt to internal test suite by
@ccoVeillein stretchr/testify#1739- CI: fix shebang in .ci.*.sh scripts by
@dolmenin stretchr/testify#1746- assert,require: enable parallel testing on (almost) all top tests by
@dolmenin stretchr/testify#1747- suite.Passed: add one more status test report by
@Ararsa-Deresein stretchr/testify#1706- Add Helper() method in internal mocks and assert.CollectT by
@dolmenin stretchr/testify#1423- assert.Same/NotSame: improve usage of Sprintf by
@ccoVeillein stretchr/testify#1742- mock: enable parallel testing on internal testsuite by
@dolmenin stretchr/testify#1756- suite: cleanup use of 'testing' internals at runtime by
@dolmenin stretchr/testify#1751- assert: check test failure message for Empty and NotEmpty by
@ccoVeillein stretchr/testify#1745- deps: fix dependency cycle with objx (again) by
@dolmenin stretchr/testify#1567- assert.Empty: comprehensive doc of "Empty"-ness rules by
@dolmenin stretchr/testify#1753- doc: improve godoc of top level 'testify' package by
@dolmenin stretchr/testify#1760- assert.ErrorAs: simplify retrieving the type name by
@ccoVeillein stretchr/testify#1740- assert.EqualValues: improve test coverage to 100% by
@dolmenin stretchr/testify#1763- suite.Run: simplify running of Setup/TeardownSuite by
@renzoarreazain stretchr/testify#1769- assert.CallerInfo: micro optimization by using LastIndexByte by
@dolmenin stretchr/testify#1767- assert.CallerInfo: micro cleanup by
@dolmenin stretchr/testify#1768- assert: refactor TestFileExists and TestDirExists tests to enable parallel testing by
@dolmenin stretchr/testify#1766
... (truncated)
Commits
b7801fbMerge pull request #1778 from stretchr/dependabot/github_actions/actions/chec...69831f3build(deps): bump actions/checkout from 4 to 5a53be35Improve captureTestingT helperaafb604mock: improve formatting of error message7218e03improve error msg929a212Merge pull request #1758 from stretchr/dolmen/suite-faster-method-filteringbc7459esuite: faster filtering of methods (-testify.m)7d37b5csuite: refactor methodFilterc58bc90Merge pull request #1764 from stretchr/dolmen/suite-refactor-stats-for-readab...87101a6suite.Run: refactor handling of stats- Additional commits viewable in compare view
Updates google.golang.org/protobuf from 1.36.7 to 1.36.8
Updates github.com/stretchr/testify from 1.10.0 to 1.11.0
Release notes
Sourced from github.com/stretchr/testify's releases.
v1.11.0
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
- Call stack perf change for CallerInfo by
@mikeauclairin stretchr/testify#1614- Lazily render mock diff output on successful match by
@mikeauclairin stretchr/testify#1615- assert: check early in Eventually, EventuallyWithT, and Never by
@cszczepaniakin stretchr/testify#1427- assert: add IsNotType by
@bartventerin stretchr/testify#1730- assert.JSONEq: shortcut if same strings by
@dolmenin stretchr/testify#1754- assert.YAMLEq: shortcut if same strings by
@dolmenin stretchr/testify#1755- assert: faster and simpler isEmpty using reflect.Value.IsZero by
@dolmenin stretchr/testify#1761- suite: faster methods filtering (internal refactor) by
@dolmenin stretchr/testify#1758Fixes
- assert.ErrorAs: log target type by
@craig65535in stretchr/testify#1345- Fix failure message formatting for Positive and Negative asserts in stretchr/testify#1062
- Improve ErrorIs message when error is nil but an error was expected by
@tsioftasin stretchr/testify#1681- fix Subset/NotSubset when calling with mixed input types by
@siliconbrainin stretchr/testify#1729- Improve ErrorAs failure message when error is nil by
@ccoVeillein stretchr/testify#1734- mock.AssertNumberOfCalls: improve error msg by
@3scalationin stretchr/testify#1743Documentation, Build & CI
- docs: Fix typo in README by
@alexandearin stretchr/testify#1688- Replace deprecated io/ioutil with io and os by
@alexandearin stretchr/testify#1684- Document consequences of calling t.FailNow() by
@greg0irein stretchr/testify#1710- chore: update docs for Unset #1621 by
@techfgin stretchr/testify#1709- README: apply gofmt to examples by
@alexandearin stretchr/testify#1687- refactor: use %q and %T to simplify fmt.Sprintf by
@alexandearin stretchr/testify#1674- Propose Christophe Colombier (ccoVeille) as approver by
@brackendawsonin stretchr/testify#1716- Update documentation for the Error function in assert or require package by
@architagrin stretchr/testify#1675- assert: remove deprecated build constraints by
@alexandearin stretchr/testify#1671- assert: apply gofumpt to internal test suite by
@ccoVeillein stretchr/testify#1739- CI: fix shebang in .ci.*.sh scripts by
@dolmenin stretchr/testify#1746- assert,require: enable parallel testing on (almost) all top tests by
@dolmenin stretchr/testify#1747- suite.Passed: add one more status test report by
@Ararsa-Deresein stretchr/testify#1706- Add Helper() method in internal mocks and assert.CollectT by
@dolmenin stretchr/testify#1423- assert.Same/NotSame: improve usage of Sprintf by
@ccoVeillein stretchr/testify#1742- mock: enable parallel testing on internal testsuite by
@dolmenin stretchr/testify#1756- suite: cleanup use of 'testing' internals at runtime by
@dolmenin stretchr/testify#1751- assert: check test failure message for Empty and NotEmpty by
@ccoVeillein stretchr/testify#1745- deps: fix dependency cycle with objx (again) by
@dolmenin stretchr/testify#1567- assert.Empty: comprehensive doc of "Empty"-ness rules by
@dolmenin stretchr/testify#1753- doc: improve godoc of top level 'testify' package by
@dolmenin stretchr/testify#1760- assert.ErrorAs: simplify retrieving the type name by
@ccoVeillein stretchr/testify#1740- assert.EqualValues: improve test coverage to 100% by
@dolmenin stretchr/testify#1763- suite.Run: simplify running of Setup/TeardownSuite by
@renzoarreazain stretchr/testify#1769- assert.CallerInfo: micro optimization by using LastIndexByte by
@dolmenin stretchr/testify#1767- assert.CallerInfo: micro cleanup by
@dolmenin stretchr/testify#1768- assert: refactor TestFileExists and TestDirExists tests to enable parallel testing by
@dolmenin stretchr/testify#1766
... (truncated)
Commits
b7801fbMerge pull request #1778 from stretchr/dependabot/github_actions/actions/chec...69831f3build(deps): bump actions/checkout from 4 to 5a53be35Improve captureTestingT helperaafb604mock: improve formatting of error message7218e03improve error msg929a212Merge pull request #1758 from stretchr/dolmen/suite-faster-method-filteringbc7459esuite: faster filtering of methods (-testify.m)7d37b5csuite: refactor methodFilterc58bc90Merge pull request #1764 from stretchr/dolmen/suite-refactor-stats-for-readab...87101a6suite.Run: refactor handling of stats- Additional commits viewable in compare view
Updates github.com/stretchr/testify from 1.10.0 to 1.11.0
Release notes
Sourced from github.com/stretchr/testify's releases.
v1.11.0
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
- Call stack perf change for CallerInfo by
@mikeauclairin stretchr/testify#1614- Lazily render mock diff output on successful match by
@mikeauclairin stretchr/testify#1615- assert: check early in Eventually, EventuallyWithT, and Never by
@cszczepaniakin stretchr/testify#1427- assert: add IsNotType by
@bartventerin stretchr/testify#1730- assert.JSONEq: shortcut if same strings by
@dolmenin stretchr/testify#1754- assert.YAMLEq: shortcut if same strings by
@dolmenin stretchr/testify#1755- assert: faster and simpler isEmpty using reflect.Value.IsZero by
@dolmenin stretchr/testify#1761- suite: faster methods filtering (internal refactor) by
@dolmenin stretchr/testify#1758Fixes
- assert.ErrorAs: log target type by
@craig65535in stretchr/testify#1345- Fix failure message formatting for Positive and Negative asserts in stretchr/testify#1062
- Improve ErrorIs message when error is nil but an error was expected by
@tsioftasin stretchr/testify#1681- fix Subset/NotSubset when calling with mixed input types by
@siliconbrainin stretchr/testify#1729- Improve ErrorAs failure message when error is nil by
@ccoVeillein stretchr/testify#1734- mock.AssertNumberOfCalls: improve error msg by
@3scalationin stretchr/testify#1743Documentation, Build & CI
- docs: Fix typo in README by
@alexandearin stretchr/testify#1688- Replace deprecated io/ioutil with io and os by
@alexandearin stretchr/testify#1684- Document consequences of calling t.FailNow() by
@greg0irein stretchr/testify#1710- chore: update docs for Unset #1621 by
@techfgin stretchr/testify#1709- README: apply gofmt to examples by
@alexandearin stretchr/testify#1687- refactor: use %q and %T to simplify fmt.Sprintf by
@alexandearin stretchr/testify#1674- Propose Christophe Colombier (ccoVeille) as approver by
@brackendawsonin stretchr/testify#1716- Update documentation for the Error function in assert or require package by
@architagrin stretchr/testify#1675- assert: remove deprecated build constraints by
@alexandearin stretchr/testify#1671- assert: apply gofumpt to internal test suite by
@ccoVeillein stretchr/testify#1739- CI: fix shebang in .ci.*.sh scripts by
@dolmenin stretchr/testify#1746- assert,require: enable parallel testing on (almost) all top tests by
@dolmenin stretchr/testify#1747- suite.Passed: add one more status test report by
@Ararsa-Deresein stretchr/testify#1706- Add Helper() method in internal mocks and assert.CollectT by
@dolmenin stretchr/testify#1423- assert.Same/NotSame: improve usage of Sprintf by
@ccoVeillein stretchr/testify#1742- mock: enable parallel testing on internal testsuite by
@dolmenin stretchr/testify#1756- suite: cleanup use of 'testing' internals at runtime by
@dolmenin stretchr/testify#1751- assert: check test failure message for Empty and NotEmpty by
@ccoVeillein stretchr/testify#1745- deps: fix dependency cycle with objx (again) by
@dolmenin stretchr/testify#1567- assert.Empty: comprehensive doc of "Empty"-ness rules by
@dolmenin stretchr/testify#1753- doc: improve godoc of top level 'testify' package by
@dolmenin stretchr/testify#1760- assert.ErrorAs: simplify retrieving the type name by
@ccoVeillein stretchr/testify#1740- assert.EqualValues: improve test coverage to 100% by
@dolmenin stretchr/testify#1763- suite.Run: simplify running of Setup/TeardownSuite by
@renzoarreazain stretchr/testify#1769- assert.CallerInfo: micro optimization by using LastIndexByte by
@dolmenin stretchr/testify#1767- assert.CallerInfo: micro cleanup by
@dolmenin stretchr/testify#1768- assert: refactor TestFileExists and TestDirExists tests to enable parallel testing by
@dolmenin stretchr/testify#1766
... (truncated)
Commits
b7801fbMerge pull request #1778 from stretchr/dependabot/github_actions/actions/chec...69831f3build(deps): bump actions/checkout from 4 to 5a53be35Improve captureTestingT helperaafb604mock: improve formatting of error message7218e03improve error msg929a212Merge pull request #1758 from stretchr/dolmen/suite-faster-method-filteringbc7459esuite: faster filtering of methods (-testify.m)7d37b5csuite: refactor methodFilterc58bc90Merge pull request #1764 from stretchr/dolmen/suite-refactor-stats-for-readab...87101a6suite.Run: refactor handling of stats- Additional commits viewable in compare view
Updates golang.org/x/crypto from 0.38.0 to 0.41.0
Commits
ef5341bgo.mod: update golang.org/x dependenciesb999374acme: fix pebble subprocess output data racec247deax509roots/fallback: store bundle certs directly in DER1fda731acme: increase pebble test waitForServer attempts1b4c3d2x509roots/fallback: update bundleb903b53acme: capture pebble test subprocess stdout/stderr459a9dbgo.mod: update golang.org/x dependencies74e709assh: add AlgorithmNegotiationErrorb3790b8acme: fix TLSALPN01ChallengeCert for IP address identifiers1dc4269acme: add Pebble integration testing- Additional commits viewable in compare view
Updates golang.org/x/net from 0.40.0 to 0.42.0
Commits
76358aago.mod: update golang.org/x dependencies6e41caego.mod: update golang.org/x dependencies15f7d40http2: correctly wrap ErrFrameTooLarge in Framer.ReadFrameef33bc0internal/http3: use bubbled context in synctest tests919c6bchttp2: use an array instead of a map in typeFrameParserbae01a7trace: add missing td tag- See full diff in compare view
Updates golang.org/x/sync from 0.14.0 to 0.16.0
Commits
7fad2c9errgroup: revert propagation of panics8a14946errgroup: remove duplicated comment1869c69all: replace deprecated ioutild1ac909sync/errgroup: PanicError.Error print stack trace- See full diff in compare view
Updates google.golang.org/protobuf from 1.36.6 to 1.36.8
Updates google.golang.org/protobuf from 1.36.7 to 1.36.8
Updates github.com/celestiaorg/go-header from 0.6.6 to 0.7.0
Release notes
Sourced from github.com/celestiaorg/go-header's releases.
v0.7.0
v0.7.0 release brings high-performance dynamic Tail maintenance for Syncer, also known as header pruning.
Notable Changes
Syncer
These new fields were introduced to Syncer's config:
// PruningWindow defines the duration within which headers are retained before being pruned. // Default is 337 hours. PruningWindow time.Duration // SyncFromHash is the hash of the header from which Syncer should start syncing. // Zero value to disable. Value updates up and down the chain are gracefully handled by Syncer. // // By default, Syncer maintains PruningWindow number of headers. SyncFromHash overrides this default, // allowing any user to specify a custom starting point. // // SyncFromHash has higher priority than SyncFromHeight. SyncFromHash string // SyncFromHeight is the height of the header from which Syncer should start syncing. // Zero value to disable. Value updates up and down the chain are gracefully handled by Syncer. // // By default, Syncer maintains PruningWindow number of headers. SyncFromHeight overrides this default, // allowing any user to specify a custom starting point. // // SyncFromHeight has lower priority than SyncFromHash. SyncFromHeight uint64Store
store.Store.DeleteTomethod (celestiaorg/go-header#275)store.Store.OnDeletemethod, which allows users to register individual header deletion handlers. This will enable users to execute farewell logic when headers are removed, e.g., cleanup data committed in the header but stored separately. (celestiaorg/go-header#320)- Unsafe store recovery tools (celestiaorg/go-header#325)
Breaks
store.Store.Initandstore.Initwere removed. Initialization is now performed lazily using the first header given tostore.Append(celestiaorg/go-header#274)What's Changed
- chore(CODEOWNERS): remove
@cristalolegby@cristalolegin celestiaorg/go-header#288- chore(sync): improve bifurcation logs by
@Wondertanin celestiaorg/go-header#291- Pruning Meta PR by
@Wondertanin celestiaorg/go-header#292- fix(store): support intermittent writes for batch by
@Wondertanin celestiaorg/go-header#296- fix(store): Tail aware HasAt by
@Wondertanin celestiaorg/go-header#298- fix(sync): move tail only if head changes by
@WondertanDescription has been truncated
Pull Request Statistics
4
22
+285
-171
Package Dependencies
google.golang.org/protobuf
go
1.36.7 → 1.36.8
Patch
github.com/stretchr/testify
go
1.10.0 → 1.11.0
Minor
github.com/celestiaorg/tastora
go
0.2.3 → 0.2.4
Patch
Technical Details
| ID: | 5827507 |
| UUID: | 2775242914 |
| Node ID: | PR_kwDOFABrEc6latii |
| Host: | GitHub |
| Repository: | evstack/ev-node |
| Merge State: | Dirty |