@forge/cli 10.13.6 → 11.0.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 +251 -0
- package/LICENSE.txt +7 -0
- package/npm-shrinkwrap.json +142 -130
- package/out/autocomplete/autocomplete-config.json +26 -0
- package/out/command-line/command.d.ts +15 -2
- package/out/command-line/command.d.ts.map +1 -1
- package/out/command-line/command.js +29 -6
- package/out/command-line/controller/deploy-controller.d.ts.map +1 -1
- package/out/command-line/controller/deploy-controller.js +4 -7
- package/out/command-line/controller/install-controller.d.ts +3 -3
- package/out/command-line/controller/install-controller.d.ts.map +1 -1
- package/out/command-line/controller/install-controller.js +16 -13
- package/out/command-line/controller/version-controller.d.ts +36 -0
- package/out/command-line/controller/version-controller.d.ts.map +1 -0
- package/out/command-line/controller/version-controller.js +114 -0
- package/out/command-line/dependency-injection.d.ts +4 -1
- package/out/command-line/dependency-injection.d.ts.map +1 -1
- package/out/command-line/dependency-injection.js +14 -6
- package/out/command-line/index.d.ts +1 -1
- package/out/command-line/index.d.ts.map +1 -1
- package/out/command-line/index.js +6 -4
- package/out/command-line/register-app-commands.d.ts.map +1 -1
- package/out/command-line/register-app-commands.js +9 -1
- package/out/command-line/register-installation-commands.d.ts +2 -10
- package/out/command-line/register-installation-commands.d.ts.map +1 -1
- package/out/command-line/register-installation-commands.js +29 -32
- package/out/command-line/register-version-commands.d.ts +4 -0
- package/out/command-line/register-version-commands.d.ts.map +1 -0
- package/out/command-line/register-version-commands.js +76 -0
- package/out/command-line/register-webtrigger-commands.d.ts +1 -1
- package/out/command-line/register-webtrigger-commands.d.ts.map +1 -1
- package/out/command-line/register-webtrigger-commands.js +13 -5
- package/out/command-line/view/deploy-view.d.ts +1 -1
- package/out/command-line/view/deploy-view.d.ts.map +1 -1
- package/out/command-line/view/deploy-view.js +2 -2
- package/out/command-line/view/version-view.d.ts +26 -0
- package/out/command-line/view/version-view.d.ts.map +1 -0
- package/out/command-line/view/version-view.js +198 -0
- package/out/environment/graphql-client.d.ts +1 -0
- package/out/environment/graphql-client.d.ts.map +1 -1
- package/out/environment/graphql-client.js +3 -1
- package/out/environment/list-environment.d.ts +1 -0
- package/out/environment/list-environment.d.ts.map +1 -1
- package/out/installations/graphql-client.d.ts +6 -5
- package/out/installations/graphql-client.d.ts.map +1 -1
- package/out/installations/graphql-client.js +44 -7
- package/out/installations/installation-helper.d.ts.map +1 -1
- package/out/installations/installation-helper.js +1 -1
- package/out/installations/site-translation/bitbucket.d.ts +3 -4
- package/out/installations/site-translation/bitbucket.d.ts.map +1 -1
- package/out/installations/site-translation/bitbucket.js +1 -1
- package/out/installations/site-translation/index.d.ts +1 -1
- package/out/installations/site-translation/index.d.ts.map +1 -1
- package/out/installations/site-translation/index.js +1 -1
- package/out/installations/site-translation/site-translation.d.ts +3 -4
- package/out/installations/site-translation/site-translation.d.ts.map +1 -1
- package/out/installations/site-translation/sited-products.d.ts +29 -0
- package/out/installations/site-translation/sited-products.d.ts.map +1 -0
- package/out/installations/site-translation/sited-products.js +133 -0
- package/out/service/installation-service.d.ts +18 -4
- package/out/service/installation-service.d.ts.map +1 -1
- package/out/service/installation-service.js +44 -10
- package/out/service/tunnel-service.d.ts.map +1 -1
- package/out/service/tunnel-service.js +1 -1
- package/out/service/version-service.d.ts +77 -0
- package/out/service/version-service.d.ts.map +1 -0
- package/out/service/version-service.js +163 -0
- package/out/version/graphql-client.d.ts +25 -0
- package/out/version/graphql-client.d.ts.map +1 -0
- package/out/version/graphql-client.js +144 -0
- package/package.json +13 -11
- package/out/installations/site-translation/cloudid-products.d.ts +0 -25
- package/out/installations/site-translation/cloudid-products.d.ts.map +0 -1
- package/out/installations/site-translation/cloudid-products.js +0 -103
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,256 @@
|
|
|
1
1
|
# @forge/cli
|
|
2
2
|
|
|
3
|
+
## 11.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- f8e2503: Removed support of an installation id inplace of a site, product and environment installation context for the command
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- e5cca82: Added command for app versions details
|
|
12
|
+
- 1a76049: Added support for Teamwork Graph.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 7fe8568: fetching secondary installation contexts while listing installations
|
|
17
|
+
- 951f3f0: Improved installation check when executing forge deploy command
|
|
18
|
+
- 31f86d9: adding gql for primaryProduct identification
|
|
19
|
+
- 9775d88: Use upstream cloudflared package
|
|
20
|
+
- 83b9a1a: Fixed handling for bitbucket site installations when filtering
|
|
21
|
+
- 385907a: list secondary products in installations
|
|
22
|
+
- a5e7647: Update license for Forge public packages
|
|
23
|
+
- Updated dependencies [f8e2503]
|
|
24
|
+
- Updated dependencies [c2731d5]
|
|
25
|
+
- Updated dependencies [874e9a2]
|
|
26
|
+
- Updated dependencies [be59c90]
|
|
27
|
+
- Updated dependencies [eb52ac8]
|
|
28
|
+
- Updated dependencies [e5cca82]
|
|
29
|
+
- Updated dependencies [1a76049]
|
|
30
|
+
- Updated dependencies [0954fcd]
|
|
31
|
+
- Updated dependencies [951f3f0]
|
|
32
|
+
- Updated dependencies [9775d88]
|
|
33
|
+
- Updated dependencies [385907a]
|
|
34
|
+
- Updated dependencies [cad81f0]
|
|
35
|
+
- Updated dependencies [a92188e]
|
|
36
|
+
- Updated dependencies [8819889]
|
|
37
|
+
- Updated dependencies [87ae208]
|
|
38
|
+
- Updated dependencies [cd0e244]
|
|
39
|
+
- Updated dependencies [9eb7594]
|
|
40
|
+
- Updated dependencies [a5e7647]
|
|
41
|
+
- @forge/cli-shared@6.6.0
|
|
42
|
+
- @forge/lint@5.7.0
|
|
43
|
+
- @forge/util@1.4.7
|
|
44
|
+
- @forge/tunnel@5.9.2
|
|
45
|
+
- @forge/i18n@0.0.3
|
|
46
|
+
- @forge/manifest@8.6.1
|
|
47
|
+
- @forge/bundler@4.20.8
|
|
48
|
+
- @forge/runtime@5.10.5
|
|
49
|
+
- @forge/egress@1.3.1
|
|
50
|
+
|
|
51
|
+
## 11.0.0-next.18
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- Updated dependencies [9eb7594]
|
|
56
|
+
- @forge/manifest@8.6.1-next.4
|
|
57
|
+
- @forge/bundler@4.20.8-next.13
|
|
58
|
+
- @forge/cli-shared@6.6.0-next.11
|
|
59
|
+
- @forge/lint@5.7.0-next.13
|
|
60
|
+
- @forge/tunnel@5.9.2-next.15
|
|
61
|
+
|
|
62
|
+
## 11.0.0-next.17
|
|
63
|
+
|
|
64
|
+
### Patch Changes
|
|
65
|
+
|
|
66
|
+
- Updated dependencies [c2731d5]
|
|
67
|
+
- @forge/lint@5.7.0-next.12
|
|
68
|
+
- @forge/bundler@4.20.8-next.12
|
|
69
|
+
- @forge/tunnel@5.9.2-next.14
|
|
70
|
+
|
|
71
|
+
## 11.0.0-next.16
|
|
72
|
+
|
|
73
|
+
### Patch Changes
|
|
74
|
+
|
|
75
|
+
- a5e7647: Update license for Forge public packages
|
|
76
|
+
- Updated dependencies [a5e7647]
|
|
77
|
+
- @forge/cli-shared@6.6.0-next.10
|
|
78
|
+
- @forge/manifest@8.6.1-next.3
|
|
79
|
+
- @forge/bundler@4.20.8-next.11
|
|
80
|
+
- @forge/runtime@5.10.5-next.2
|
|
81
|
+
- @forge/egress@1.3.1-next.0
|
|
82
|
+
- @forge/tunnel@5.9.2-next.13
|
|
83
|
+
- @forge/i18n@0.0.3-next.2
|
|
84
|
+
- @forge/lint@5.7.0-next.11
|
|
85
|
+
- @forge/util@1.4.7-next.2
|
|
86
|
+
|
|
87
|
+
## 11.0.0-next.15
|
|
88
|
+
|
|
89
|
+
### Patch Changes
|
|
90
|
+
|
|
91
|
+
- 385907a: list secondary products in installations
|
|
92
|
+
- Updated dependencies [385907a]
|
|
93
|
+
- Updated dependencies [87ae208]
|
|
94
|
+
- @forge/cli-shared@6.6.0-next.9
|
|
95
|
+
- @forge/manifest@8.6.1-next.2
|
|
96
|
+
- @forge/bundler@4.20.8-next.10
|
|
97
|
+
- @forge/lint@5.7.0-next.10
|
|
98
|
+
- @forge/tunnel@5.9.2-next.12
|
|
99
|
+
|
|
100
|
+
## 11.0.0-next.14
|
|
101
|
+
|
|
102
|
+
### Minor Changes
|
|
103
|
+
|
|
104
|
+
- 1a76049: Added support for Teamwork Graph.
|
|
105
|
+
|
|
106
|
+
### Patch Changes
|
|
107
|
+
|
|
108
|
+
- Updated dependencies [1a76049]
|
|
109
|
+
- Updated dependencies [cad81f0]
|
|
110
|
+
- @forge/cli-shared@6.6.0-next.8
|
|
111
|
+
- @forge/lint@5.7.0-next.9
|
|
112
|
+
- @forge/bundler@4.20.8-next.9
|
|
113
|
+
- @forge/tunnel@5.9.2-next.11
|
|
114
|
+
|
|
115
|
+
## 11.0.0-next.13
|
|
116
|
+
|
|
117
|
+
### Patch Changes
|
|
118
|
+
|
|
119
|
+
- 951f3f0: Improved installation check when executing forge deploy command
|
|
120
|
+
- Updated dependencies [951f3f0]
|
|
121
|
+
- @forge/cli-shared@6.6.0-next.7
|
|
122
|
+
- @forge/bundler@4.20.8-next.8
|
|
123
|
+
- @forge/lint@5.7.0-next.8
|
|
124
|
+
- @forge/tunnel@5.9.2-next.10
|
|
125
|
+
|
|
126
|
+
## 11.0.0-next.12
|
|
127
|
+
|
|
128
|
+
### Patch Changes
|
|
129
|
+
|
|
130
|
+
- 31f86d9: adding gql for primaryProduct identification
|
|
131
|
+
|
|
132
|
+
## 11.0.0-next.11
|
|
133
|
+
|
|
134
|
+
### Patch Changes
|
|
135
|
+
|
|
136
|
+
- 7fe8568: fetching secondary installation contexts while listing installations
|
|
137
|
+
|
|
138
|
+
## 11.0.0-next.10
|
|
139
|
+
|
|
140
|
+
### Patch Changes
|
|
141
|
+
|
|
142
|
+
- Updated dependencies [eb52ac8]
|
|
143
|
+
- @forge/util@1.4.7-next.1
|
|
144
|
+
- @forge/bundler@4.20.8-next.7
|
|
145
|
+
- @forge/cli-shared@6.6.0-next.6
|
|
146
|
+
- @forge/runtime@5.10.5-next.1
|
|
147
|
+
- @forge/tunnel@5.9.2-next.9
|
|
148
|
+
- @forge/lint@5.7.0-next.7
|
|
149
|
+
|
|
150
|
+
## 11.0.0-next.9
|
|
151
|
+
|
|
152
|
+
### Patch Changes
|
|
153
|
+
|
|
154
|
+
- Updated dependencies [be59c90]
|
|
155
|
+
- @forge/util@1.4.7-next.0
|
|
156
|
+
- @forge/bundler@4.20.8-next.6
|
|
157
|
+
- @forge/cli-shared@6.6.0-next.5
|
|
158
|
+
- @forge/runtime@5.10.5-next.0
|
|
159
|
+
- @forge/tunnel@5.9.2-next.8
|
|
160
|
+
- @forge/lint@5.7.0-next.6
|
|
161
|
+
|
|
162
|
+
## 11.0.0-next.8
|
|
163
|
+
|
|
164
|
+
### Patch Changes
|
|
165
|
+
|
|
166
|
+
- 83b9a1a: Fixed handling for bitbucket site installations when filtering
|
|
167
|
+
|
|
168
|
+
## 11.0.0-next.7
|
|
169
|
+
|
|
170
|
+
### Patch Changes
|
|
171
|
+
|
|
172
|
+
- Updated dependencies [0954fcd]
|
|
173
|
+
- @forge/cli-shared@6.6.0-next.4
|
|
174
|
+
- @forge/bundler@4.20.8-next.5
|
|
175
|
+
- @forge/lint@5.7.0-next.5
|
|
176
|
+
- @forge/tunnel@5.9.2-next.7
|
|
177
|
+
|
|
178
|
+
## 11.0.0-next.6
|
|
179
|
+
|
|
180
|
+
### Minor Changes
|
|
181
|
+
|
|
182
|
+
- e5cca82: Added command for app versions details
|
|
183
|
+
|
|
184
|
+
### Patch Changes
|
|
185
|
+
|
|
186
|
+
- Updated dependencies [e5cca82]
|
|
187
|
+
- @forge/cli-shared@6.6.0-next.3
|
|
188
|
+
- @forge/bundler@4.20.8-next.4
|
|
189
|
+
- @forge/lint@5.7.0-next.4
|
|
190
|
+
- @forge/tunnel@5.9.2-next.6
|
|
191
|
+
|
|
192
|
+
## 11.0.0-next.5
|
|
193
|
+
|
|
194
|
+
### Patch Changes
|
|
195
|
+
|
|
196
|
+
- 9775d88: Use upstream cloudflared package
|
|
197
|
+
- Updated dependencies [9775d88]
|
|
198
|
+
- @forge/tunnel@5.9.2-next.5
|
|
199
|
+
|
|
200
|
+
## 11.0.0-next.4
|
|
201
|
+
|
|
202
|
+
### Major Changes
|
|
203
|
+
|
|
204
|
+
- f8e2503: Removed support of an installation id inplace of a site, product and environment installation context for the command
|
|
205
|
+
|
|
206
|
+
### Patch Changes
|
|
207
|
+
|
|
208
|
+
- Updated dependencies [f8e2503]
|
|
209
|
+
- @forge/cli-shared@6.6.0-next.2
|
|
210
|
+
- @forge/bundler@4.20.8-next.3
|
|
211
|
+
- @forge/lint@5.7.0-next.3
|
|
212
|
+
- @forge/tunnel@5.9.2-next.4
|
|
213
|
+
|
|
214
|
+
## 10.13.7-next.3
|
|
215
|
+
|
|
216
|
+
### Patch Changes
|
|
217
|
+
|
|
218
|
+
- Updated dependencies [8819889]
|
|
219
|
+
- @forge/i18n@0.0.3-next.1
|
|
220
|
+
- @forge/bundler@4.20.8-next.2
|
|
221
|
+
- @forge/cli-shared@6.5.5-next.1
|
|
222
|
+
- @forge/manifest@8.6.1-next.1
|
|
223
|
+
- @forge/tunnel@5.9.2-next.3
|
|
224
|
+
- @forge/lint@5.7.0-next.2
|
|
225
|
+
|
|
226
|
+
## 10.13.7-next.2
|
|
227
|
+
|
|
228
|
+
### Patch Changes
|
|
229
|
+
|
|
230
|
+
- @forge/tunnel@5.9.2-next.2
|
|
231
|
+
|
|
232
|
+
## 10.13.7-next.1
|
|
233
|
+
|
|
234
|
+
### Patch Changes
|
|
235
|
+
|
|
236
|
+
- Updated dependencies [a92188e]
|
|
237
|
+
- Updated dependencies [cd0e244]
|
|
238
|
+
- @forge/i18n@0.0.3-next.0
|
|
239
|
+
- @forge/manifest@8.6.1-next.0
|
|
240
|
+
- @forge/bundler@4.20.8-next.1
|
|
241
|
+
- @forge/cli-shared@6.5.5-next.0
|
|
242
|
+
- @forge/lint@5.7.0-next.1
|
|
243
|
+
- @forge/tunnel@5.9.2-next.1
|
|
244
|
+
|
|
245
|
+
## 10.13.7-next.0
|
|
246
|
+
|
|
247
|
+
### Patch Changes
|
|
248
|
+
|
|
249
|
+
- Updated dependencies [874e9a2]
|
|
250
|
+
- @forge/lint@5.7.0-next.0
|
|
251
|
+
- @forge/bundler@4.20.8-next.0
|
|
252
|
+
- @forge/tunnel@5.9.2-next.0
|
|
253
|
+
|
|
3
254
|
## 10.13.6
|
|
4
255
|
|
|
5
256
|
### Patch Changes
|
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2025 Atlassian
|
|
2
|
+
Permission is hereby granted to use this software in accordance with the terms
|
|
3
|
+
and conditions outlined in the Atlassian Developer Terms, which can be found
|
|
4
|
+
at the following URL:
|
|
5
|
+
https://developer.atlassian.com/platform/marketplace/atlassian-developer-terms/
|
|
6
|
+
By using this software, you agree to comply with these terms and conditions.
|
|
7
|
+
If you do not agree with these terms, you are not permitted to use this software.
|