You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can now pass custom parameters to templates when using the `ibexa_render()` Twig function with the new `params` option, similar to how you can with `render(controller())`.Collapse annotationCheck notice on line R18[vale] docs/release_notes/ibexa_dxp_v5.0.md#L18Check notice: [vale] docs/release_notes/ibexa_dxp_v5.0.md#L18[Ibexa.ByUsing] Prefer 'by using' or 'with' to plain 'using'.Build & test documentation / valeView details
26
+
27
+
This allows you to provide additional context or data to your view templates:
28
+
29
+
```html+twig
30
+
{{ ibexa_render(content, {
31
+
'viewType': 'line',
32
+
'method': 'inline',
33
+
'params': {
34
+
'custom_param': 'custom_value',
35
+
'another_param': 'another_value'
36
+
}
37
+
}) }}
38
+
```
39
+
40
+
The parameters are available in your template as regular variables.
41
+
42
+
For more information, see [`ibexa_render()` Twig function](https://doc.ibexa.co/en/4.6/templating/twig_function_reference/content_twig_functions/#ibexa_render).
43
+
44
+
45
+
### Gaussian blur optimization in Image Editor
46
+
47
+
The [Image Editor]([[= user_doc =]]/image_management/edit_images/) now supports configurable gaussian blur strength for image optimization.
48
+
You can adjust the blur level to balance between file size reduction and image sharpness.
49
+
For more information, see [Configure image editor](https://doc.ibexa.co/en/4.6/content_management/images/configure_image_editor/#gaussian-blur-strength).
This release introduces a new AI connector that allows you to integrate [AI Actions](https://doc.ibexa.co/en/5.0/ai_actions/ai_actions/) with [Google Gemini](https://gemini.google/overview/#what-gemini-is).
22
+
23
+
For more information, see how to [install and configure the Google Gemini connector](https://doc.ibexa.co/en/5.0/ai_actions/configure_ai_actions/#install-google-gemini-connector).
You can now pass custom parameters to templates when using the `ibexa_render()` Twig function with the new `params` option, similar to how you can with `render(controller())`.Collapse annotationCheck notice on line R18[vale] docs/release_notes/ibexa_dxp_v5.0.md#L18Check notice: [vale] docs/release_notes/ibexa_dxp_v5.0.md#L18[Ibexa.ByUsing] Prefer 'by using' or 'with' to plain 'using'.Build & test documentation / valeView details
38
+
39
+
This allows you to provide additional context or data to your view templates:
40
+
41
+
```html+twig
42
+
{{ ibexa_render(content, {
43
+
'viewType': 'line',
44
+
'method': 'inline',
45
+
'params': {
46
+
'custom_param': 'custom_value',
47
+
'another_param': 'another_value'
48
+
}
49
+
}) }}
50
+
```
51
+
52
+
The parameters are available in your template as regular variables.
53
+
54
+
For more information, see [`ibexa_render()` Twig function](https://doc.ibexa.co/en/5.0/templating/twig_function_reference/content_twig_functions/#ibexa_render).
55
+
56
+
#### Try-catch support in data migrations
57
+
58
+
Data migrations now support try-catch error handling, allowing you to wrap migration steps with exception handling logic.
59
+
You can use it for migrations that might fail under certain conditions but should not break the entire migration process.
60
+
61
+
For example, you can create languages without checking if they already exist:
The `try_catch` step allows you to specify which exceptions to catch and whether to continue executing remaining steps after an exception occurs.
68
+
69
+
For more information, see [Error handling with try-catch](https://doc.ibexa.co/en/5.0/content_management/data_migration/importing_data/#error-handling-with-try-catch).
70
+
71
+
### Gaussian blur optimization in Image Editor
72
+
73
+
The [Image Editor]([[= user_doc =]]/image_management/edit_images/) now supports configurable gaussian blur strength for image optimization.
74
+
You can adjust the blur level to balance between file size reduction and image sharpness.
75
+
For more information, see [Configure image editor](https://doc.ibexa.co/en/5.0/content_management/images/configure_image_editor/#gaussian-blur-strength).
0 commit comments