Skip to content

Commit e62e2da

Browse files
Merge pull request #324 from arlina-espinoza/322-hybrid-beta
[#322] Moving Hybrid to beta.
2 parents 61f03e5 + 817dfbe commit e62e2da

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Apigee Edge Drupal module
22

3-
The Apigee Edge module enables you to integrate Drupal 8 with Apigee Edge:
3+
The Apigee Edge module enables you to integrate Drupal 8 with Apigee Edge:
44

55
* Users that register or are added to the Drupal site will be added as developers in Apigee Edge.
66
* Click on "Apps" in user menu to get keys for the APIs exposed in Apigee Edge.
@@ -10,17 +10,17 @@ This module includes the following submodules:
1010
* __Debug:__ enables administrators to configure and manage Apigee debug logs.
1111
* __Teams (Experimental):__ enables developers to be organized into teams.
1212

13-
For more details read the [Apigee Edge module documentation](https://www.drupal.org/docs/8/modules/apigee-edge).
13+
For more details read the [Apigee Edge module documentation](https://www.drupal.org/docs/8/modules/apigee-edge).
1414

15-
Following the same concept of [Drupal 8 Experimental modules](https://www.drupal.org/core/experimental),
16-
some submodules are marked as "Experimental". They are provided for evaluation and testing purposes but are still
15+
Following the same concept of [Drupal 8 Experimental modules](https://www.drupal.org/core/experimental),
16+
some submodules are marked as "Experimental". They are provided for evaluation and testing purposes but are still
1717
considered to be in development. Experimental modules are included in the "Apigee (Experimental)" package
1818
on the "Extend" page of a Drupal site (/admin/modules).
1919

20-
## Support for Apigee Hybrid Cloud: Alpha Release
20+
## Support for Apigee Hybrid Cloud: Beta Release
2121

2222
Support for [Apigee hybrid API](https://docs.apigee.com/hybrid/reference-overview) has been added but is considered to
23-
be an alpha. If you run into any problems, add an issue to our [GitHub issue queue](https://github.com/apigee/apigee-edge-drupal/issues).
23+
be an beta. If you run into any problems, add an issue to our [GitHub issue queue](https://github.com/apigee/apigee-edge-drupal/issues).
2424
Please note that Team APIs and Monetization APIs are not currently supported on Apigee hybrid.
2525

2626
## Requirements
@@ -50,16 +50,16 @@ Please note that Team APIs and Monetization APIs are not currently supported on
5050
## Notes
5151

5252
* If you do not configure the connection between Drupal and Apigee Edge, you will not be able to register developers on
53-
the site and may cause other issues with Drupal core functions. If you do not plan to configure the connection between
53+
the site and may cause other issues with Drupal core functions. If you do not plan to configure the connection between
5454
Drupal and Apigee Edge, you should uninstall the Apigee Edge module.
5555
* When you first install the module, existing users in the Drupal site may not have a developer account in Apigee Edge.
5656
You can run [developer synchronization](https://www.drupal.org/docs/8/modules/apigee-edge/synchronize-developers-with-apigee-edge)
5757
to make sure Drupal users and Apigee Edge developers are synchronized.
58-
58+
5959
## Applying Patches
6060

6161
The Apigee Edge module may require Drupal core or contributed module patches to be able to work properly. These patches
62-
can be applied automatically when Apigee Edge module gets installed but for that your Drupal installation must fulfill
62+
can be applied automatically when Apigee Edge module gets installed but for that your Drupal installation must fulfill
6363
the following requirements:
6464

6565
1. [cweagans/composer-patches](https://packagist.org/packages/cweagans/composer-patches) >= 1.6.5 has to be installed.
@@ -72,7 +72,7 @@ for drupal/core has to be set in Drupal's composer.json.
7272
You can find the currently required patches, if any, in the Apigee Edge module's [composer.json](https://github.com/apigee/apigee-edge-drupal/blob/8.x-1.x/composer.json)
7373
and in the Apigee Edge PHP API Client's [composer.json](https://github.com/apigee/apigee-client-php/blob/2.x/composer.json).
7474

75-
**If you do not have all required patches applied in your Drupal installation you may experience some problems with the
75+
**If you do not have all required patches applied in your Drupal installation you may experience some problems with the
7676
Apigee Edge module.**
7777

7878
## Troubleshooting

apigee_edge.install

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ use Drupal\user\RoleInterface;
3333
*/
3434
function apigee_edge_requirements($phase) {
3535
$requirements = [];
36-
$hybrid_support_message = t('Support for Apigee hybrid in the Apigee modules is in Alpha. Connecting to a hybrid organization is appropriate for evaluation and testing purposes during this pre-production stage.');
36+
$hybrid_support_message = t('Support for Apigee hybrid in the Apigee modules is in Beta. Connecting to a hybrid organization is appropriate for evaluation and testing purposes during this pre-production stage.');
3737

3838
if ($phase === 'install') {
3939
// This should be checked only if Drupal is installed.

src/Plugin/KeyInput/ApigeeAuthKeyInput.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta
9191
$form['hybrid_support_info'] = [
9292
'#type' => 'fieldset',
9393
'#title' => $this->t('Support for Apigee hybrid'),
94-
'#description' => $this->t('Support for Apigee hybrid in the Apigee modules is in Alpha. Connecting to a hybrid organization is appropriate for evaluation and testing purposes during this pre-production stage.'),
94+
'#description' => $this->t('Support for Apigee hybrid in the Apigee modules is in Beta. Connecting to a hybrid organization is appropriate for evaluation and testing purposes during this pre-production stage.'),
9595

9696
'#states' => [
9797
'visible' => $state_for_hybrid,

0 commit comments

Comments
 (0)