Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump substreams from 0.5.12 to 0.5.22 #48

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 28, 2024

Bumps substreams from 0.5.12 to 0.5.22.

Release notes

Sourced from substreams's releases.

v0.5.22

  • Added ExprMatcher, and constructor(s) expr_matcher and ExprMatcher::new. This can be used to parse an expression once and re-used it to run multiple matches_keys against different keys:

      let matcher = substreams::expr_matcher(&query);
    transactions.flat_map(|trx| {
    trx.instructions()
    .filter(|view| matcher.matches_keys(&vec![format!("program:{}", view.program_id().to_string())]))
    });

v0.5.21

  • Add skip_empty_output intrinsic (requires substreams server version v1.9.0 or later)

v0.5.20

  • Accepts - character in expression's parsing expect at the beginning of the expression. (Ex: -test is failing, test-8 is not)

v0.5.19

  • The return of store type StoreSetSum which allows both summing and setting a value in a store. This is useful for storing aggregated values in a store. Note: to read deltas from this store, you will need to use the Deltas type. The delta values will come prefixed with "set:" or "sum:" depending on the operation, followed by the string representation of the value. It is up to the user to decode the values as necessary.

v0.5.18

  • Accept all characters within index keys except -,', ", &&, ||, ), ( and spaces of all kind.

v0.5.17

  • Removed a store type added in 0.5.15 and 0.5.16 which added a store type which has been cancelled due to a design issue.

v0.5.16

  • Add StoreSetSum to the WRITABLE_STORE array

v0.5.15

  • Add new store type StoreSetSum which allows both summing and setting a value in a store. This is useful for storing aggregated values in a store.

v0.5.14

  • Add index keys protobuf in substreams crate
  • Add matches_keys_in_parsed_expr function returning a bool. It returns true, if the set of keys provided, matches the expression. (Ex: expression: (key1 || key2), if the set of keys contains key1 or contains key2, matches_keys_in_parsed_expr(keys, expression) returns true, else returns false)

v0.5.13

Added support for specifying let mut <param>: <Type> when using the #[substreams::handlers::map] macros, this enables in-place trimming of received data.

Changelog

Sourced from substreams's changelog.

0.5.22

  • Added ExprMatcher, and constructor(s) expr_matcher and ExprMatcher::new. This can be used to parse an expression once and re-used it to run multiple matches_keys against different keys:

      let matcher = substreams::expr_matcher(&query);
    transactions.flat_map(|trx| {
    trx.instructions()
    .filter(|view| matcher.matches_keys(&vec![format!("program:{}", view.program_id().to_string())]))
    });

0.5.21

  • Add skip_empty_output intrinsic (requires substreams server version v1.9.0 or later)

0.5.20

  • Accepts - character in expression's parsing expect at the beginning of the expression. (Ex: -test is failing, test-8 is not)

0.5.19

  • The return of store type StoreSetSum which allows both summing and setting a value in a store. This is useful for storing aggregated values in a store. Note: to read deltas from this store, you will need to use the Deltas type. The delta values will come prefixed with "set:" or "sum:" depending on the operation, followed by the string representation of the value. It is up to the user to decode the values as necessary.

0.5.18

  • Accept all characters within index keys except -,', ", &&, ||, ), ( and spaces of all kind.

0.5.17

  • Removed StoreSetSum. (Reverted changes from 0.5.16 and 0.5.15)

0.5.16

  • Add StoreSetSum to the WRITABLE_STORE array

0.5.15

  • Add new store type StoreSetSum which allows both summing and setting a value in a store. This is useful for storing aggregated values in a store.

0.5.14

  • Add index keys protobuf in substreams crate
  • Add matches_keys_in_parsed_expr function returning a bool. It returns true, if the set of keys provided, matches the expression. (Ex: expression: (key1 || key2), if the set of keys contains key1 or contains key2, matches_keys_in_parsed_expr(keys, expression) returns true, else returns false)

0.5.13

Added support for specifying let mut <param>: <Type> when using the #[substreams::handlers::map] macros, this enables in-place trimming of received data.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [substreams](https://github.com/streamingfast/substreams-rs) from 0.5.12 to 0.5.22.
- [Release notes](https://github.com/streamingfast/substreams-rs/releases)
- [Changelog](https://github.com/streamingfast/substreams-rs/blob/develop/CHANGELOG.md)
- [Commits](streamingfast/substreams-rs@v0.5.12...v0.5.22)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants