-
Hello, I would like to know if there are sql scripts to migrate dependency track versions? I'm currently on version 4.9.1 (production), and I'd like to upgrade to version 4.11.1. I've seen that some changes have been made on the database/api side, so to avoid breaking everything during the upgrade, I'd like to know what would be the best practice for upgrading ? Thanks in advance for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Dependency-Track takes care of executing any database migrations on startup. So in the best case you simply start a container of the new version and everything's done for you. If this is a production deployment you rely on, you should back up:
Prior to upgrading. If anything goes wrong, you'll be able to roll back to your previous version. |
Beta Was this translation helpful? Give feedback.
Dependency-Track takes care of executing any database migrations on startup. So in the best case you simply start a container of the new version and everything's done for you.
If this is a production deployment you rely on, you should back up:
data directory
(/data
volume in containers)Prior to upgrading. If anything goes wrong, you'll be able to roll back to your previous version.