@forge/cli-shared 6.10.0-next.7 → 6.10.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,31 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b05a860: changes for forge version bulk-upgrade list
|
|
8
|
+
- eb3092a: Adding xls-forge-cli-deprecated-runtimes dynamic config
|
|
9
|
+
- 08c43c1: The command should cancel the upgrade that is in progress (currently there is only one; if we later allow multiple simultaneous upgrades, we’ll need to change this), after asking for the user to confirm the specific upgrade that is being cancelled.
|
|
10
|
+
- e8f612a: forge version bulk-upgrade command provides partners with the ability to see which versions they have, the number of installs on each version and whether that version can be moved to a more recent version.
|
|
11
|
+
- 3e82523: Added CLI warnings
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- f074f67: Add build option to use build tags in forge deploy
|
|
16
|
+
- 9e47c9a: Throw error if using environment variables for forge build
|
|
17
|
+
- aecaae3: Adding skeleton for build command
|
|
18
|
+
- Updated dependencies [6c0dcee]
|
|
19
|
+
- Updated dependencies [298487b]
|
|
20
|
+
- Updated dependencies [615d023]
|
|
21
|
+
- @forge/manifest@9.2.0
|
|
22
|
+
|
|
23
|
+
## 6.10.0-next.8
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- eb3092a: Adding xls-forge-cli-deprecated-runtimes dynamic config
|
|
28
|
+
|
|
3
29
|
## 6.10.0-next.7
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
|
@@ -66816,7 +66816,6 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
66816
66816
|
favourites?: Maybe<JiraProjectConnection>;
|
|
66817
66817
|
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
66818
66818
|
id: Scalars['ID']['output'];
|
|
66819
|
-
more?: Maybe<JiraProjectConnection>;
|
|
66820
66819
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
66821
66820
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
66822
66821
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -66828,10 +66827,6 @@ export declare type JiraProjectsSidebarMenuFavouritesArgs = {
|
|
|
66828
66827
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66829
66828
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
66830
66829
|
};
|
|
66831
|
-
export declare type JiraProjectsSidebarMenuMoreArgs = {
|
|
66832
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
66833
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66834
|
-
};
|
|
66835
66830
|
export declare type JiraProjectsSidebarMenuMoreFavouritesArgs = {
|
|
66836
66831
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66837
66832
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -72233,6 +72228,7 @@ export declare type JiraUserPreferences = {
|
|
|
72233
72228
|
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
72234
72229
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
72235
72230
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
72231
|
+
isIssueViewProactiveCommentSummariesFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
72236
72232
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
72237
72233
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
72238
72234
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -79932,6 +79928,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
79932
79928
|
updateMovePositionsChange: MercuryUpdateChangePayload;
|
|
79933
79929
|
updateRequestFundsChange: MercuryUpdateChangePayload;
|
|
79934
79930
|
updateRequestPositionsChange: MercuryUpdateChangePayload;
|
|
79931
|
+
updateStrategicEventBudget?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
79935
79932
|
updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
|
|
79936
79933
|
updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
79937
79934
|
updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
@@ -80004,6 +80001,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateRequestFundsChangeArg
|
|
|
80004
80001
|
export declare type MercuryStrategicEventsMutationApiUpdateRequestPositionsChangeArgs = {
|
|
80005
80002
|
input: MercuryUpdateRequestPositionsChangeInput;
|
|
80006
80003
|
};
|
|
80004
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventBudgetArgs = {
|
|
80005
|
+
input: MercuryUpdateStrategicEventBudgetInput;
|
|
80006
|
+
};
|
|
80007
80007
|
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
|
|
80008
80008
|
input: MercuryUpdateStrategicEventCommentInput;
|
|
80009
80009
|
};
|
|
@@ -80336,6 +80336,10 @@ export declare type MercuryUpdateRequestPositionsChangeInput = {
|
|
|
80336
80336
|
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
80337
80337
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
80338
80338
|
};
|
|
80339
|
+
export declare type MercuryUpdateStrategicEventBudgetInput = {
|
|
80340
|
+
budget?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
80341
|
+
id: Scalars['ID']['input'];
|
|
80342
|
+
};
|
|
80339
80343
|
export declare type MercuryUpdateStrategicEventCommentInput = {
|
|
80340
80344
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
80341
80345
|
content: Scalars['String']['input'];
|
|
@@ -85108,7 +85112,6 @@ export declare type PolarisValueRule = {
|
|
|
85108
85112
|
};
|
|
85109
85113
|
export declare type PolarisView = {
|
|
85110
85114
|
__typename?: 'PolarisView';
|
|
85111
|
-
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
85112
85115
|
comments?: Maybe<Array<PolarisComment>>;
|
|
85113
85116
|
containsArchived: Scalars['Boolean']['output'];
|
|
85114
85117
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -93247,6 +93250,10 @@ export declare type ShepherdDspListMetadata = {
|
|
|
93247
93250
|
isSwitched?: Maybe<Scalars['Boolean']['output']>;
|
|
93248
93251
|
type?: Maybe<Scalars['String']['output']>;
|
|
93249
93252
|
};
|
|
93253
|
+
export declare type ShepherdEnabledWorkspaceByUserContext = {
|
|
93254
|
+
__typename?: 'ShepherdEnabledWorkspaceByUserContext';
|
|
93255
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
93256
|
+
};
|
|
93250
93257
|
export declare type ShepherdExclusionContentInfo = {
|
|
93251
93258
|
__typename?: 'ShepherdExclusionContentInfo';
|
|
93252
93259
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -93419,6 +93426,7 @@ export declare type ShepherdQuery = {
|
|
|
93419
93426
|
__typename?: 'ShepherdQuery';
|
|
93420
93427
|
alert?: Maybe<ShepherdAlertQueries>;
|
|
93421
93428
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
93429
|
+
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
93422
93430
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
93423
93431
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
93424
93432
|
shepherdActor?: Maybe<ShepherdActorResult>;
|