You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Cosmos SDK v2, v0.52 was the last version having baseapp support. This means baseapp, and its depend can be removed from main.
Problem Definition
BaseApp is being imported everywhere. Additionally some tests are still depending on baseapp of some other deprecated parts.
This should first be fixed before removing baseapp.
Work Breakdown
All removal of code needs 1. to be completed to ensure no regressions has been introduced in v2.
When removing components, do not forget to remove anything related to it (think of CI jobs f.e)
cd simapp; rm -r $(ls -A | grep -v v2) # + remove from CI build, simapp entry in go.work.example, remove system tests v1 job, COSMOS_BUILD_OPTIONS=v2 as default in makefile
Removal of runtime (without v2 obv) & baseapp option
Summary
With Cosmos SDK v2, v0.52 was the last version having baseapp support. This means baseapp, and its depend can be removed from main.
Problem Definition
BaseApp is being imported everywhere. Additionally some tests are still depending on baseapp of some other deprecated parts.
This should first be fixed before removing baseapp.
Work Breakdown
All removal of code needs 1. to be completed to ensure no regressions has been introduced in v2.
When removing components, do not forget to remove anything related to it (think of CI jobs f.e)
cd simapp; rm -r $(ls -A | grep -v v2) # + remove from CI build, simapp entry in go.work.example, remove system tests v1 job, COSMOS_BUILD_OPTIONS=v2 as default in makefile
server
and commands under client (without v2 obv) (ref: refactor: remove v1 commands and begin server removal #23018, chore: remove snapshot commands #23015)baseapp
from module tests. #22903)The client package should stay for the time being and isn't part of this epic.
The text was updated successfully, but these errors were encountered: