-
Notifications
You must be signed in to change notification settings - Fork 57
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
Update WakuStoreCodec string to beta4 #855
Conversation
CHANGELOG.md
Outdated
@@ -15,6 +15,7 @@ The full list of changes is below. | |||
|
|||
- A new type `Timestamp` for all timestamps is introduced (currently an alias for int64). | |||
- All timestamps now have nanosecond resolution. | |||
- `waku-store` version updated to `2.0.0-beta3` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `waku-store` version updated to `2.0.0-beta3` | |
- `waku-store` protocol identifier is updated to `/vac/waku/store/2.0.0-beta4` |
waku/v2/node/wakunode2.nim
Outdated
@@ -97,7 +97,7 @@ proc protocolMatcher(codec: string): Matcher = | |||
proc match(proto: string): bool {.gcsafe.} = | |||
## Matches a proto with any postfix to the provided codec. | |||
## E.g. if the codec is `/vac/waku/filter/2.0.0` it matches the protos: | |||
## `/vac/waku/filter/2.0.0`, `/vac/waku/filter/2.0.0-beta3`, `/vac/waku/filter/2.0.0-actualnonsense` | |||
## `/vac/waku/filter/2.0.0`, `/vac/waku/filter/2.0.0-beta4`, `/vac/waku/filter/2.0.0-actualnonsense` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The filter protocol is not updated
CHANGELOG.md
Outdated
@@ -15,6 +15,7 @@ The full list of changes is below. | |||
|
|||
- A new type `Timestamp` for all timestamps is introduced (currently an alias for int64). | |||
- All timestamps now have nanosecond resolution. | |||
- `waku-store` version updated to `2.0.0-beta4` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `waku-store` version updated to `2.0.0-beta4` | |
- `waku-store` protocol identifier is updated to `/vac/waku/store/2.0.0-beta4` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Jenkins BuildsClick to see older builds (6)
|
In light of the store protocol update provided by #842 (timestamps now have nanosecond resolution), the
WakuStoreCodec
string inwaku_store
needs to be updated to the most recent version-beta4
in order to be aligned to the corresponding RFC https://rfc.vac.dev/spec/13/.