-
Notifications
You must be signed in to change notification settings - Fork 547
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
chore: v0.25.2
#3145
chore: v0.25.2
#3145
Conversation
Side note about release fix process:
Finally for the backport, you can probably merge the base branch to Ofc these are suggestions that follow the model I advised in #2930, we can discuss about something else if the team wants something different. |
Yeah i should have done |
I looked at the schema I roughly drafted for #2930 and yes the base branch name is confusing, it's not possible to guess if the |
Actually : Where the base branch is created like that
(should be v0.25.0 but we started the new model after v0.25.1 so...) |
@@ -382,7 +382,7 @@ func (a appCreator) newApp( | |||
baseapp.SetIndexEvents(cast.ToStringSlice(appOpts.Get(server.FlagIndexEvents))), | |||
baseapp.SetSnapshot(snapshotStore, snapshotOptions), | |||
baseapp.SetIAVLCacheSize(cast.ToInt(appOpts.Get(server.FlagIAVLCacheSize))), | |||
baseapp.SetIAVLDisableFastNode(cast.ToBool(appOpts.Get(server.FlagIAVLFastNode))), | |||
baseapp.SetIAVLDisableFastNode(cast.ToBool(appOpts.Get(server.FlagDisableIAVLFastNode))), |
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.
Can you point where does this come from plz ?
Because I remember we added the red line for a recent cosmos bug fix, also, and now we somehow disable it right ?
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.
This flag was introduced in sdk v0.46.3
. But then they changed the name of the flag.
FlagIAVLFastNode
-> FlagDisableIAVLFastNode
. So this change is just propagating that.
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.
ok only name change fine, thx!
I will open a new PR with the proper structure. |
This update bumps
ibc-go
andcosmos-sdk
to their latest versions as per this security advisory.