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