@friggframework/core 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/module-plugin/auther.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# v1.1.7 (Mon Jul 15 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- getAuthorizationRequirements() async [#318](https://github.com/friggframework/frigg/pull/318) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
|
|
6
|
+
- getAuthorizationRequirements should be async, though it will only occasionally need to make requests ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
|
|
7
|
+
- Bump version to: v1.1.6 \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
|
|
8
|
+
|
|
9
|
+
#### Authors: 2
|
|
10
|
+
|
|
11
|
+
- [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
|
|
12
|
+
- Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
1
16
|
# v1.1.6 (Fri Apr 26 2024)
|
|
2
17
|
|
|
3
18
|
#### 🐛 Bug Fix
|
package/module-plugin/auther.js
CHANGED
|
@@ -203,7 +203,7 @@ class Auther extends Delegate {
|
|
|
203
203
|
return valid;
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
-
getAuthorizationRequirements(params) {
|
|
206
|
+
async getAuthorizationRequirements(params) {
|
|
207
207
|
// TODO: How can this be more helpful both to implement and consume
|
|
208
208
|
// this function must return a dictionary with the following format
|
|
209
209
|
// node only url key is required. Data would be used for Base Authentication
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/core",
|
|
3
3
|
"prettier": "@friggframework/prettier-config",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.7",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@hapi/boom": "^10.0.1",
|
|
7
7
|
"aws-sdk": "^2.1200.0",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"node-fetch": "^2.6.7"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@friggframework/eslint-config": "^1.1.
|
|
19
|
-
"@friggframework/prettier-config": "^1.1.
|
|
20
|
-
"@friggframework/test": "^1.1.
|
|
18
|
+
"@friggframework/eslint-config": "^1.1.7",
|
|
19
|
+
"@friggframework/prettier-config": "^1.1.7",
|
|
20
|
+
"@friggframework/test": "^1.1.7",
|
|
21
21
|
"@types/lodash": "^4.14.191",
|
|
22
22
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
23
23
|
"chai": "^4.3.6",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
},
|
|
50
50
|
"homepage": "https://github.com/friggframework/frigg#readme",
|
|
51
51
|
"description": "",
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "787157f82bc8727ed90c7f6dccbbde71c5b45bd1"
|
|
53
53
|
}
|