diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81de148..6bb8024 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - drupal_version: ['10.4', '10.5', '11.0', '11.1'] + drupal_version: ['11.0', '11.1'] module: ['entity_to_text'] include: - drupal_version: '11.2' @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - drupal_version: ['10.4', '10.5', '11.0', '11.1'] + drupal_version: ['11.0', '11.1'] module: ['entity_to_text'] include: - drupal_version: '11.2' @@ -74,7 +74,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - drupal_version: ['10.5'] + drupal_version: ['11.2'] module: ['entity_to_text'] steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 68954f8..8859cb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- add official support of drupal 11.2 +- add early support of drupal 12.x + +### Removed +- drop support of drupal below 11.x ## [1.2.0] - 2025-08-11 ### Added diff --git a/entity_to_text.info.yml b/entity_to_text.info.yml index 1eb8465..4b26df9 100644 --- a/entity_to_text.info.yml +++ b/entity_to_text.info.yml @@ -2,4 +2,4 @@ name: Entity to Text type: module description: 'Provides a number of utility and helper APIs for developers to transform content into plain text.' package: Search -core_version_requirement: ^10.4 || ^11 +core_version_requirement: ^10.4 || ^11 || ^12 diff --git a/modules/entity_to_text_paragraphs/entity_to_text_paragraphs.info.yml b/modules/entity_to_text_paragraphs/entity_to_text_paragraphs.info.yml index c954544..9afe5d9 100644 --- a/modules/entity_to_text_paragraphs/entity_to_text_paragraphs.info.yml +++ b/modules/entity_to_text_paragraphs/entity_to_text_paragraphs.info.yml @@ -2,6 +2,6 @@ name: Entity to Text - Paragraphs type: module description: 'Provides the utility APIs to transforms Paragraphs to Text.' package: Search -core_version_requirement: ^10.4 || ^11 +core_version_requirement: ^10.4 || ^11 || ^12 dependencies: - entity_to_text:entity_to_text diff --git a/modules/entity_to_text_tika/entity_to_text_tika.info.yml b/modules/entity_to_text_tika/entity_to_text_tika.info.yml index 3d7e1e3..cd125f8 100644 --- a/modules/entity_to_text_tika/entity_to_text_tika.info.yml +++ b/modules/entity_to_text_tika/entity_to_text_tika.info.yml @@ -2,6 +2,6 @@ name: Entity to Text - Tika type: module description: 'Provides the utility APIs to transforms Files to Text.' package: Search -core_version_requirement: ^10.4 || ^11 +core_version_requirement: ^10.4 || ^11 || ^12 dependencies: - entity_to_text:entity_to_text