Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
drupal_version: ['10.5']
drupal_version: ['11.2']
module: ['entity_to_text']

steps:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion entity_to_text.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion modules/entity_to_text_tika/entity_to_text_tika.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading