@forge/cli-shared 6.10.0-next.8 → 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,25 @@
|
|
|
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
|
+
|
|
3
23
|
## 6.10.0-next.8
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
@@ -79928,6 +79928,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
79928
79928
|
updateMovePositionsChange: MercuryUpdateChangePayload;
|
|
79929
79929
|
updateRequestFundsChange: MercuryUpdateChangePayload;
|
|
79930
79930
|
updateRequestPositionsChange: MercuryUpdateChangePayload;
|
|
79931
|
+
updateStrategicEventBudget?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
79931
79932
|
updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
|
|
79932
79933
|
updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
79933
79934
|
updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
@@ -80000,6 +80001,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateRequestFundsChangeArg
|
|
|
80000
80001
|
export declare type MercuryStrategicEventsMutationApiUpdateRequestPositionsChangeArgs = {
|
|
80001
80002
|
input: MercuryUpdateRequestPositionsChangeInput;
|
|
80002
80003
|
};
|
|
80004
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventBudgetArgs = {
|
|
80005
|
+
input: MercuryUpdateStrategicEventBudgetInput;
|
|
80006
|
+
};
|
|
80003
80007
|
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
|
|
80004
80008
|
input: MercuryUpdateStrategicEventCommentInput;
|
|
80005
80009
|
};
|
|
@@ -80332,6 +80336,10 @@ export declare type MercuryUpdateRequestPositionsChangeInput = {
|
|
|
80332
80336
|
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
80333
80337
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
80334
80338
|
};
|
|
80339
|
+
export declare type MercuryUpdateStrategicEventBudgetInput = {
|
|
80340
|
+
budget?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
80341
|
+
id: Scalars['ID']['input'];
|
|
80342
|
+
};
|
|
80335
80343
|
export declare type MercuryUpdateStrategicEventCommentInput = {
|
|
80336
80344
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
80337
80345
|
content: Scalars['String']['input'];
|
|
@@ -85104,7 +85112,6 @@ export declare type PolarisValueRule = {
|
|
|
85104
85112
|
};
|
|
85105
85113
|
export declare type PolarisView = {
|
|
85106
85114
|
__typename?: 'PolarisView';
|
|
85107
|
-
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
85108
85115
|
comments?: Maybe<Array<PolarisComment>>;
|
|
85109
85116
|
containsArchived: Scalars['Boolean']['output'];
|
|
85110
85117
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -93243,6 +93250,10 @@ export declare type ShepherdDspListMetadata = {
|
|
|
93243
93250
|
isSwitched?: Maybe<Scalars['Boolean']['output']>;
|
|
93244
93251
|
type?: Maybe<Scalars['String']['output']>;
|
|
93245
93252
|
};
|
|
93253
|
+
export declare type ShepherdEnabledWorkspaceByUserContext = {
|
|
93254
|
+
__typename?: 'ShepherdEnabledWorkspaceByUserContext';
|
|
93255
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
93256
|
+
};
|
|
93246
93257
|
export declare type ShepherdExclusionContentInfo = {
|
|
93247
93258
|
__typename?: 'ShepherdExclusionContentInfo';
|
|
93248
93259
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -93415,6 +93426,7 @@ export declare type ShepherdQuery = {
|
|
|
93415
93426
|
__typename?: 'ShepherdQuery';
|
|
93416
93427
|
alert?: Maybe<ShepherdAlertQueries>;
|
|
93417
93428
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
93429
|
+
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
93418
93430
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
93419
93431
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
93420
93432
|
shepherdActor?: Maybe<ShepherdActorResult>;
|