Skip to content

Commit ead6c3e

Browse files
committed
Add upgrade doc
1 parent 0062669 commit ead6c3e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

UPGRADE-4.0.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# UPGRADE FROM 3.x to 4.0
2+
3+
* Support for eZ Platform 3.x has been dropped (and with it support for PHP < 7.4 and Symfony < 5.4)
4+
5+
* Renamed the prefix for simplified role check from `ez:` to `ibexa:`
6+
7+
**Before**
8+
9+
```
10+
{% if is_granted('ez:user:register') %}
11+
...
12+
{% endif %}
13+
```
14+
15+
**After**
16+
17+
```
18+
{% if is_granted('ibexa:user:register') %}
19+
...
20+
{% endif %}
21+
```

0 commit comments

Comments
 (0)