@forge/cli-shared 9.3.0-next.17 → 9.3.0-next.17-experimental-6320d72
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,42 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 9.3.0-next.17-experimental-6320d72
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 8759d77: Removed manifest schema validation from linting as this logic will reside in XLS.
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- 8a9e608: Pull the Forge tunnel proxy-sidecar image from the Portable Registry, falling back to ECR if the initial pull fails
|
|
12
|
+
- 18b920d: Update feature gate name
|
|
13
|
+
- a36d70b: Implement manual bundler
|
|
14
|
+
- 52e074e: Global App integration + Trigger / Action modules
|
|
15
|
+
- bc2d278: Display deeplinks to installed modules after a successful `forge install`
|
|
16
|
+
- ca4fa27: Add utility function to check if a UI Kit resource needs to be bundled
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 4d50a76: Changes to forge deploy with a feature-gated combined artifact upload flow.
|
|
21
|
+
- 905d8c5: Design changes, hint to module add and a spinner when loading
|
|
22
|
+
- c8105d8: Remind the user to authenticate to the container registry after creating a new container
|
|
23
|
+
- 3e8de63: add `manifest render` command
|
|
24
|
+
- 0949833: Update `tmp` to 0.2.7 to remediate vulnerability
|
|
25
|
+
- 8d20095: bump adm-zip to v0.6.0
|
|
26
|
+
- e7bfe5e: Removing installationTarget
|
|
27
|
+
- Updated dependencies [8759d77]
|
|
28
|
+
- Updated dependencies [f01417b]
|
|
29
|
+
- Updated dependencies [d706cd8]
|
|
30
|
+
- Updated dependencies [4b90a07]
|
|
31
|
+
- Updated dependencies [3e8de63]
|
|
32
|
+
- Updated dependencies [d1610cc]
|
|
33
|
+
- Updated dependencies [e7bfe5e]
|
|
34
|
+
- Updated dependencies [498fda5]
|
|
35
|
+
- Updated dependencies [89ccb1e]
|
|
36
|
+
- Updated dependencies [39f1f15]
|
|
37
|
+
- Updated dependencies [c3a0f20]
|
|
38
|
+
- @forge/manifest@13.3.0-next.9-experimental-6320d72
|
|
39
|
+
|
|
3
40
|
## 9.3.0-next.17
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
|
@@ -149374,6 +149374,18 @@ export type JiraUpdateWorklogInput = {
|
|
|
149374
149374
|
timeSpent?: InputMaybe<JiraEstimateInput>;
|
|
149375
149375
|
workDescription?: InputMaybe<JiraAdfInput>;
|
|
149376
149376
|
};
|
|
149377
|
+
export type JiraUpsertAgentSpaceInstructionInput = {
|
|
149378
|
+
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
149379
|
+
prompt: Scalars['String']['input'];
|
|
149380
|
+
scopeType: JiraAgentSpaceInstructionScopeType;
|
|
149381
|
+
spaceAri: Scalars['ID']['input'];
|
|
149382
|
+
};
|
|
149383
|
+
export type JiraUpsertAgentSpaceInstructionPayload = Payload & {
|
|
149384
|
+
__typename?: 'JiraUpsertAgentSpaceInstructionPayload';
|
|
149385
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149386
|
+
instruction?: Maybe<JiraAgentSpaceInstruction>;
|
|
149387
|
+
success: Scalars['Boolean']['output'];
|
|
149388
|
+
};
|
|
149377
149389
|
export type JiraUpsertIssueTypePayload = Payload & {
|
|
149378
149390
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
149379
149391
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -173422,6 +173434,7 @@ export type Mutation = {
|
|
|
173422
173434
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
173423
173435
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
173424
173436
|
jira_updateSchemeFieldRendererToRichText?: Maybe<JiraSchemeFieldRendererToRichTextPayload>;
|
|
173437
|
+
jira_upsertAgentSpaceInstruction?: Maybe<JiraUpsertAgentSpaceInstructionPayload>;
|
|
173425
173438
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
173426
173439
|
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
173427
173440
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
@@ -178165,6 +178178,10 @@ export type MutationJira_UpdateSchemeFieldRendererToRichTextArgs = {
|
|
|
178165
178178
|
cloudId: Scalars['ID']['input'];
|
|
178166
178179
|
input: JiraSchemeFieldRendererToRichTextInput;
|
|
178167
178180
|
};
|
|
178181
|
+
export type MutationJira_UpsertAgentSpaceInstructionArgs = {
|
|
178182
|
+
cloudId: Scalars['ID']['input'];
|
|
178183
|
+
input: JiraUpsertAgentSpaceInstructionInput;
|
|
178184
|
+
};
|
|
178168
178185
|
export type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
178169
178186
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
178170
178187
|
};
|