Skip to content

Commit ca4b602

Browse files
committed
update CI and add Drupal 11.3 support
- Update CI runner PHP version from 8.3 to 8.4. - Add official support for Drupal 11.3. - Update CHANGELOG.md with new changes.
1 parent 558b1c1 commit ca4b602

4 files changed

Lines changed: 20 additions & 22 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
drupal_version: ['11.0', '11.1']
13+
drupal_version: ['11.0', '11.1', '11.2', '11.3']
1414
module: ['entity_to_text']
15-
include:
16-
- drupal_version: '11.2'
17-
module: 'entity_to_text'
18-
experimental: true
19-
- drupal_version: '11.3'
20-
module: 'entity_to_text'
21-
experimental: true
15+
# include:
16+
# - drupal_version: '11.4'
17+
# module: 'entity_to_text'
18+
# experimental: true
2219

2320
steps:
2421
- uses: actions/checkout@v6
@@ -42,15 +39,12 @@ jobs:
4239
runs-on: ubuntu-latest
4340
strategy:
4441
matrix:
45-
drupal_version: ['11.0', '11.1']
42+
drupal_version: ['11.0', '11.1', '11.2', '11.3']
4643
module: ['entity_to_text']
47-
include:
48-
- drupal_version: '11.2'
49-
module: 'entity_to_text'
50-
experimental: true
51-
- drupal_version: '11.3'
52-
module: 'entity_to_text'
53-
experimental: true
44+
# include:
45+
# - drupal_version: '11.4'
46+
# module: 'entity_to_text'
47+
# experimental: true
5448

5549
steps:
5650
- uses: actions/checkout@v6
@@ -74,7 +68,7 @@ jobs:
7468
runs-on: ubuntu-latest
7569
strategy:
7670
matrix:
77-
drupal_version: ['11.2']
71+
drupal_version: ['11.3']
7872
module: ['entity_to_text']
7973

8074
steps:

.github/workflows/styles.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Setup PHP
1010
uses: shivammathur/setup-php@v2
1111
with:
12-
php-version: '8.3'
12+
php-version: '8.4'
1313
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv
1414
tools: cs2pr, composer:v2
1515
- uses: actions/checkout@v6
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup PHP
2424
uses: shivammathur/setup-php@v2
2525
with:
26-
php-version: '8.3'
26+
php-version: '8.4'
2727
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv
2828
tools: cs2pr, composer:v2, phpmd
2929
- uses: actions/checkout@v6
@@ -37,7 +37,7 @@ jobs:
3737
- name: Setup PHP
3838
uses: shivammathur/setup-php@v2
3939
with:
40-
php-version: '8.3'
40+
php-version: '8.4'
4141
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv
4242
tools: cs2pr, composer:v2, phpcpd
4343
- uses: actions/checkout@v6

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Removed
99
- disable running on Drupal 12 until Paragraph (root dependencies) is compliant
1010

11+
### Added
12+
- update ci PHP runner php 8.3 -> 8.4
13+
- add official support of drupal 11.3
14+
1115
## [1.3.0] - 2025-11-07
1216
### Added
1317
- add official support of drupal 11.2

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ RUN COMPOSER_MEMORY_LIMIT=-1 composer require "vaites/php-apache-tika:^1.2"
1616

1717
# Install drupal/paragraphs as required by entity_to_text_paragraphs
1818
RUN COMPOSER_MEMORY_LIMIT=-1 composer config minimum-stability dev
19-
RUN COMPOSER_MEMORY_LIMIT=-1 composer require "drupal/paragraphs:^1.14"
19+
RUN COMPOSER_MEMORY_LIMIT=-1 composer require "drupal/paragraphs:dev-1.x"
2020
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/entity_browser"
2121
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/feeds"
22-
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/pathauto"
22+
RUN COMPOSER_MEMORY_LIMIT=-1 composer require --dev "drupal/pathauto:dev-1.x"
2323

2424
# Register the Drupal and DrupalPractice Standard with PHPCS.
2525
#RUN ./vendor/bin/phpcs --config-set installed_paths \

0 commit comments

Comments
 (0)