doc: upgrading notes for v1.7.0

resolves #1939
This commit is contained in:
Thomas Gelf 2019-09-11 22:05:50 +02:00
parent 04f0dc51f1
commit 300e716d52
2 changed files with 21 additions and 3 deletions

View File

@ -19,9 +19,9 @@ Requirements
* Icinga Web 2 (>= 2.6.0). All versions since 2.2 should also work fine, but
might show smaller UI bugs and are not actively tested
* The following Icinga modules must be installed and enabled:
* [ipl](https://github.com/Icinga/icingaweb2-module-ipl)
* [incubator](https://github.com/Icinga/icingaweb2-module-incubator)
* [reactbundle](https://github.com/Icinga/icingaweb2-module-reactbundle)
* [ipl](https://github.com/Icinga/icingaweb2-module-ipl) (>=0.3.0)
* [incubator](https://github.com/Icinga/icingaweb2-module-incubator) (>=0.3.0)
* [reactbundle](https://github.com/Icinga/icingaweb2-module-reactbundle) (>=0.6.0)
* A database, MySQL (>= 5.1) or PostgreSQL (>= 9.1). MariaDB and other
MySQL forks are also fine. Mentioned versions are the required minimum,
for MySQL we suggest using at least 5.5.3, for PostgreSQL 9.4.

View File

@ -16,6 +16,7 @@ you will be told so in your frontend.
Please read more about:
* [Database Backup](#backup-first)
* [Upgrading to 1.7.x](#upgrade-to-1.7.x)
* [Upgrading to 1.6.x](#upgrade-to-1.6.x)
* [Upgrading to 1.5.x](#upgrade-to-1.5.x)
* [Upgrading to 1.4.x](#upgrade-to-1.4.x)
@ -38,6 +39,23 @@ use the tools provided by your database backend, like `mysqldump` or `pg_dump`.
Restoring from a backup is trivial, and Director will always be able to apply
pending database migrations to an imported old database snapshot.
<a name="upgrade-to-1.7.x"></a>Upgrading to 1.7.x
-------------------------------------------------
Since v1.7.0 Icinga Director requires at least PHP 5.6. Also, this version
introduces new dependencies. Please make sure that the following Icinga Web 2
modules have been installed and enabled:
* [ipl](https://github.com/Icinga/icingaweb2-module-ipl) (>=0.3.0)
* [incubator](https://github.com/Icinga/icingaweb2-module-incubator) (>=0.3.0)
* [reactbundle](https://github.com/Icinga/icingaweb2-module-reactbundle) (>=0.6.0)
Apart from this, in case you are running 1.6.x or any GIT master since then,
all you need is to replace the Director module folder with the new one. Or to
run `git checkout v1.7.x` in case you installed Director from GIT.
As always, you'll then be prompted to apply pending Database Migrations.
<a name="upgrade-to-1.6.x"></a>Upgrading to 1.6.x
-------------------------------------------------