@forge/react 9.2.0-next.4 → 9.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @forge/react
2
2
 
3
+ ## 9.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f922a25: creates useIssueProperty hook for UI kit 2
8
+
9
+ - useIssueProperty:
10
+ - manages a Jira issue's property (via Jira v2 API)
11
+ - requires the following scopes:
12
+ - read:jira-work
13
+ - write:jira-work
14
+
15
+ - be57ee6: Created hooks for the package:
16
+ - useProductContext: outputs the app's environment context via @forge/bridge's view.getContext()
17
+ - useConfig: requests for product environment context and extracts the app's config (if available)
18
+ - c242040: fixes & improvements to property hooks:
19
+ - useIssueProperty: fix comments, optimise concrete value update, remove update auto-retries
20
+ - useIssueProperty, useSpaceProperty, useContentProperty: handle concurrent create attempts by having failed attempt re-fetch property
21
+ - 0cbc4ee: creates useSpaceProperty and useContentProperty hooks for UI kit 2
22
+
23
+ - useSpaceProperty:
24
+ - manages a Confluence space's property (via Confluence v2 API)
25
+ - requires the following scopes:
26
+ - read:space:confluence
27
+ - write:space:confluence
28
+ - useContentProperty
29
+ - manages a Confluence page's property (via Confluence v2 API)
30
+ - requires the following scopes
31
+ - read:page:confluence
32
+ - write:page:confluence
33
+
34
+ ### Patch Changes
35
+
36
+ - Updated dependencies [e7b0327]
37
+ - @forge/ui@1.10.5
38
+
3
39
  ## 9.2.0-next.4
4
40
 
5
41
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/react",
3
- "version": "9.2.0-next.4",
3
+ "version": "9.2.0",
4
4
  "description": "Forge React reconciler",
5
5
  "author": "Atlassian",
6
6
  "license": "UNLICENSED",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "peerDependencies": {
16
16
  "@forge/bridge": "3.2.0",
17
- "@forge/ui": "1.10.5-next.0"
17
+ "@forge/ui": "1.10.5"
18
18
  },
19
19
  "dependencies": {
20
20
  "@types/react-reconciler": "^0.28.8",