Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

End of support for Drupal 9.4 #946

Merged
merged 1 commit into from
Oct 2, 2023
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
1 change: 0 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
- "8.1"
drupal-core:
# Should update the following as the minimum supported version from Drupal.org
- "9.4.x"
- "9.5.x"

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Please note that the Monetization APIs are not currently supported on Apigee hyb

## Requirements

* The Apigee Edge module requires **Drupal 9.4.x** or higher and PHP 8.0 or higher, though Drupal 9.x is recommended due to [Drupal 8's EOL timeline](https://www.drupal.org/psa-2021-2021-06-29).
* The Apigee Edge module requires **Drupal 9.5.x** or higher and PHP 8.0 or higher, though Drupal 10.x is recommended due to Drupal 9's EOL timeline because of its Symfony 4 dependency. Reference: [Symfony 4.4 release checker](https://symfony.com/releases/4.4).
* Drupal's minimum requirement is phpdocumentor/reflection-docblock:2.0.4 but at least 3.0 is required by this module. If you get the error "Your requirements could not be resolved to an installable set of packages" it may be because you are running reflection-docblock version 2. You can update `phpdocumentor/reflection-docblock` with the following command: `composer update phpdocumentor/reflection-docblock --with-dependencies`.
* **Check [composer.json](https://github.com/apigee/apigee-edge-drupal/blob/8.x-1.x/composer.json) for any required patches.** Patches prefixed with "(For testing)" are only required for running tests. Those are not necessary for using this module. Patches can be applied with the [cweagans/composer-patches](https://packagist.org/packages/cweagans/composer-patches) plugin automatically or manually. See [Applying Patches](#applying-patches) section below.
* (For developers) The locked commit from `behat/mink` library is required otherwise tests may fail. This caused by a Drupal core [bug](https://www.drupal.org/project/drupal/issues/2956279). See the related pull request for behat/mink [here](https://github.com/minkphp/Mink/pull/760).
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": "~8.0.0 || ~8.1.0",
"ext-json": "*",
"apigee/apigee-client-php": "^2.1.1",
"drupal/core": "^9.4",
"drupal/core": "^9.5",
"drupal/entity": "^1.0",
"drupal/key": "^1.8",
"php-http/guzzle6-adapter": "^2.0"
Expand All @@ -17,7 +17,7 @@
"behat/mink-extension": "^2.0",
"bex/behat-screenshot": "^1.2",
"cweagans/composer-patches": "^1.6",
"drupal/core-dev": "^9.4",
"drupal/core-dev": "^9.5",
"drush/drush": "^9.0 || ^10.0",
"mglaman/drupal-check": "1.3",
"phpmd/phpmd": "^2.8.2",
Expand Down