@forge/cli-shared 9.3.0-next.9 → 9.3.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,114 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 8a9e608: Pull the Forge tunnel proxy-sidecar image from the Portable Registry, falling back to ECR if the initial pull fails
8
+ - 18b920d: Update feature gate name
9
+ - 342098d: Implement server-side linter logic to prevent accidental major app version deployments
10
+ - a36d70b: Implement manual bundler
11
+ - 52e074e: Global App integration + Trigger / Action modules
12
+ - bc2d278: Display deeplinks to installed modules after a successful `forge install`
13
+ - ca4fa27: Add utility function to check if a UI Kit resource needs to be bundled
14
+
15
+ ### Patch Changes
16
+
17
+ - 4d50a76: Changes to forge deploy with a feature-gated combined artifact upload flow.
18
+ - 905d8c5: Design changes, hint to module add and a spinner when loading
19
+ - c8105d8: Remind the user to authenticate to the container registry after creating a new container
20
+ - 3e8de63: add `manifest render` command
21
+ - cddef39: Rename 'package' resource property to 'bundler' to align with property for backend bundling
22
+ - 0949833: Update `tmp` to 0.2.7 to remediate vulnerability
23
+ - 8d20095: bump adm-zip to v0.6.0
24
+ - e7bfe5e: Removing installationTarget
25
+ - Updated dependencies [f01417b]
26
+ - Updated dependencies [d706cd8]
27
+ - Updated dependencies [4b90a07]
28
+ - Updated dependencies [3e8de63]
29
+ - Updated dependencies [cddef39]
30
+ - Updated dependencies [d1610cc]
31
+ - Updated dependencies [e7bfe5e]
32
+ - Updated dependencies [498fda5]
33
+ - Updated dependencies [4404f62]
34
+ - Updated dependencies [89ccb1e]
35
+ - Updated dependencies [39f1f15]
36
+ - Updated dependencies [c3a0f20]
37
+ - @forge/manifest@13.3.0
38
+
39
+ ## 9.3.0-next.20
40
+
41
+ ### Patch Changes
42
+
43
+ - cddef39: Rename 'package' resource property to 'bundler' to align with property for backend bundling
44
+ - Updated dependencies [cddef39]
45
+ - @forge/manifest@13.3.0-next.11
46
+
47
+ ## 9.3.0-next.19
48
+
49
+ ### Minor Changes
50
+
51
+ - 342098d: Implement server-side linter logic to prevent accidental major app version deployments
52
+
53
+ ## 9.3.0-next.18
54
+
55
+ ### Patch Changes
56
+
57
+ - Updated dependencies [4404f62]
58
+ - @forge/manifest@13.3.0-next.10
59
+
60
+ ## 9.3.0-next.17
61
+
62
+ ### Patch Changes
63
+
64
+ - 8d20095: bump adm-zip to v0.6.0
65
+
66
+ ## 9.3.0-next.16
67
+
68
+ ### Patch Changes
69
+
70
+ - 905d8c5: Design changes, hint to module add and a spinner when loading
71
+
72
+ ## 9.3.0-next.15
73
+
74
+ ### Minor Changes
75
+
76
+ - 52e074e: Global App integration + Trigger / Action modules
77
+
78
+ ## 9.3.0-next.14
79
+
80
+ ### Patch Changes
81
+
82
+ - c8105d8: Remind the user to authenticate to the container registry after creating a new container
83
+ - 3e8de63: add `manifest render` command
84
+ - Updated dependencies [3e8de63]
85
+ - @forge/manifest@13.3.0-next.9
86
+
87
+ ## 9.3.0-next.13
88
+
89
+ ### Minor Changes
90
+
91
+ - 8a9e608: Pull the Forge tunnel proxy-sidecar image from the Portable Registry, falling back to ECR if the initial pull fails
92
+
93
+ ## 9.3.0-next.12
94
+
95
+ ### Patch Changes
96
+
97
+ - Updated dependencies [4b90a07]
98
+ - @forge/manifest@13.3.0-next.8
99
+
100
+ ## 9.3.0-next.11
101
+
102
+ ### Minor Changes
103
+
104
+ - 18b920d: Update feature gate name
105
+
106
+ ## 9.3.0-next.10
107
+
108
+ ### Minor Changes
109
+
110
+ - bc2d278: Display deeplinks to installed modules after a successful `forge install`
111
+
3
112
  ## 9.3.0-next.9
4
113
 
5
114
  ### Minor Changes
@@ -15,6 +15,6 @@ const isHostedResourceModule = (module) => {
15
15
  };
16
16
  exports.isHostedResourceModule = isHostedResourceModule;
17
17
  const shouldBundleResource = (resource) => {
18
- return resource.resourceType === 'nativeUI' && !resource.package;
18
+ return resource.resourceType === 'nativeUI' && !resource.bundler;
19
19
  };
20
20
  exports.shouldBundleResource = shouldBundleResource;