Skip to content

Commit 8e5b825

Browse files
committed
drop drupal 10.x and add early support drupal 12
1 parent e103138 commit 8e5b825

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
drupal_version: ['10.4', '10.5', '11.0', '11.1']
13+
drupal_version: ['11.0', '11.1']
1414
module: ['entity_to_text']
1515
include:
1616
- drupal_version: '11.2'
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
strategy:
4444
matrix:
45-
drupal_version: ['10.4', '10.5', '11.0', '11.1']
45+
drupal_version: ['11.0', '11.1']
4646
module: ['entity_to_text']
4747
include:
4848
- drupal_version: '11.2'
@@ -74,7 +74,7 @@ jobs:
7474
runs-on: ubuntu-latest
7575
strategy:
7676
matrix:
77-
drupal_version: ['10.5']
77+
drupal_version: ['11.2']
7878
module: ['entity_to_text']
7979

8080
steps:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Added
9+
- add official support of drupal 11.2
10+
- add early support of drupal 12.x
11+
12+
### Removed
13+
- drop support of drupal below 11.x
814

915
## [1.2.0] - 2025-08-11
1016
### Added

entity_to_text.info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ name: Entity to Text
22
type: module
33
description: 'Provides a number of utility and helper APIs for developers to transform content into plain text.'
44
package: Search
5-
core_version_requirement: ^10.4 || ^11
5+
core_version_requirement: ^10.4 || ^11 || ^12

modules/entity_to_text_paragraphs/entity_to_text_paragraphs.info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: Entity to Text - Paragraphs
22
type: module
33
description: 'Provides the utility APIs to transforms Paragraphs to Text.'
44
package: Search
5-
core_version_requirement: ^10.4 || ^11
5+
core_version_requirement: ^10.4 || ^11 || ^12
66
dependencies:
77
- entity_to_text:entity_to_text

modules/entity_to_text_tika/entity_to_text_tika.info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: Entity to Text - Tika
22
type: module
33
description: 'Provides the utility APIs to transforms Files to Text.'
44
package: Search
5-
core_version_requirement: ^10.4 || ^11
5+
core_version_requirement: ^10.4 || ^11 || ^12
66
dependencies:
77
- entity_to_text:entity_to_text

0 commit comments

Comments
 (0)