diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aab01e..d3cc2a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,17 @@ All notable changes to the "Azure Api Management VS Code" extension will be documented in this file. -## [1.0.9 - 2025-01-16] + +## 1.0.9 + +### Updates - Update api-version to 2022-08-01 - Upgrade deprecated packages used in the extension +### Removals +- Remove the experimental Scaffold Azure Functions functionality due to deprecated packages, ensuring better stability for future updates + ## [1.0.8 - 2023-09-12] - Fixed loading API Management instances when expanding an Azure subscription diff --git a/README.md b/README.md index b7bb4ba..6709d35 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ All you need is an Azure Subscription to get started. If you don't have one, [cl - Import App Service WebApp - Manage Self-Hosted Gateways - Policy Debugging -- Scaffold Azure Functions - Show diffs against last saved version - Switch / Release API Revisions - API Filter @@ -82,9 +81,6 @@ Please note: only JSON format is supported currently. ## Debug Policy ![debugPolicy](resources/debug.gif) -## Scaffold Azure Functions -![generateFunctions](resources/stencil.gif) - ## Show diffs against last saved version ![diffing](resources/diffing.gif) diff --git a/package.json b/package.json index 729795e..98d31fa 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,6 @@ "onCommand:azureApiManagement.generateKubernetesDeployment", "onCommand:azureApiManagement.generateNewGatewayToken", "onCommand:azureApiManagement.debugPolicy", - "onCommand:azureApiManagement.generateFunctions", "onCommand:azureApiManagement.revisions", "onCommand:azureApiManagement.setCustomHostName", "onCommand:azureApiManagement.createSubscription", @@ -375,11 +374,6 @@ "title": "%azureApiManagement.generateNewGatewayToken%", "category": "Azure API Management" }, - { - "command": "azureApiManagement.generateFunctions", - "title": "%azureApiManagement.generateFunctions%", - "category": "Azure API Management" - }, { "command": "azureApiManagement.setCustomHostName", "title": "%azureApiManagement.setCustomHostName%", @@ -603,11 +597,6 @@ "when": "view == azureApiManagementExplorer && viewItem == azureApiManagementApi", "group": "2@2" }, - { - "command": "azureApiManagement.generateFunctions", - "when": "view == azureApiManagementExplorer && viewItem == azureApiManagementApi && config.azureApiManagement.scaffoldAzureFunctions == true", - "group": "3@1" - }, { "command": "azureApiManagement.extractApi", "when": "view == azureApiManagementExplorer && viewItem == azureApiManagementApi", @@ -793,11 +782,6 @@ "type": "boolean", "default": false, "description": "%azureApiManagement.advancedPolicyAuthoringExperience%" - }, - "azureApiManagement.scaffoldAzureFunctions": { - "type": "boolean", - "default": true, - "description": "%azureApiManagement.scaffoldAzureFunctions%" } } } diff --git a/package.nls.json b/package.nls.json index 0ddb009..9edc71c 100644 --- a/package.nls.json +++ b/package.nls.json @@ -41,8 +41,6 @@ "azureApiManagement.generateKubernetesDeployment": "Generate Kubernetes Deployment File", "azureApiManagement.generateNewGatewayToken": "Generate New Gateway Token", "azureApiManagement.debugPolicy": "Start Policy Debugging", - "azureApiManagement.generateFunctions": "Scaffold Azure Functions", - "azureApiManagement.scaffoldAzureFunctions": "(Experimental Feature) Enables scaffolding Azure Functions from API definition.", "azureApiManagement.revisions": "API Revisions", "azureApiManagement.setCustomHostName": "Select Gateway Host Name", "azureApiManagement.createSubscription": "Create a new Subscription", diff --git a/resources/stencil.gif b/resources/stencil.gif deleted file mode 100644 index a3b2097..0000000 Binary files a/resources/stencil.gif and /dev/null differ