Skip to content

Commit

Permalink
v1.7.0 App Centric Release prep (#3187)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweininger authored May 23, 2022
1 parent 9f72c0c commit 82f1b23
Show file tree
Hide file tree
Showing 15 changed files with 251 additions and 215 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 1.7.0 - 2022-05-24

We've made some large design changes to the Azure extensions for VS Code. [View App Centric release notes](https://aka.ms/AzCode/AppCentric)

### Changed
- Add Execute Step in createFunction API [#3150](https://github.com/microsoft/vscode-azurefunctions/pull/3150)

### Fixed
- Fix "Create Project" flow losing options [#3116](https://github.com/microsoft/vscode-azurefunctions/pull/3116)

## 1.6.2 - 2022-04-13
### Fixed
- Zip deploy fails with ECONNRESET or 400 Bad Request on VS Code versions `>=1.66.0` [#2844](https://github.com/microsoft/vscode-azurefunctions/issues/2844)
Expand Down
423 changes: 219 additions & 204 deletions NOTICE.html

Large diffs are not rendered by default.

27 changes: 19 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Use the Azure Functions extension to quickly create, debug, manage, and deploy s

1. Select the button to create a new project in the Azure Functions explorer

![createNewProject](resources/readme/createNewProject.png)
![createNewProject](resources/readme/createFunction.png)

1. Select a new, _empty_ folder to contain your project
1. Select your desired programming language
Expand All @@ -38,7 +38,7 @@ This extension integrates with the [Azure Functions Core Tools](https://docs.mic
> TIP: The "Terminal" panel should pop up automatically and you know your project is running if you see output
1. Expand your _local project_ in the Azure Functions explorer to copy your function's url

![debug2](resources/readme/debug2.png)
![debug2](resources/readme/copyFunctionUrl.png)

1. Navigate to a browser, paste the url, and append `?name=world`
> TIP: Your url should look like this: `http://localhost:7071/api/HttpTrigger1?name=world`
Expand All @@ -51,21 +51,32 @@ This extension integrates with the [Azure Functions Core Tools](https://docs.mic

1. Sign in to your Azure Account by clicking "Sign in to Azure..." in the Azure Functions explorer
> If you don't already have an Azure Account, click "Create a Free Azure Account"
1. Select the button to deploy
1. Select the 'plus' button to open the "Create Resource" menu

![deploy](resources/readme/deploy.png)
![Create resource](resources/readme/deploy/createResource.png)

1. Choose "Create Function App in Azure..."

![Create Function App in Azure](resources/readme/deploy/createFunctionApp.png)

1. Choose "Create new Function App in Azure..."
1. Enter a globally unique name for your Function App
1. If multiple versions of your language's runtime are supported (i.e. Node.js 10 and Node.js 12), select your desired version (the latest is recommended)
1. Select a location
1. Wait for deployment to complete. Progress will be shown in the bottom right corner of your window
1. Wait for your Function App to be created. Progress will be shown in the Activity Log panel

![deploy2](resources/readme/deploy/activityLog.png)

1. Once your Function App has been created, reveal the resource in the Resources view.

![Finished creating Function App](resources/readme/deploy/createComplete.png)

1. Right click your Function App and select "Deploy to Function App"

![deploy2](resources/readme/deploy2.png)
![Deploy to Function App](resources/readme/deploy/deploy.png)

1. Once deployment is complete, expand your _subscription_ in the Azure Functions explorer to copy your deployed function's url

![deploy3](resources/readme/deploy3.png)
![deploy3](resources/readme/deploy/copyFunctionUrl.png)

1. Navigate to a browser, paste the url, and append `?name=world`
> TIP: Your url should look like this: `https://<function app name>.azurewebsites.net/api/HttpTrigger1?name=world`
Expand Down
4 changes: 2 additions & 2 deletions 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-azurefunctions",
"displayName": "Azure Functions",
"description": "%azureFunctions.description%",
"version": "1.6.3-alpha.15",
"version": "1.7.0",
"publisher": "ms-azuretools",
"icon": "resources/azure-functions.png",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
Expand Down
Binary file added resources/readme/copyFunctionUrl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/createFunction.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed resources/readme/createNewProject.png
Binary file not shown.
Binary file removed resources/readme/debug2.png
Binary file not shown.
Binary file added resources/readme/deploy/activityLog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/deploy/copyFunctionUrl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/deploy/createComplete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/deploy/createFunctionApp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/deploy/createResource.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/readme/deploy/deploy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 82f1b23

Please sign in to comment.