Skip to content

Commit

Permalink
Merge branch 'master' into ddev-ibexa-cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
adriendupuis authored Jan 21, 2025
2 parents dbdc6c2 + 518769c commit 38ff639
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ jobs:
run: |
mkdocs build --strict
- name: Verify that there are no variables in generated HTML
run: |
# Check for raw MkDocs variables in the generated HTML
if grep -Erl "\[\[=.*=\]\]" site > /dev/null; then
echo "Raw variables detected in the following files:"
grep -Erl "\[\[=.*=\]\]" site
exit 1
fi
vale-check:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
Expand Down
1 change: 1 addition & 0 deletions docs/getting_started/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Recommendation for production setups is to use Varnish/Fastly, Redis/Memcached,
|Debian 11 "Bullseye"|11.0-11.7+|
|Ubuntu "Focal Fossa" | 20.04 |
|Ubuntu "Jammy Jellyfish"| 22.04 |
|Ubuntu "Noble Numbat"| 24.04 |
|RHEL / CentOS | 8.1-8.5+ |

If you see a "+" next to the product version, it indicates a recommended version or higher within the same major release.
Expand Down
21 changes: 21 additions & 0 deletions docs/resources/new_in_doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ description: Overview of major recent additions to Ibexa DXP documentation.

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

## December 2024

### Infrastructure and maintenance

- 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).

## AI Actions

- Added [extending AI Actions](extend_ai_actions.md) documentation.

### Security

- Expanded the [Security checklist](security_checklist.md) with advice on TLS, HSTS, DNSSEC, CAA, and domain update protection.

### PHP API

- Added the following interfaces to the public PHP API:
- [`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)
- [`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)
- [`Ibexa\Contracts\ProductCatalog\Values\StampInterface`](https://doc.ibexa.co/en/latest/api/php_api/php_api_reference/classes/Ibexa-Contracts-ProductCatalog-Values-StampInterface.html)

## November 2024

### Infrastructure and maintenance
Expand Down

0 comments on commit 38ff639

Please sign in to comment.