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.16 (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
joechung-msft committed Apr 14, 2019
1 parent c991e29 commit af259ee
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to the "vscode-logicapps" extension will be documented in th

## [Unreleased]

## [0.1.16] - 2019-04-12
### Changed
- Update designer version to 1.40408.1.3

## [0.1.15] - 2019-04-05
### Changed
- Update designer version to 1.40401.1.5
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions 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.15",
"version": "0.1.16",
"publisher": "ms-azuretools",
"icon": "resources/azLogicApps.png",
"aiKey": "b6385546-3be0-489c-a298-baccd6c152fb",
Expand Down Expand Up @@ -642,7 +642,7 @@
"@types/node": "^7.0.67",
"@types/request-promise-native": "^1.0.15",
"tslint": "^5.15.0",
"typescript": "^3.4.1",
"typescript": "^3.4.3",
"vsce": "^1.59.0",
"vscode": "^1.1.29"
},
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.40401.1.5085464.190404-1812";
public static DesignerVersion = "1.40408.1.310532.190411-1508";

public static SubscriptionContextValue = "azureextensionui.azureSubscription";

Expand Down
5 changes: 4 additions & 1 deletion src/utils/logic-app/designerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,9 @@ export function getWebviewContentForDesigner({ authorization, callbacks, definit
\`/subscriptions/\${options.subscriptionId}/providers/Microsoft.Web/locations/\${options.location}/managedApis/azureblob\`,
\`\${options.integrationServiceEnvironmentId}/managedApis/azureblob\`,
\`/subscriptions/\${options.subscriptionId}/providers/Microsoft.Web/locations/\${options.location}/managedApis/cognitiveservicestextanalytics\`,
\`\${options.integrationServiceEnvironmentId}/managedApis/cognitiveservicestextanalytics\`
\`\${options.integrationServiceEnvironmentId}/managedApis/cognitiveservicestextanalytics\`,
\`/subscriptions/\${options.subscriptionId}/providers/Microsoft.Web/locations/\${options.location}/managedApis/keyvault\`,
\`\${options.integrationServiceEnvironmentId}/managedApis/keyvault\`
]
: [
"connectionProviders/control",
Expand All @@ -387,6 +389,7 @@ export function getWebviewContentForDesigner({ authorization, callbacks, definit
\`/subscriptions/\${options.subscriptionId}/providers/Microsoft.Web/locations/\${options.location}/managedApis/office365\`,
\`/subscriptions/\${options.subscriptionId}/providers/Microsoft.Web/locations/\${options.location}/managedApis/azureblob\`,
\`/subscriptions/\${options.subscriptionId}/providers/Microsoft.Web/locations/\${options.location}/managedApis/cognitiveservicestextanalytics\`,
\`/subscriptions/\${options.subscriptionId}/providers/Microsoft.Web/locations/\${options.location}/managedApis/keyvault\`
];
const promotedConnectorsForTriggers = iseSupported && options.integrationServiceEnvironmentId
Expand Down

0 comments on commit af259ee

Please sign in to comment.