Skip to content

Commit 5855496

Browse files
alpealjo242
authored andcommitted
Merge commit from fork
* Fix ABS061 (cherry picked from commit f6f5639) * Update changelog * Review feedback (cherry picked from commit c892055e7fa86db8382fb2af17bb66342d7e2eeb) * Review feedback * Remove unecessary code comments * Set release date * Make format + removed todos * fix changelog --------- Co-authored-by: aljo242 <[email protected]>
1 parent 5ab318c commit 5855496

File tree

6 files changed

+536
-119
lines changed

6 files changed

+536
-119
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
3737

3838
* (x/staking) Fix a possible bypass of delagator slashing: [GHSA-86h5-xcpx-cfqc](https://github.com/cosmos/cosmos-sdk/security/advisories/GHSA-86h5-xcpx-cfqc)
3939
* Fix [ABS-0043/ABS-0044](https://github.com/cosmos/cosmos-sdk/security/advisories/GHSA-8wcc-m6j2-qxvm) Limit recursion depth for unknown field detection and unpack any
40+
* [GHSA-47ww-ff84-4jrg](https://github.com/cosmos/cosmos-sdk/security/advisories/GHSA-47ww-ff84-4jrg) Fix x/group can halt when erroring in EndBlocker
4041

4142
## [v0.46.16](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.46.16) - 2023-11-07
4243

proto/cosmos/group/v1/events.proto

+10
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,13 @@ message EventProposalPruned {
9292
// tally_result is the proposal tally result (when applicable).
9393
TallyResult tally_result = 3;
9494
}
95+
96+
// EventTallyError is an event emitted when a proposal tally failed with an error.
97+
message EventTallyError {
98+
99+
// proposal_id is the unique ID of the proposal.
100+
uint64 proposal_id = 1;
101+
102+
// error_message is the raw error output
103+
string error_message = 2;
104+
}

x/group/events.pb.go

+239-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)