Skip to content

Commit 9fa9f20

Browse files
authored
Merge pull request #12 from antistatique/12x/drop-drupal-9
drop support of Drupal 9.x
2 parents ecff0d7 + 801d080 commit 9fa9f20

File tree

7 files changed

+11
-16
lines changed

7 files changed

+11
-16
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
drupal_version: ['9.5', '10.0', '10.1', '10.2', '10.3', '10.4', '11.0', '11.1']
15+
drupal_version: ['10.0', '10.1', '10.2', '10.3', '10.4', '11.0', '11.1']
1616
module: [ 'vercel_deploy' ]
1717
experimental: [ false ]
1818
include:

.gitlab-ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ variables:
3232
SKIP_ESLINT: '1'
3333
# Opt in to testing current minor against max supported PHP version.
3434
OPT_IN_TEST_MAX_PHP: '1'
35-
# Opt in to testing previous & next minor (Drupal 10.0.x and 10.2.x).
35+
# Opt in to testing previous minor (Drupal 11.0.13) & next minor (Drupal 11.2-dev).
3636
OPT_IN_TEST_PREVIOUS_MINOR: '1'
3737
OPT_IN_TEST_NEXT_MINOR: '1'
38-
# Opt in to testing $CORE_PREVIOUS_MAJOR (currently Drupal 9.5).
38+
# Opt in to testing $CORE_PREVIOUS_MAJOR (currently Drupal 10.4.6).
3939
OPT_IN_TEST_PREVIOUS_MAJOR: '1'
40-
# The 4.x branch of the CDN module requires PHP >=8.1, rather than core's >=7.4.
41-
CORE_PREVIOUS_PHP_MIN: '8.1'
42-
# Opt in to testing $CORE_MAJOR_DEVELOPMENT (currently Drupal 11).
40+
# Opt in to testing $CORE_MAJOR_DEVELOPMENT (currently Drupal 12).
4341
OPT_IN_TEST_NEXT_MAJOR: '1'
4442

4543
# This module wants to strictly comply with Drupal's coding standards.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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+
### Removed
9+
- drop support of Drupal 9.x
810

911
## [1.2.0] - 2025-02-26
1012
### Added

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ First of all, you will need to have the following tools installed
2525
globally on your environment:
2626

2727
* drush
28-
* Latest dev release of Drupal 9.x/10.x.
28+
* Latest dev release of Drupal 10.x/11.x.
2929
* docker
3030
* docker compose
3131

@@ -34,7 +34,7 @@ globally on your environment:
3434
Once run, you will be able to access to your fresh installed Drupal on
3535
`http://localhost:8888/`.
3636

37-
docker compose build --pull --build-arg BASE_IMAGE_TAG=10.2 drupal
37+
docker compose build --pull --build-arg BASE_IMAGE_TAG=10.4 drupal
3838
# (get a coffee, this will take some time...)
3939
docker compose up -d drupal
4040
docker compose exec -u www-data drupal drush site-install standard \

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE_TAG=10.2
1+
ARG BASE_IMAGE_TAG=10.4
22
FROM wengerk/drupal-for-contrib:${BASE_IMAGE_TAG}
33

44
# Disable deprecation notice.

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,7 @@ simply fires the Vercel Deploy process for the configured URLs.
2626

2727
## Versions
2828

29-
This module works on both Drupal 8, Drupal 9 & Drupal 10 !
30-
31-
## Dependencies
32-
33-
The Drupal 8, Drupal 9 & Drupal 10 version of this module requires nothing !
34-
Feel free to use it.
29+
This module works on Drupal 8, Drupal 9, Drupal 10 & Drupal 11 !
3530

3631
## Getting Started
3732

vercel_deploy.info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Vercel Deploy
22
description: Allow Vercel Vercel deployments integration with the corresponding permission set.
33
package: Utility
44
type: module
5-
core_version_requirement: ^9.5 || ^10 || ^11
5+
core_version_requirement: ^10 || ^11
66

77
dependencies:
88
- drupal:toolbar

0 commit comments

Comments
 (0)