@forge/bridge 6.0.0-next.4 → 6.0.1-next.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 +32 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @forge/bridge
|
|
2
2
|
|
|
3
|
+
## 6.0.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [4cd2242]
|
|
8
|
+
- @forge/manifest@13.1.0-next.0
|
|
9
|
+
|
|
10
|
+
## 6.0.0
|
|
11
|
+
|
|
12
|
+
### Major Changes
|
|
13
|
+
|
|
14
|
+
- 78fcb7f: Adds support for TypeScript 5
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- b0b69a2: **Experimental — not yet ready for use.** Add a new `frontendCustomMetrics` namespace providing `frontendCustomMetrics.counter(name)` with `incr()` and `incrBy(value)` for emitting frontend custom metrics. `incrBy(value)` rejects if `value <= 0`. The metric name must exactly match a metric registered in the Forge Dev Console.
|
|
19
|
+
- cea3c0e: Updates the invoke method to accept an argument `metadata` which returns selected metadata alongside the invocation response body. When enabled, the invoke method will return a response of shape { body, metadata }. The `metadata` argument is currently set-up to opt into returning rate limiting information. This can be enabled by passing in { rateLimitProperties: true } as the metadata argument.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 561f8f4: Remove "storage" module from "@forge/api"
|
|
24
|
+
- Updated dependencies [814b8fe]
|
|
25
|
+
- Updated dependencies [78fcb7f]
|
|
26
|
+
- Updated dependencies [8ac7dd3]
|
|
27
|
+
- Updated dependencies [55c1371]
|
|
28
|
+
- Updated dependencies [d66be70]
|
|
29
|
+
- Updated dependencies [1a461c3]
|
|
30
|
+
- @forge/manifest@13.0.0
|
|
31
|
+
- @forge/egress@3.0.0
|
|
32
|
+
- @forge/i18n@1.0.0
|
|
33
|
+
- @forge/resolver@2.0.0
|
|
34
|
+
|
|
3
35
|
## 6.0.0-next.4
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/bridge",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1-next.0",
|
|
4
4
|
"description": "Forge bridge API for custom UI apps",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@atlaskit/adf-schema": "^48.0.0",
|
|
17
17
|
"@atlaskit/tokens": "^1.58.0",
|
|
18
|
-
"@forge/egress": "^3.0.0
|
|
19
|
-
"@forge/i18n": "1.0.0
|
|
20
|
-
"@forge/resolver": "2.0.0
|
|
18
|
+
"@forge/egress": "^3.0.0",
|
|
19
|
+
"@forge/i18n": "1.0.0",
|
|
20
|
+
"@forge/resolver": "2.0.0",
|
|
21
21
|
"@types/history": "^4.7.11",
|
|
22
|
-
"@forge/manifest": "13.
|
|
22
|
+
"@forge/manifest": "13.1.0-next.0",
|
|
23
23
|
"@types/iframe-resizer": "^3.5.8",
|
|
24
24
|
"iframe-resizer": "^4.4.5"
|
|
25
25
|
},
|