diff --git a/CHANGELOG.md b/CHANGELOG.md index c7404d05..9b7563b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to Roadiz will be documented in this file. +## [2.3.31](https://github.com/roadiz/core-bundle-dev-app/compare/v2.3.30...v2.3.31) - 2024-10-26 + +### Bug Fixes + +- **(DtsGenerator)** Fixed `.d.ts` file header generation with latest @roadiz/types package - ([49aca37](https://github.com/roadiz/core-bundle-dev-app/commit/49aca375f0e51ec81bfa4a044c8924740067218a)) + ## [2.3.30](https://github.com/roadiz/core-bundle-dev-app/compare/v2.3.29...v2.3.30) - 2024-10-25 ### Bug Fixes diff --git a/lib/DtsGenerator/src/Generators/DeclarationGenerator.php b/lib/DtsGenerator/src/Generators/DeclarationGenerator.php index 3dfc9fc0..7e625772 100644 --- a/lib/DtsGenerator/src/Generators/DeclarationGenerator.php +++ b/lib/DtsGenerator/src/Generators/DeclarationGenerator.php @@ -63,16 +63,16 @@ private function getHeader(): string /* * This is an automated Roadiz interface declaration file. * RoadizNodesSources, RoadizDocument and other mentioned types are part of - * roadiz/abstract-api-client package which must be installed in your project. + * @roadiz/types package which must be installed in your project. * - * @see https://github.com/roadiz/abstract-api-client + * @see https://github.com/roadiz/types * * Roadiz CMS node-types interfaces * * @see https://docs.roadiz.io/en/latest/developer/nodes-system/intro.html#what-is-a-node-type */ -import { RoadizNodesSources, RoadizDocument } from '@roadiz/abstract-api-client/dist/types/roadiz' +import type { RoadizNodesSources, RoadizDocument } from '@roadiz/types' EOT; } } diff --git a/lib/RoadizCoreBundle/config/services.yaml b/lib/RoadizCoreBundle/config/services.yaml index 09fb99bf..1ef2b07b 100644 --- a/lib/RoadizCoreBundle/config/services.yaml +++ b/lib/RoadizCoreBundle/config/services.yaml @@ -1,6 +1,6 @@ --- parameters: - roadiz_core.cms_version: '2.3.30' + roadiz_core.cms_version: '2.3.31' roadiz_core.cms_version_prefix: 'main' env(APP_NAMESPACE): "roadiz" env(APP_VERSION): "0.1.0"