@forge/api 3.2.0-next.5 → 3.2.0
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 +22 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/api
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e343baf: Add external auth info to metadata for invocations
|
|
8
|
+
- d36502b: This change extends existing methods on external auth providers. We are now providing account details including: externalAccountId, displayName, avatarUrl, granted scopes.
|
|
9
|
+
Moreover, if end user authenticates multiple accounts, it is possible to select what account to use.
|
|
10
|
+
- ea39472: Implement External auth APIs for Node runtime
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 32fa518: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- @types/node-fetch
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [5b82e7f]
|
|
19
|
+
- Updated dependencies [882be11]
|
|
20
|
+
- Updated dependencies [32fa518]
|
|
21
|
+
- @forge/util@1.4.1
|
|
22
|
+
- @forge/egress@1.2.13
|
|
23
|
+
- @forge/storage@1.5.15
|
|
24
|
+
|
|
3
25
|
## 3.2.0-next.5
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/api",
|
|
3
|
-
"version": "3.2.0
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Forge API methods",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"compile": "tsc -b -v"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@forge/runtime": "5.4.0
|
|
15
|
+
"@forge/runtime": "5.4.0",
|
|
16
16
|
"@types/node": "14.18.63",
|
|
17
17
|
"expect-type": "^0.17.3",
|
|
18
18
|
"jest-matcher-specific-error": "^1.0.0",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@forge/auth": "0.0.5",
|
|
23
|
-
"@forge/egress": "1.2.13
|
|
24
|
-
"@forge/storage": "1.5.15
|
|
25
|
-
"@forge/util": "1.4.1
|
|
23
|
+
"@forge/egress": "1.2.13",
|
|
24
|
+
"@forge/storage": "1.5.15",
|
|
25
|
+
"@forge/util": "1.4.1",
|
|
26
26
|
"@types/node-fetch": "^2.6.11",
|
|
27
27
|
"node-fetch": "2.7.0"
|
|
28
28
|
}
|