Skip to content

Commit

Permalink
Merge branch 'release/0.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Decipher committed Jul 28, 2023
2 parents 5bd6c66 + 15b4981 commit 4d1194c
Show file tree
Hide file tree
Showing 13 changed files with 5,119 additions and 3,760 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
- run: yarn test --reporters=jest-junit --runInBand

- name: Codecov
uses: codecov/[email protected].0
uses: codecov/[email protected].4
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.20.1
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# druxt-auth

## 0.4.0

### Minor Changes

- b07c40b: feat(#35): added support for OAuth Scopes / Simple OAuth2 6.x

## 0.3.0

### Minor Changes
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ module.exports = {
['druxt-auth', {
clientId: '[DRUPAL_CONSUMER_UUID]',
clientSecret: '[DRUPAL_CONSUMER_SECRET]',
scope: ['default'],
}]
],
druxt: {
Expand Down Expand Up @@ -86,3 +87,4 @@ It adds two auth strategies that can be used via the `$auth` plugin:
| --- | --- | --- | --- | --- |
| `clientId` | `string` | Yes | `undefined` | The Drupal Consumer UUID |
| `clientSecret` | `string` | No | `undefined` | The Drupal Consumer API secret. Required for Password grant. |
| `scope` | `array` | No | `undefined` | The OAuth Scopes to be used for the Drupal Consumer. |
18 changes: 9 additions & 9 deletions example/drupal/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
}
],
"require": {
"composer/installers": "2.1.1",
"drupal/core-composer-scaffold": "9.4.5",
"drupal/core-project-message": "9.4.5",
"drupal/core-recommended": "9.4.5",
"drupal/druxt": "1.1.1",
"drupal/simple_oauth": "^5.2",
"drush/drush": "11.1.1",
"vlucas/phpdotenv": "^5.4"
"composer/installers": "2.2.0",
"drupal/core-composer-scaffold": "9.5.10",
"drupal/core-project-message": "9.5.10",
"drupal/core-recommended": "9.5.10",
"drupal/druxt": "1.2.0",
"drupal/simple_oauth": "^5.2.3",
"drush/drush": "11.6.0",
"vlucas/phpdotenv": "^5.5.0"
},
"require-dev": {
"drupal/core-dev": "9.4.5"
"drupal/core-dev": "9.5.10"
},
"conflict": {
"drupal/drupal": "*"
Expand Down
Loading

0 comments on commit 4d1194c

Please sign in to comment.