-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
refactor(appconfig)!: simplify app config #19040
Changes from all commits
e06226f
3200d8c
cdef118
ac65a4c
054752e
24dc4fd
8facd8f
05976ac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ for more details. | |
|
||
### Params | ||
|
||
* Params Migrations were removed. It is required to migrate to 0.50 prior to upgrading to .51. | ||
* Params migrations were removed. It is required to migrate to 0.50 prior to upgrading to v0.51. | ||
|
||
### SimApp | ||
|
||
|
@@ -112,13 +112,18 @@ clientCtx = clientCtx. | |
|
||
Refer to SimApp `root_v2.go` and `root.go` for an example with an app v2 and a legacy app. | ||
|
||
#### Dependency Injection | ||
|
||
<!-- explain app_config.go changes --> | ||
|
||
Comment on lines
+115
to
+118
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The section under |
||
### Modules | ||
|
||
#### `**all**` | ||
|
||
##### Dependency Injection | ||
|
||
Previously `cosmossdk.io/core` held functions `Invoke`, `Provide` and `Register` were moved to `cosmossdk.io/depinject/appmodule`. All modules using dependency injection must update their imports. | ||
Previously `cosmossdk.io/core` held functions `Invoke`, `Provide` and `Register` were moved to `cosmossdk.io/depinject/appconfig`. | ||
All modules using dependency injection must update their imports. | ||
|
||
##### Genesis Interface | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
It appears that there is a placeholder comment
<!-- explain app_config.go changes -->
which should be replaced with the actual explanation of changes made toapp_config.go
.There is a placeholder comment that needs to be replaced with actual content explaining the changes to
app_config.go
. This is important for developers to understand the specific alterations and how to adjust their code.The placeholder comment
<!-- explain app_config.go changes -->
indicates that a section of the documentation is missing. This should be completed to provide necessary information about the changes toapp_config.go
.