Skip to content

Commit 121fd3e

Browse files
committed
Added release notes for 4.6
1 parent d764903 commit 121fd3e

3 files changed

Lines changed: 76 additions & 4 deletions

File tree

docs/release_notes/ibexa_dxp_v4.6.md

Lines changed: 74 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,78 @@ month_change: true
1010

1111
<div class="release-notes" markdown="1">
1212

13+
[[% set version = 'v4.6.29' %]]
14+
15+
[[= release_note_entry_begin(
16+
"Integrated help " + version,
17+
'2026-04-20',
18+
['Headless', 'Experience', 'Commerce', 'LTS Update', 'New feature']
19+
) =]]
20+
21+
### Product tour
22+
23+
The product tour is a new Integrated help feature that helps back office contributors to discover [[= product_name =]].
24+
25+
With product tours, you can create customized onboarding journeys.
26+
This accelerates user adoption, reduces training time, and helps users confidently navigate the platform.
27+
28+
For more information, see [Product tour](https://doc.ibexa.co/en/4.6/administration/back_office/product_tour/).
29+
30+
[[= release_note_entry_end() =]]
31+
32+
[[= release_note_entry_begin(
33+
"Ibexa DXP " + version,
34+
'2026-04-20',
35+
['Headless', 'Experience', 'Commerce', 'New feature']
36+
) =]]
37+
38+
### Developer experience
39+
40+
#### Taxonomy search
41+
42+
One [taxonomy search](https://doc.ibexa.co/en/4.6/content_management/taxonomy/taxonomy_api/search) criterion is added:
43+
44+
- [`TaxonomyNoEntries`](https://doc.ibexa.co/en/4.6/search/criteria_reference/taxonomy_no_entries/) to find content items to which no taxonomy entries have been assigned.
45+
46+
#### Custom parameters in `ibexa_render()`
47+
48+
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())`.
49+
50+
This allows you to provide additional context or data to your view templates:
51+
52+
``` html+twig
53+
{{ ibexa_render(content, {
54+
'viewType': 'line',
55+
'method': 'inline',
56+
'params': {
57+
'custom_param': 'custom_value',
58+
'another_param': 'another_value'
59+
}
60+
}) }}
61+
```
62+
63+
The parameters are available in your template as regular variables.
64+
65+
For more information, see [`ibexa_render()` Twig function](https://doc.ibexa.co/en/4.6/templating/twig_function_reference/content_twig_functions/#ibexa_render).
66+
67+
#### PHP API
68+
69+
The following additions were made to the PHP API:
70+
71+
- [`Ibexa\Contracts\Core\FieldType\ReferenceAwareExternalStorage`](https://doc.ibexa.co/en/4.6/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-ReferenceAwareExternalStorage.html)
72+
- [`Ibexa\Contracts\Core\Options\Context`](https://doc.ibexa.co/en/4.6/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Options-Context.html)
73+
- [`Ibexa\Contracts\CorporateAccount\Order`](https://doc.ibexa.co/en/4.6/api/php_api/php_api_reference/namespaces/ibexa-contracts-corporateaccount-order.html)
74+
- [`Ibexa\Contracts\CorporateAccount\Order\OrderStatusLabelProviderInterface`](https://doc.ibexa.co/en/4.6/api/php_api/php_api_reference/classes/Ibexa-Contracts-CorporateAccount-Order-OrderStatusLabelProviderInterface.html)
75+
- [`Ibexa\Contracts\Taxonomy\Search\Query\Criterion\TaxonomyNoEntries`](https://doc.ibexa.co/en/4.6/api/php_api/php_api_reference/classes/Ibexa-Contracts-Taxonomy-Search-Query-Criterion-TaxonomyNoEntries.html)
76+
<br>For more information, see [search criteria reference entry](https://doc.ibexa.co/en/4.6/search/criteria_reference/taxonomy_no_entries/).
77+
- [`Ibexa\Contracts\IntegratedHelp` namespace](https://doc.ibexa.co/en/4.6/api/php_api/php_api_reference/namespaces/ibexa-contracts-integratedhelp.html) from the [Integrated help LTS-Update](https://doc.ibexa.co/en/4.6/administration/back_office/integrated_help/)
78+
79+
### Full changelog
80+
81+
[[% include 'snippets/release_46.md' %]]
82+
83+
[[= release_note_entry_end() =]]
84+
1385
[[% set version = 'v4.6.28' %]]
1486

1587
[[= release_note_entry_begin(
@@ -394,7 +466,7 @@ The Product Picker tool that, for example, lets you [select products eligible fo
394466

395467
[[= release_note_entry_begin("Symbol attribute " + version, '2025-08-05', ['Headless', 'Experience', 'Commerce', 'LTS Update', 'New feature', 'First release']) =]]
396468

397-
The Symbol attribute allows you to store standardized identifiers of your products in the [Product Information Management](https://doc.ibexa.co/en/4.6/pim/pim_guide/) system.
469+
The Symbol attribute allows you to store standardized identifiers of your products in the [product catalog](https://doc.ibexa.co/en/4.6/pim/pim_guide/).
398470

399471
For more information, see [Symbol attribute type](https://doc.ibexa.co/en/4.6/pim/attributes/symbol_attribute_type/).
400472

@@ -687,7 +759,7 @@ The PHP API has been enhanced with the following new classes:
687759

688760
[[= release_note_entry_begin("Date and time attribute " + version, '2025-03-04', ['Headless', 'Experience', 'Commerce', 'LTS Update', 'New feature', 'First release']) =]]
689761

690-
The Date and time attributes allow you to represent date and time values as part of the product specification in the [Product Information Management](https://doc.ibexa.co/en/4.6/pim/pim_guide/) system.
762+
The Date and time attributes allow you to represent date and time values as part of the product specification in the [product catalog](https://doc.ibexa.co/en/4.6/pim/pim_guide/).
691763

692764
For more information, see [Date and time attributes](https://doc.ibexa.co/en/4.6/pim/attributes/date_and_time/).
693765

docs/snippets/release_46.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ To learn more about all the included changes, see the full release change logs:
99
- [[[= product_name_com =]] [[= version =]]](https://github.com/ibexa/commerce/releases/tag/[[= version =]])
1010

1111
[[% if version != 'v4.6.0' %]]
12-
To update your application, see the [update instructions](../update_and_migration/from_4.6/update_from_4.6.md#[[= version_to_anchor(version) =]]).
12+
To update your application, see the [update instructions](https://doc.ibexa.co/en/4.6/update_and_migration/from_4.6/update_from_4.6/#[[= version_to_anchor(version) =]]).
1313
[[% endif %]]

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ extra:
998998
latest_tag_4_3: '4.3.5'
999999
latest_tag_4_4: '4.4.4'
10001000
latest_tag_4_5: '4.5.7'
1001-
latest_tag_4_6: '4.6.28'
1001+
latest_tag_4_6: '4.6.29'
10021002
latest_tag_5_0: '5.0.6'
10031003

10041004
symfony_doc: 'https://symfony.com/doc/5.x'

0 commit comments

Comments
 (0)