Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Update version to 0.1.13 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
joechung-msft authored Mar 21, 2019
1 parent b7c666f commit 92fff0a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to the "vscode-logicapps" extension will be documented in th

## [Unreleased]

## [0.1.13] - 2019-03-21
### Changed
- Update designer version to 1.40318.1.2

### Fixed
- #79 - Include $connections parameter when updating Logic Apps

## [0.1.12] - 2019-03-15
### Changed
- Update designer version to 1.40311.1.4
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-logicapps",
"displayName": "Azure Logic Apps",
"description": "%extension.description%",
"version": "0.1.12",
"version": "0.1.13",
"publisher": "ms-azuretools",
"icon": "resources/azLogicApps.png",
"aiKey": "b6385546-3be0-489c-a298-baccd6c152fb",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/

export class Constants {
public static DesignerVersion = "1.40311.1.48323.190313-1732";
public static DesignerVersion = "1.40318.1.23118.190319-1500";

public static SubscriptionContextValue = "azureextensionui.azureSubscription";

Expand Down
11 changes: 5 additions & 6 deletions src/utils/logic-app/designerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,10 @@ export function getWebviewContentForDesigner({ authorization, callbacks, definit
});
};
const operationManifestServiceFactory = () => {
return new designercore.LogicAppsOperationManifestService();
};
const workflowServiceFactory = analytics => {
return new designercore.LogicAppsWorkflowService({
analytics,
Expand Down Expand Up @@ -444,23 +448,17 @@ export function getWebviewContentForDesigner({ authorization, callbacks, definit
DISABLE_TOKEN_PICKER_COMPACT_MODE: true,
FX_TOKEN: true,
FX_TOKEN_FOR_CONDITION: true,
GATEWAY_FOR_CONNECTION: true,
HTML_EDITOR: true,
INITIALIZE_DYNAMIC_CONTENT_ASYNC: true,
NEW_CONDITION_RULES_BUILDER: true,
NEW_RECOMMENDATION_CARD_WITH_FOR_YOU: true,
NEW_RECOMMENDATION_CARD_WITH_MODULES: true,
NEW_SCHEMA_EDITOR: true,
RAW_MODE: true,
SHOW_CONNECTION_NAME: true,
SHOW_INSERT_ACTION_BUTTON: true,
SHOW_PARENT_OBJECT_FOR_OUTPUTS: true,
SHOW_SOFT_LANDING_TIPS: true,
SHOW_TOKENS_FOR_FOREACH: !!options.featureFlags && !!options.featureFlags.showforeachtokens,
SHOW_TRIGGER_RECURRENCE: true,
SHOW_VARIABLE_ACTIONS: true,
STATIC_RESULT: false,
SUPPORT_NESTED_FOREACH_UI: true,
SUPPORT_PAN_AND_ZOOM: true,
SUPPORT_PEEK: true,
TOKEN_COPY_PASTE: true,
Expand Down Expand Up @@ -531,6 +529,7 @@ export function getWebviewContentForDesigner({ authorization, callbacks, definit
identityServiceFactory,
locale: $locale,
oauthService,
operationManifestServiceFactory,
prefetchedData: {
connectionProviders: !!options.connectionProviders ? JSON.parse(options.connectionProviders) : undefined
},
Expand Down
7 changes: 5 additions & 2 deletions src/utils/logic-app/monitoringViewUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,10 @@ export function getWebviewContent({ authorization, location, resourceGroupName,
});
};
const operationManifestServiceFactory = () => {
return new designercore.LogicAppsOperationManifestService();
};
const runServiceFactory = analytics => {
return new designercore.LogicAppsRunService({
analytics,
Expand Down Expand Up @@ -359,9 +363,7 @@ export function getWebviewContent({ authorization, location, resourceGroupName,
EXPRESSION_TRACE: true,
FX_TOKEN: true,
FX_TOKEN_FOR_CONDITION: true,
INITIALIZE_DYNAMIC_CONTENT_ASYNC: true,
LOAD_RUN_ACTION_INPUTS_OUTPUTS_ASYNC: true,
SHOW_VARIABLE_ACTIONS: true,
SHOW_WEBHOOK_REQUEST_HISTORY: true,
SUPPORT_PAN_AND_ZOOM: true,
USE_NEW_EXPRESSION_PARSER: true
Expand All @@ -375,6 +377,7 @@ export function getWebviewContent({ authorization, location, resourceGroupName,
hostVersion: options.extensionVersion,
identifier: "",
oauthService,
operationManifestServiceFactory,
runInstanceServiceFactory,
runServiceFactory,
startTelemetryPublish: true,
Expand Down

0 comments on commit 92fff0a

Please sign in to comment.