@forge/cli 13.0.0-next.13 → 13.1.0-next.14
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 +211 -0
- package/npm-shrinkwrap.json +736 -563
- package/out/autocomplete/autocomplete-config.json +6 -0
- package/out/command-line/command.d.ts +4 -1
- package/out/command-line/command.d.ts.map +1 -1
- package/out/command-line/command.js +3 -3
- package/out/command-line/command.js.map +1 -1
- package/out/command-line/controller/install-controller.d.ts +2 -1
- package/out/command-line/controller/install-controller.d.ts.map +1 -1
- package/out/command-line/controller/install-controller.js +25 -20
- package/out/command-line/controller/install-controller.js.map +1 -1
- package/out/command-line/controller/module-add-controller.d.ts +1 -0
- package/out/command-line/controller/module-add-controller.d.ts.map +1 -1
- package/out/command-line/controller/module-add-controller.js +67 -3
- package/out/command-line/controller/module-add-controller.js.map +1 -1
- package/out/command-line/register-app-commands.d.ts.map +1 -1
- package/out/command-line/register-app-commands.js +65 -55
- package/out/command-line/register-app-commands.js.map +1 -1
- package/out/command-line/register-installation-commands.d.ts.map +1 -1
- package/out/command-line/register-installation-commands.js +16 -15
- package/out/command-line/register-installation-commands.js.map +1 -1
- package/out/command-line/register-module-commands.d.ts.map +1 -1
- package/out/command-line/register-module-commands.js +2 -0
- package/out/command-line/register-module-commands.js.map +1 -1
- package/out/command-line/uninstall-command-helpers.d.ts +2 -2
- package/out/command-line/uninstall-command-helpers.d.ts.map +1 -1
- package/out/command-line/uninstall-command-helpers.js +5 -5
- package/out/command-line/uninstall-command-helpers.js.map +1 -1
- package/out/deploy/packager/archiver.d.ts +4 -3
- package/out/deploy/packager/archiver.d.ts.map +1 -1
- package/out/deploy/packager/archiver.js +9 -5
- package/out/deploy/packager/archiver.js.map +1 -1
- package/out/deploy/packager/runtime-bundler.d.ts +1 -1
- package/out/deploy/packager/runtime-bundler.d.ts.map +1 -1
- package/out/deploy/packager/runtime-bundler.js +1 -1
- package/out/deploy/packager/runtime-bundler.js.map +1 -1
- package/out/installations/install-app-site.d.ts +2 -1
- package/out/installations/install-app-site.d.ts.map +1 -1
- package/out/installations/install-app-site.js +2 -2
- package/out/installations/install-app-site.js.map +1 -1
- package/out/installations/uninstall-app.d.ts +2 -2
- package/out/installations/uninstall-app.d.ts.map +1 -1
- package/out/installations/uninstall-app.js +4 -4
- package/out/installations/uninstall-app.js.map +1 -1
- package/out/module-add/manifest-merger.d.ts.map +1 -1
- package/out/module-add/manifest-merger.js +181 -74
- package/out/module-add/manifest-merger.js.map +1 -1
- package/out/service/installation-service.d.ts +4 -4
- package/out/service/installation-service.d.ts.map +1 -1
- package/out/service/installation-service.js +8 -8
- package/out/service/installation-service.js.map +1 -1
- package/out/service/module-file-service.js +2 -2
- package/out/service/module-file-service.js.map +1 -1
- package/out/service/module-service.d.ts +2 -1
- package/out/service/module-service.d.ts.map +1 -1
- package/out/service/module-service.js.map +1 -1
- package/out/service/resource-packaging-service.d.ts +1 -1
- package/out/service/resource-packaging-service.d.ts.map +1 -1
- package/out/service/resource-packaging-service.js +1 -1
- package/out/service/resource-packaging-service.js.map +1 -1
- package/package.json +17 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,216 @@
|
|
|
1
1
|
# @forge/cli
|
|
2
2
|
|
|
3
|
+
## 13.1.0-next.14
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c3dbc58: Manifest Merge Logics changed
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [c3dbc58]
|
|
12
|
+
- @forge/cli-shared@9.1.0-next.10
|
|
13
|
+
- @forge/bundler@7.0.1-next.11
|
|
14
|
+
- @forge/lint@6.0.1-next.11
|
|
15
|
+
- @forge/tunnel@7.0.1-next.12
|
|
16
|
+
|
|
17
|
+
## 13.1.0-next.13
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- 4f18feb: Added the non interactive function for module add
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [4f18feb]
|
|
26
|
+
- @forge/cli-shared@9.1.0-next.9
|
|
27
|
+
- @forge/bundler@7.0.1-next.10
|
|
28
|
+
- @forge/lint@6.0.1-next.10
|
|
29
|
+
- @forge/tunnel@7.0.1-next.11
|
|
30
|
+
|
|
31
|
+
## 13.1.0-next.12
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- @forge/lint@6.0.1-next.9
|
|
36
|
+
- @forge/tunnel@7.0.1-next.10
|
|
37
|
+
- @forge/bundler@7.0.1-next.9
|
|
38
|
+
|
|
39
|
+
## 13.1.0-next.11
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- Updated dependencies [a60362e]
|
|
44
|
+
- @forge/manifest@13.1.0-next.6
|
|
45
|
+
- @forge/bundler@7.0.1-next.8
|
|
46
|
+
- @forge/cli-shared@9.0.1-next.8
|
|
47
|
+
- @forge/lint@6.0.1-next.8
|
|
48
|
+
- @forge/tunnel@7.0.1-next.9
|
|
49
|
+
|
|
50
|
+
## 13.1.0-next.10
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- Updated dependencies [78097a6]
|
|
55
|
+
- @forge/manifest@13.1.0-next.5
|
|
56
|
+
- @forge/bundler@7.0.1-next.7
|
|
57
|
+
- @forge/cli-shared@9.0.1-next.7
|
|
58
|
+
- @forge/lint@6.0.1-next.7
|
|
59
|
+
- @forge/tunnel@7.0.1-next.8
|
|
60
|
+
|
|
61
|
+
## 13.1.0-next.9
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- 863f6f7: Fix resource limit on commits and installation fails with adding custom-ui
|
|
66
|
+
|
|
67
|
+
## 13.1.0-next.8
|
|
68
|
+
|
|
69
|
+
### Patch Changes
|
|
70
|
+
|
|
71
|
+
- 7c850b4: Add checks for unsupported node versions
|
|
72
|
+
- 3bccafa: Remove jest-fixtures dev dependecy
|
|
73
|
+
- Updated dependencies [3bccafa]
|
|
74
|
+
- @forge/cli-shared@9.0.1-next.6
|
|
75
|
+
- @forge/bundler@7.0.1-next.6
|
|
76
|
+
- @forge/lint@6.0.1-next.6
|
|
77
|
+
- @forge/tunnel@7.0.1-next.7
|
|
78
|
+
|
|
79
|
+
## 13.1.0-next.7
|
|
80
|
+
|
|
81
|
+
### Patch Changes
|
|
82
|
+
|
|
83
|
+
- Updated dependencies [13e49d8]
|
|
84
|
+
- @forge/manifest@13.1.0-next.4
|
|
85
|
+
- @forge/bundler@7.0.1-next.5
|
|
86
|
+
- @forge/cli-shared@9.0.1-next.5
|
|
87
|
+
- @forge/lint@6.0.1-next.5
|
|
88
|
+
- @forge/tunnel@7.0.1-next.6
|
|
89
|
+
|
|
90
|
+
## 13.1.0-next.6
|
|
91
|
+
|
|
92
|
+
### Patch Changes
|
|
93
|
+
|
|
94
|
+
- Updated dependencies [e744c59]
|
|
95
|
+
- @forge/manifest@13.1.0-next.3
|
|
96
|
+
- @forge/bundler@7.0.1-next.4
|
|
97
|
+
- @forge/cli-shared@9.0.1-next.4
|
|
98
|
+
- @forge/lint@6.0.1-next.4
|
|
99
|
+
- @forge/tunnel@7.0.1-next.5
|
|
100
|
+
|
|
101
|
+
## 13.1.0-next.5
|
|
102
|
+
|
|
103
|
+
### Patch Changes
|
|
104
|
+
|
|
105
|
+
- Updated dependencies [5d2cd6c]
|
|
106
|
+
- @forge/cli-shared@9.0.1-next.3
|
|
107
|
+
- @forge/bundler@7.0.1-next.3
|
|
108
|
+
- @forge/lint@6.0.1-next.3
|
|
109
|
+
- @forge/tunnel@7.0.1-next.4
|
|
110
|
+
|
|
111
|
+
## 13.1.0-next.4
|
|
112
|
+
|
|
113
|
+
### Patch Changes
|
|
114
|
+
|
|
115
|
+
- Updated dependencies [ee36de0]
|
|
116
|
+
- @forge/tunnel@7.0.1-next.3
|
|
117
|
+
|
|
118
|
+
## 13.1.0-next.3
|
|
119
|
+
|
|
120
|
+
### Minor Changes
|
|
121
|
+
|
|
122
|
+
- 5b7db55: Upgrade package dependency `archiver`.
|
|
123
|
+
|
|
124
|
+
## 13.0.1-next.2
|
|
125
|
+
|
|
126
|
+
### Patch Changes
|
|
127
|
+
|
|
128
|
+
- 81b57b3: Allow global ui templates to appear under Global
|
|
129
|
+
- Updated dependencies [c60a7a5]
|
|
130
|
+
- @forge/manifest@13.1.0-next.2
|
|
131
|
+
- @forge/bundler@7.0.1-next.2
|
|
132
|
+
- @forge/cli-shared@9.0.1-next.2
|
|
133
|
+
- @forge/lint@6.0.1-next.2
|
|
134
|
+
- @forge/tunnel@7.0.1-next.2
|
|
135
|
+
|
|
136
|
+
## 13.0.1-next.1
|
|
137
|
+
|
|
138
|
+
### Patch Changes
|
|
139
|
+
|
|
140
|
+
- 6471b1d: Allow --app-id-override for install and uninstall commands
|
|
141
|
+
- Updated dependencies [caa7518]
|
|
142
|
+
- @forge/manifest@13.1.0-next.1
|
|
143
|
+
- @forge/bundler@7.0.1-next.1
|
|
144
|
+
- @forge/cli-shared@9.0.1-next.1
|
|
145
|
+
- @forge/lint@6.0.1-next.1
|
|
146
|
+
- @forge/tunnel@7.0.1-next.1
|
|
147
|
+
|
|
148
|
+
## 13.0.1-next.0
|
|
149
|
+
|
|
150
|
+
### Patch Changes
|
|
151
|
+
|
|
152
|
+
- Updated dependencies [4cd2242]
|
|
153
|
+
- @forge/manifest@13.1.0-next.0
|
|
154
|
+
- @forge/bundler@7.0.1-next.0
|
|
155
|
+
- @forge/cli-shared@9.0.1-next.0
|
|
156
|
+
- @forge/lint@6.0.1-next.0
|
|
157
|
+
- @forge/tunnel@7.0.1-next.0
|
|
158
|
+
|
|
159
|
+
## 13.0.0
|
|
160
|
+
|
|
161
|
+
### Major Changes
|
|
162
|
+
|
|
163
|
+
- 78fcb7f: Adds support for TypeScript 5
|
|
164
|
+
|
|
165
|
+
### Minor Changes
|
|
166
|
+
|
|
167
|
+
- 6aeecd7: The tunnel debugger now binds to localhost (127.0.0.1) by default instead of all network interfaces (0.0.0.0). If you need to attach a debugger from another host, use the new `--debugHost` option on `forge tunnel` to specify the IP address to bind to.
|
|
168
|
+
- 5881924: update memfs
|
|
169
|
+
- 39d4f9d: forge show command
|
|
170
|
+
- 55c1371: bump cheerio to ^1.2.0 to pull in a patched undici (>=7.19.0, resolving to a fixed release) and remediate CVE-2026-1525
|
|
171
|
+
NodeJS requirement bumped from 20.0.0 to >=20.18.1
|
|
172
|
+
- 2a1ec30: Adding warning when site has over 100 apps installed
|
|
173
|
+
|
|
174
|
+
### Patch Changes
|
|
175
|
+
|
|
176
|
+
- 561f8f4: Remove "storage" module from "@forge/api"
|
|
177
|
+
- ab1dcaa: Update JSM to be its own product
|
|
178
|
+
- 39d4f9d: Unhide and put `module` command into the "Develop" group in CLI help output
|
|
179
|
+
- bb903a8: Update requireAppId check
|
|
180
|
+
- 5b67e61: Patch fixes for module Add
|
|
181
|
+
- 9a6de66: module list command
|
|
182
|
+
- 73f3e6e: Adding new --app-id-override flag to build list
|
|
183
|
+
- Updated dependencies [c3b96b3]
|
|
184
|
+
- Updated dependencies [2a03b88]
|
|
185
|
+
- Updated dependencies [814b8fe]
|
|
186
|
+
- Updated dependencies [561f8f4]
|
|
187
|
+
- Updated dependencies [6aeecd7]
|
|
188
|
+
- Updated dependencies [78fcb7f]
|
|
189
|
+
- Updated dependencies [ab1dcaa]
|
|
190
|
+
- Updated dependencies [4a191fe]
|
|
191
|
+
- Updated dependencies [5881924]
|
|
192
|
+
- Updated dependencies [bb903a8]
|
|
193
|
+
- Updated dependencies [c1acc55]
|
|
194
|
+
- Updated dependencies [fbf8219]
|
|
195
|
+
- Updated dependencies [8ac7dd3]
|
|
196
|
+
- Updated dependencies [39d4f9d]
|
|
197
|
+
- Updated dependencies [6adb226]
|
|
198
|
+
- Updated dependencies [5b67e61]
|
|
199
|
+
- Updated dependencies [9a6de66]
|
|
200
|
+
- Updated dependencies [55c1371]
|
|
201
|
+
- Updated dependencies [d66be70]
|
|
202
|
+
- Updated dependencies [1a461c3]
|
|
203
|
+
- Updated dependencies [2a1ec30]
|
|
204
|
+
- @forge/cli-shared@9.0.0
|
|
205
|
+
- @forge/manifest@13.0.0
|
|
206
|
+
- @forge/bundler@7.0.0
|
|
207
|
+
- @forge/tunnel@7.0.0
|
|
208
|
+
- @forge/runtime@7.0.0
|
|
209
|
+
- @forge/egress@3.0.0
|
|
210
|
+
- @forge/i18n@1.0.0
|
|
211
|
+
- @forge/lint@6.0.0
|
|
212
|
+
- @forge/util@3.0.0
|
|
213
|
+
|
|
3
214
|
## 13.0.0-next.13
|
|
4
215
|
|
|
5
216
|
### Minor Changes
|