Skip to content

Commit

Permalink
releast vscode 1.0.4 (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
annaji-msft authored Jun 6, 2022
1 parent 2e5c92f commit 124ed98
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 8 deletions.
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change Log
All notable changes to the "Azure Api Managment VS Code" extension will be documented in this file.

All notable changes to the "Azure Api Management VS Code" extension will be documented in this file.

## [1.0.4 - 2022-06-05]

- Update to latest API Management devops resource kit
- Authorization Manager feature preview.
- Authorization Providers, Authorizations, Access Policies Management

## [1.0.3 - 2021-07-08]

- Provide Subscription Management Support
- Support importing Function App with Swagger file
- Minor bug fixes.

## [1.0.2 - 2021-04-13]

- Add Self-hosted gateway debugging
- Added policy support for Dapr
- Minor bug fixes.

## [1.0.0 - 2021-03-01]

- Migrate to new Azure VScode Tools
- Update to latest Azure API Management SDKs

## [0.1.8 - 2020-12-10]

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ All you need is an Azure Subscription to get started. If you don't have one, [cl
- API Filter
- Policy Debugging on Self-Hosted Gateways
- Manage User Subscriptions
- Manage Authorization Providers, Authorizations and Access Policies

## Create an API Management instance using defaults

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@
{
"command": "azureApiManagement.Refresh",
"when": "view == azureApiManagementExplorer && viewItem == azureApiManagementAuthorizationProviders",
"group": "1@2"
"group": "2@1"
},
{
"command": "azureApiManagement.copyAuthorizationProviderRedirectUrl",
Expand All @@ -726,7 +726,7 @@
{
"command": "azureApiManagement.deleteAuthorizationProvider",
"when": "view == azureApiManagementExplorer && viewItem == azureApiManagementAuthorizationProvider",
"group": "1@2"
"group": "3@1"
},
{
"command": "azureApiManagement.createAuthorization",
Expand All @@ -736,7 +736,7 @@
{
"command": "azureApiManagement.Refresh",
"when": "view == azureApiManagementExplorer && viewItem == azureApiManagementAuthorizations",
"group": "1@2"
"group": "2@1"
},
{
"command": "azureApiManagement.authorizeAuthorization",
Expand All @@ -751,7 +751,7 @@
{
"command": "azureApiManagement.deleteAuthorization",
"when": "view == azureApiManagementExplorer && viewItem == azureApiManagementAuthorization",
"group": "1@3"
"group": "3@1"
},
{
"command": "azureApiManagement.createAuthorizationAccessPolicy",
Expand All @@ -761,12 +761,12 @@
{
"command": "azureApiManagement.Refresh",
"when": "view == azureApiManagementExplorer && viewItem == azureApiManagementAuthorizationAccessPolicies",
"group": "1@2"
"group": "2@1"
},
{
"command": "azureApiManagement.deleteAuthorizationAccessPolicy",
"when": "view == azureApiManagementExplorer && viewItem == azureApiManagementAuthorizationAccessPolicy",
"group": "1@1"
"group": "3@1"
}
]
},
Expand Down
5 changes: 4 additions & 1 deletion src/explorer/ServiceTreeItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,16 @@ export class ServiceTreeItem extends AzureParentTreeItem<IServiceTreeRoot> {
this.productsTreeItem = new ProductsTreeItem(this);
this.namedValuesTreeItem = new NamedValuesTreeItem(this);
this.subscriptionsTreeItem = new SubscriptionsTreeItem(this);
this.authorizationProvidersTreeItem = new AuthorizationProvidersTreeItem(this);
//parent.iconPath =

const sku = nonNullValue(this.apiManagementService.sku.name);
if (sku === 'Developer' || sku === 'Premium') {
this.gatewaysTreeItem = new GatewaysTreeItem(this);
}

if (sku !== 'Consumption') {
this.authorizationProvidersTreeItem = new AuthorizationProvidersTreeItem(this);
}
}

public static createEnvironmentTreeItem(parent: AzureParentTreeItem, apiManagementClient: ApiManagementClient, apiManagementService: ApiManagementModels.ApiManagementServiceResource): ServiceTreeItem {
Expand Down

0 comments on commit 124ed98

Please sign in to comment.