And where do I (reliably) look for this kind of information? I find myself googling for 'wordpress changelog' on every other update...
Background: usually I use a "skeletal" WP installation (seperate wp
/app
and wp-content
folders), so I could try out the new major version and check for theme incompatibilites by "hotswapping" the wp
folder. And I'm worried that "swapping back" might not work due to a migrated DB. Yes I know, I should always back it up before an update anyway. Question still stands :)
And where do I (reliably) look for this kind of information? I find myself googling for 'wordpress changelog' on every other update...
Background: usually I use a "skeletal" WP installation (seperate wp
/app
and wp-content
folders), so I could try out the new major version and check for theme incompatibilites by "hotswapping" the wp
folder. And I'm worried that "swapping back" might not work due to a migrated DB. Yes I know, I should always back it up before an update anyway. Question still stands :)
So after some thinking I came up with this:
Codex / Wordpress Versions has Changelogs, but these seem to mention (recent) database upgrades implicitly, starting at 5.0. (Compare how Matomo explicitly states DB upgrades). Maybe this will be enough for future versions, here's the thorough, cumbersome way that works for older versions, too:
db_version
at Codex / Wordpress Versions, or manually/programmatically:
wp-includes/version.php
of the version we are updating from, 4.9.8:
$wp_db_version = 38590;
$wp_db_version = 43764;
check upgrade_all
in wp-admin/includes/upgrade.php
, for 4.9.8→5.0 / 38590→43764:
// ...
if ( $wp_current_db_version < 37965 ) // false
upgrade_460();
if ( $wp_current_db_version < 43764 ) // true!
upgrade_500();
finally, inspecting upgrade_500
, reveals some Gutenberg-juggling and a FIXME
:)
UPDATE/EDIT, regarding the "Background": So I did do a manual update 4.9.9→5.0 and then a manual downgrade 5.0→4.9.9 (4.9.8 and .9 don't differ DB-wise). I was presented with the "DB Upgrade required" screen both ways, and proceeded. What happens upon downgrade would need more research; my guess is that you only see the screen and none of the upgrade_*
functions are executed. After up-and-downgrade everything looks normal, at least for this minimal, fresh install. So I will feel free to upgrade 4.9.8 to 5.0, knowing I can switch back should anything go wrong. YMMV, of course, especially when other plugins and themes are involved. Wouldn't do it for bigger version jumps, though :)
I upgraded 2 of my sites from version 4.9.8 to 5.0 and it did not require any database update. Also I had installed Gutenberg and the update disables the plugin since it's already integrated with the new version.
If you are concerned about the update, backup your database and site before the upgrading.