-
Notifications
You must be signed in to change notification settings - Fork 121
chore!: consolidate db migrations into one file per table #2392
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
Conversation
|
Vercel deployment URL: https://stacks-blockchain-d7jhdup69-hirosystems.vercel.app 🚀 |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
rmottley-hiro
left a comment
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.
LGTM, double-checked the indexes and ran the api for a while. Really liking those new multicolumn index as well
|
Thanks for the thorough testing @rmottley-hiro ! |
## [9.0.0-next.1](v8.13.1...v9.0.0-next.1) (2025-12-04) ### ⚠ BREAKING CHANGES * consolidate db migrations into one file per table (#2392) * This change will require resyncing from genesis * optimize principal transaction lists and etags (#2370) ### Features * migrate default postgres schema ([2cc2459](2cc2459)) * migrate default postgres schema ([#2373](#2373)) ([eb183cf](eb183cf)) * optimize principal transaction lists and etags ([#2370](#2370)) ([30c63d7](30c63d7)) ### Bug Fixes * calculate burnchain reward reorgs correctly ([#2355](#2355)) ([f82efbc](f82efbc)) * do not display revoked pool delegations ([#2357](#2357)) ([c6de314](c6de314)) * push redis updates to a stream ([#2360](#2360)) ([2bfacf6](2bfacf6)) * sanitize event observer strings ([#2361](#2361)) ([2604539](2604539)) ### Miscellaneous Chores * consolidate db migrations into one file per table ([#2392](#2392)) ([60b8db0](60b8db0))
Consolidates many migration files into a single file per table, so we start API v9 with an easy to maintain list of files. Also updates
pgandnode-pg-migratedependencies to latest compatible versions and switches files from JS to TS.Fixes #2389