Skip to content

Tags: racket2000/graph-node

Tags

canary-6b2978cf

Toggle canary-6b2978cf's commit message
store: Add some stopwatch sections

fraction2

Toggle fraction2's commit message
store: Use the right logger for pruning

We need to use the logger that adds information about the subgraph

hosted-current

Toggle hosted-current's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Detect timeouts in asc_type_id (graphprotocol#4475)

* refactor(runtime): Add sanity checks

* fix(runtime): Detect non-deterministic traps in asc_type_id

They would previously be unconditionally treated as deterministic.

* refactor(runtime): Change signatures from DeterministicHostError to HostExportError

This all falls out of changing the signature of `fn asc_type_id`.

fraction3

Toggle fraction3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
cosmos: use default impl of CheapClone (graphprotocol#4426)

integer

Toggle integer's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build(deps): bump prost-types from 0.11.6 to 0.11.8 (graphprotocol#4404)

Bumps [prost-types](https://github.com/tokio-rs/prost) from 0.11.6 to 0.11.8.
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.11.6...v0.11.8)

---
updated-dependencies:
- dependency-name: prost-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

fraction

Toggle fraction's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build(deps): bump prost-types from 0.11.6 to 0.11.8 (graphprotocol#4404)

Bumps [prost-types](https://github.com/tokio-rs/prost) from 0.11.6 to 0.11.8.
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.11.6...v0.11.8)

---
updated-dependencies:
- dependency-name: prost-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v0.30.0

Toggle v0.30.0's commit message

Unverified

No user is associated with the committer email.
Release v0.30.0

v0.30.0-rc.0

Toggle v0.30.0-rc.0's commit message

Unverified

No user is associated with the committer email.
Release v0.30.0

canary-3786140

Toggle canary-3786140's commit message
strip all null bytes from utf8 strings that come from substreams, lik…

…e it's done on other sources

canary-06a9f28

Toggle canary-06a9f28's commit message
The `SubstreamsBlockStream` was using `request.clone()` side stepping…

… latest cursor value

The `request.clone()` does not correctly use the `latest_cursor` value which is the valid up to date in memory cursor to use on re-connection. This led to poisining error in `graph-node` where the same block was processed multiple time because the cursor was not correctly used.

Fixed by moving the request creation directly where it's needed which will use the correct up to date `latest_cursor` value now.