Skip to content

Commit 38ff639

Browse files
authored
Merge branch 'master' into ddev-ibexa-cloud
2 parents dbdc6c2 + 518769c commit 38ff639

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ jobs:
4949
run: |
5050
mkdocs build --strict
5151
52+
- name: Verify that there are no variables in generated HTML
53+
run: |
54+
# Check for raw MkDocs variables in the generated HTML
55+
if grep -Erl "\[\[=.*=\]\]" site > /dev/null; then
56+
echo "Raw variables detected in the following files:"
57+
grep -Erl "\[\[=.*=\]\]" site
58+
exit 1
59+
fi
60+
5261
vale-check:
5362
runs-on: ubuntu-latest
5463
if: github.event_name == 'pull_request'

docs/getting_started/requirements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Recommendation for production setups is to use Varnish/Fastly, Redis/Memcached,
3737
|Debian 11 "Bullseye"|11.0-11.7+|
3838
|Ubuntu "Focal Fossa" | 20.04 |
3939
|Ubuntu "Jammy Jellyfish"| 22.04 |
40+
|Ubuntu "Noble Numbat"| 24.04 |
4041
|RHEL / CentOS | 8.1-8.5+ |
4142

4243
If you see a "+" next to the product version, it indicates a recommended version or higher within the same major release.

docs/resources/new_in_doc.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,27 @@ description: Overview of major recent additions to Ibexa DXP documentation.
66

77
This page contains recent highlights and notable changes in [[= product_name =]] documentation.
88

9+
## December 2024
10+
11+
### Infrastructure and maintenance
12+
13+
- Added [v4.6.14 to v4.6.15 update instructions](https://doc.ibexa.co/en/master/update_and_migration/from_4.6/update_from_4.6/#v4615).
14+
15+
## AI Actions
16+
17+
- Added [extending AI Actions](extend_ai_actions.md) documentation.
18+
19+
### Security
20+
21+
- Expanded the [Security checklist](security_checklist.md) with advice on TLS, HSTS, DNSSEC, CAA, and domain update protection.
22+
23+
### PHP API
24+
25+
- Added the following interfaces to the public PHP API:
26+
- [`Ibexa\Contracts\ProductCatalog\Values\Price\PriceEnvelopeInterface`](https://doc.ibexa.co/en/latest/api/php_api/php_api_reference/classes/Ibexa-Contracts-ProductCatalog-Values-Price-PriceEnvelopeInterface.html)
27+
- [`Ibexa\Contracts\ProductCatalog\Values\Price\PriceStampInterface`](https://doc.ibexa.co/en/latest/api/php_api/php_api_reference/classes/Ibexa-Contracts-ProductCatalog-Values-Price-PriceStampInterface.html)
28+
- [`Ibexa\Contracts\ProductCatalog\Values\StampInterface`](https://doc.ibexa.co/en/latest/api/php_api/php_api_reference/classes/Ibexa-Contracts-ProductCatalog-Values-StampInterface.html)
29+
930
## November 2024
1031

1132
### Infrastructure and maintenance

0 commit comments

Comments
 (0)