@forge/cli-shared 5.0.0-next.7 → 5.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 CHANGED
@@ -1,5 +1,58 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.0.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b3d7850]
8
+ - Updated dependencies [a8cdbca]
9
+ - @forge/manifest@7.4.0-next.0
10
+
11
+ ## 5.0.0
12
+
13
+ ### Major Changes
14
+
15
+ - 5c2c20f: Fixed the issue where the CLI was unable to bundle modules with multiple entrypoints using different resource types.
16
+
17
+ Specifically the following configuration that supports both UI Kit and Custom UI resources are now supported properly.
18
+
19
+ ```yaml
20
+ modules:
21
+ jira:customFieldType:
22
+ - key: my_custom_field_app
23
+ resource: ui-kit-resource
24
+ render: native
25
+ contextConfig:
26
+ resource: custom-ui-resource
27
+ ```
28
+
29
+ In the previous CLI version, the above configuration would assume that the `custom-ui-resource` is a UI Kit resource
30
+ and would expected a UI Kit based resource is linked. To support using same resource type for multiple entrypoints,
31
+ in above example, please add `render: native` to the `contextConfig` to correct the resource type:
32
+
33
+ ```yaml
34
+ modules:
35
+ jira:customFieldType:
36
+ - key: my_custom_field_app
37
+ resource: ui-kit-resource
38
+ render: native
39
+ contextConfig:
40
+ resource: ui-kit-resource
41
+ render: native
42
+ ```
43
+
44
+ ### Patch Changes
45
+
46
+ - 670a419: Only parse listed environment variables in the manifest
47
+ - Updated dependencies [77d16a9]
48
+ - Updated dependencies [6162ed5]
49
+ - Updated dependencies [7787d36]
50
+ - Updated dependencies [670a419]
51
+ - Updated dependencies [4c2dc9f]
52
+ - Updated dependencies [6099d41]
53
+ - Updated dependencies [f04a310]
54
+ - @forge/manifest@7.3.0
55
+
3
56
  ## 5.0.0-next.7
4
57
 
5
58
  ### Patch Changes