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

docs: update ADR 038 proposal #13473

Merged
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3086c7c
update proposal
Oct 6, 2022
e62ef74
fix typo
egaxhaj Oct 7, 2022
9835def
remove confict
egaxhaj Oct 7, 2022
6f24329
header formatting
egaxhaj Oct 7, 2022
b3c1487
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
egaxhaj Oct 7, 2022
5a123c6
fix conflicts
Oct 7, 2022
9353cc5
changelog entry
Oct 7, 2022
561b494
rename to kvstorewriter to better clerify its function
Oct 10, 2022
992db84
async listener hooks
Oct 11, 2022
9ab38ac
remove goroutine on blocking calls
Oct 13, 2022
afa5702
terminate with os.Exit
Oct 13, 2022
7dc7556
updates from review feedback
Oct 31, 2022
bc024bb
update comment, call listener in Set/Delete directly
Nov 1, 2022
cf4acdb
add gRPC client, server and plugin implementation examples
Nov 1, 2022
3e894d7
update language on RegisterStreamingPlugin function
Nov 2, 2022
ac62da7
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
Nov 2, 2022
dbcdb0d
fix changelog diff
Nov 2, 2022
2f90009
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
Nov 2, 2022
ac27a20
fix changelog, fix adr changelog
Nov 10, 2022
231dace
fix formatting on old vs new change
egaxhaj Nov 11, 2022
6d227ae
pass args directly to inline func
Nov 11, 2022
3312ee9
deterministic change set pop, multi plugin loading, use base context.…
Nov 18, 2022
5b2c143
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
egaxhaj Nov 18, 2022
4f6e8c0
support in-process and out-of-process listeners
Nov 21, 2022
c3ead9a
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
Dec 5, 2022
3919966
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
Dec 12, 2022
5d93139
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
egaxhaj Dec 13, 2022
2ee7313
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
egaxhaj Dec 13, 2022
399c35a
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
egaxhaj Dec 14, 2022
b4a6e8f
Merge branch 'main' into egaxhaj/adr-038-go-plugin-prosoal
egaxhaj Dec 16, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (x/auth) [#13210](https://github.com/cosmos/cosmos-sdk/pull/13210) Add `Query/AccountInfo` endpoint for simplified access to basic account info.
* (x/consensus) [#12905](https://github.com/cosmos/cosmos-sdk/pull/12905) Create a new `x/consensus` module that is now responsible for maintaining Tendermint consensus parameters instead of `x/param`. Legacy types remain in order to facilitate parameter migration from the deprecated `x/params`. App developers should ensure that they execute `baseapp.MigrateParams` during their chain upgrade. These legacy types will be removed in a future release.
* (client/tx) [#13670](https://github.com/cosmos/cosmos-sdk/pull/13670) Add validation in `BuildUnsignedTx` to prevent simple inclusion of valid mnemonics
* (x/auth) [#13612](https://github.com/cosmos/cosmos-sdk/pull/13612) Add `Query/ModuleAccountByName` endpoint for accessing the module account info by module name.
egaxhaj marked this conversation as resolved.
Show resolved Hide resolved

### Improvements

Expand Down
Loading