Skip to content

Commit 8d89070

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

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,9 @@ 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', '11.2']
1414
module: ['entity_to_text']
1515
include:
16-
- drupal_version: '11.2'
17-
module: 'entity_to_text'
18-
experimental: true
1916
- drupal_version: '11.3'
2017
module: 'entity_to_text'
2118
experimental: true
@@ -42,12 +39,9 @@ jobs:
4239
runs-on: ubuntu-latest
4340
strategy:
4441
matrix:
45-
drupal_version: ['10.4', '10.5', '11.0', '11.1']
42+
drupal_version: ['11.0', '11.1', '11.2']
4643
module: ['entity_to_text']
4744
include:
48-
- drupal_version: '11.2'
49-
module: 'entity_to_text'
50-
experimental: true
5145
- drupal_version: '11.3'
5246
module: 'entity_to_text'
5347
experimental: true
@@ -74,7 +68,7 @@ jobs:
7468
runs-on: ubuntu-latest
7569
strategy:
7670
matrix:
77-
drupal_version: ['10.5']
71+
drupal_version: ['11.2']
7872
module: ['entity_to_text']
7973

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