Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions docs/update_and_migration/from_4.5/update_from_4.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,32 @@
psql <database_name> < vendor/ibexa/installer/upgrade/db/postgresql/ibexa-4.5.3-to-4.5.4.sql
```

### v4.5.5

Check failure on line 89 in docs/update_and_migration/from_4.5/update_from_4.5.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/update_and_migration/from_4.5/update_from_4.5.md#L89

[Ibexa.VariablesVersion] Use global variable '[[= latest_tag_4_5 =]]' instead of 'v4.5.5'
Raw output
{"message": "[Ibexa.VariablesVersion] Use global variable '[[= latest_tag_4_5 =]]' instead of 'v4.5.5'", "location": {"path": "docs/update_and_migration/from_4.5/update_from_4.5.md", "range": {"start": {"line": 89, "column": 5}}}, "severity": "ERROR"}

No additional steps needed.

### v4.5.6

Check failure on line 93 in docs/update_and_migration/from_4.5/update_from_4.5.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/update_and_migration/from_4.5/update_from_4.5.md#L93

[Ibexa.VariablesVersion] Use global variable '[[= latest_tag_4_5 =]]' instead of 'v4.5.6'
Raw output
{"message": "[Ibexa.VariablesVersion] Use global variable '[[= latest_tag_4_5 =]]' instead of 'v4.5.6'", "location": {"path": "docs/update_and_migration/from_4.5/update_from_4.5.md", "range": {"start": {"line": 93, "column": 5}}}, "severity": "ERROR"}

#### Database update

Run the following scripts:

=== "MySQL"

``` bash
mysql -u <username> -p <password> <database_name> < vendor/ibexa/installer/upgrade/db/mysql/ibexa-4.5.5-to-4.5.6.sql
```

=== "PostgreSQL"

``` bash
psql <database_name> < vendor/ibexa/installer/upgrade/db/postgresql/ibexa-4.5.5-to-4.5.6.sql
```

### v4.5.7

Check failure on line 111 in docs/update_and_migration/from_4.5/update_from_4.5.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/update_and_migration/from_4.5/update_from_4.5.md#L111

[Ibexa.VariablesVersion] Use global variable '[[= latest_tag_4_5 =]]' instead of 'v4.5.7'
Raw output
{"message": "[Ibexa.VariablesVersion] Use global variable '[[= latest_tag_4_5 =]]' instead of 'v4.5.7'", "location": {"path": "docs/update_and_migration/from_4.5/update_from_4.5.md", "range": {"start": {"line": 111, "column": 5}}}, "severity": "ERROR"}

No additional steps needed.

## Update from v4.5.latest to v4.6

When you have the latest version of v4.5, you can update to v4.6.
Expand Down
Loading