Skip to content

Commit

Permalink
Add upgrade doc
Browse files Browse the repository at this point in the history
  • Loading branch information
emodric committed Mar 18, 2022
1 parent 0062669 commit ead6c3e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions UPGRADE-4.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# UPGRADE FROM 3.x to 4.0

* Support for eZ Platform 3.x has been dropped (and with it support for PHP < 7.4 and Symfony < 5.4)

* Renamed the prefix for simplified role check from `ez:` to `ibexa:`

**Before**

```
{% if is_granted('ez:user:register') %}
...
{% endif %}
```

**After**

```
{% if is_granted('ibexa:user:register') %}
...
{% endif %}
```

0 comments on commit ead6c3e

Please sign in to comment.