Prep for 0.8.0 release (#310)
* Fix mardown lint issues in changelog * Prep for 0.8.0
This commit is contained in:
Родитель
5310d083a6
Коммит
68ec159ee9
72
CHANGELOG.md
72
CHANGELOG.md
|
@ -1,67 +1,109 @@
|
|||
<!-- markdownlint-disable MD024 -->
|
||||
|
||||
# Change Log
|
||||
|
||||
All notable changes to the "azurefunctions" extension will be documented in this file.
|
||||
|
||||
## 0.7.0 - 2018-03-05
|
||||
## 0.8.0 - 2018-04-05
|
||||
|
||||
### Added
|
||||
|
||||
- Upload and download application settings
|
||||
- Prompt to automatically install the Azure Functions Core Tools when possible
|
||||
- "Report an issue" button on error dialogs that links to the GitHub repo
|
||||
- Subscription filter button next to Subscription nodes in the explorer
|
||||
- Deploy to Function App context menu action for Function Apps
|
||||
|
||||
### Changed
|
||||
|
||||
- JavaScript projects will default to runtime "beta" instead of "~1" on Mac/Linux. See [here](https://aka.ms/azfuncruntime) for more information.
|
||||
|
||||
### Fixed
|
||||
|
||||
- [Bugs fixed](https://github.com/Microsoft/vscode-azurefunctions/issues?q=is%3Aissue+milestone%3A%220.8.0%22+label%3Abug+is%3Aclosed)
|
||||
|
||||
## 0.7.0 - 2018-03-05
|
||||
|
||||
### Added
|
||||
|
||||
- Automatically detect projects created outside of VS Code and prompt to initialize
|
||||
- View/Delete Proxies
|
||||
- Remote Debug Java Function Apps (experimental)
|
||||
|
||||
### Fixed
|
||||
|
||||
- [Bugs fixed](https://github.com/Microsoft/vscode-azurefunctions/issues?q=is%3Aissue+milestone%3A%220.7.0%22+label%3Abug+is%3Aclosed)
|
||||
|
||||
## 0.6.1 - 2018-02-22
|
||||
|
||||
### Fixed
|
||||
|
||||
- Add backup templates in case there is no internet or in case the functions portal api changes
|
||||
|
||||
## 0.6.0 - 2018-02-13
|
||||
|
||||
### Added
|
||||
|
||||
- Stream logs from your remote Function Apps
|
||||
- Support projects in multi-root workspaces
|
||||
- Link to deployment tutorial
|
||||
|
||||
### [Fixed](https://github.com/Microsoft/vscode-azurefunctions/issues?q=is%3Aissue+milestone%3A%220.6.0%22+label%3Abug+is%3Aclosed)
|
||||
|
||||
- Show warning if your Azure Functions Core Tools version is out-of-date
|
||||
- Update Microsoft.Net.Sdk.Functions version so that C# functions work on Mac/Linux
|
||||
|
||||
## 0.5.1 - 2018-02-01
|
||||
|
||||
### [Fixed](https://github.com/Microsoft/vscode-azurefunctions/issues?q=is%3Aissue+milestone%3A%220.5.1%22+label%3Abug+is%3Aclosed)
|
||||
|
||||
- C# local debugging
|
||||
- Fixed "Cannot access the file because it is being used by another process." error by automatically restarting the functions host
|
||||
- Fixed project being built twice for every F5
|
||||
- Improved performance of 'azureFunctions.pickProcess' on Windows
|
||||
|
||||
## 0.5.0 - 2018-01-25
|
||||
|
||||
### Added
|
||||
|
||||
- Create, Debug, and Deploy a C# class library project
|
||||
- User settings for language/runtime/templateFilter now apply when creating a new project
|
||||
- Set these once and never select a language, runtime, or filter again
|
||||
- Set the language to something other than "JavaScript", "C#", or "Java" for preview support of other languages (for example, "C#Script")
|
||||
|
||||
### Fixed
|
||||
|
||||
- [Bugs fixed](https://github.com/Microsoft/vscode-azurefunctions/issues?q=is%3Aissue+milestone%3A%220.5.0%22+label%3Abug+is%3Aclosed)
|
||||
|
||||
### Known Issues
|
||||
|
||||
- The Functions host must be stopped after making changes and before rebuilding to C# functions [#185](https://github.com/Microsoft/vscode-azurefunctions/issues/185)
|
||||
- C# class library functions fail to run on Mac [#164](https://github.com/Microsoft/vscode-azurefunctions/issues/164)
|
||||
- C# script functions fail to attach on Windows [#180](https://github.com/Microsoft/vscode-azurefunctions/issues/180)
|
||||
|
||||
## 0.4.0 - 2017-12-15
|
||||
|
||||
### Added
|
||||
|
||||
- Copy HTTP Trigger Url
|
||||
- Change Deployment Source (Zip Deploy vs. Local Git Deploy)
|
||||
- Settings to control project language and runtime
|
||||
|
||||
### Fixed
|
||||
|
||||
- [Bugs fixed](https://github.com/Microsoft/vscode-azurefunctions/issues?q=is%3Aissue+milestone%3A%220.4.0%22+label%3Abug+is%3Aclosed)
|
||||
|
||||
## 0.3.1 - 2017-12-06
|
||||
|
||||
### Fixed
|
||||
|
||||
- JavaScript 'Verified' templates not displayed
|
||||
- Java templates not displayed
|
||||
|
||||
## 0.3.0 - 2017-12-01
|
||||
|
||||
### Added
|
||||
|
||||
- Java support
|
||||
- Create new project
|
||||
- Create new function
|
||||
|
@ -70,35 +112,49 @@ All notable changes to the "azurefunctions" extension will be documented in this
|
|||
- View and delete functions
|
||||
- View, add, edit, and delete Application Settings
|
||||
- 'Load more' for large number of resources
|
||||
|
||||
### Fixed
|
||||
|
||||
- [Bugs fixed](https://github.com/Microsoft/vscode-azurefunctions/issues?q=is%3Aissue+milestone%3A%220.3.0%22+label%3Abug+is%3Aclosed)
|
||||
|
||||
## 0.2.0 - 2017-11-10
|
||||
|
||||
### Added
|
||||
|
||||
- Improved 'Create new function'
|
||||
- All JavaScript templates listed in the Azure portal are now supported
|
||||
- The user will be prompted for function settings on creation
|
||||
- Added `azureFunctions.templateFilter` setting to control which templates are displayed (Verified, Core, or All)
|
||||
- Added 'Create' and 'Delete' commmands for Function Apps in Azure
|
||||
- Updated icons to match the Azure portal
|
||||
|
||||
### Removed
|
||||
|
||||
- Moved 'Deploy here as Zip' option from Function App nodes to the explorer menu bar
|
||||
|
||||
### Fixed
|
||||
|
||||
- [Bugs fixed](https://github.com/Microsoft/vscode-azurefunctions/issues?q=is%3Aissue+milestone%3A%220.2.0%22+label%3Abug+is%3Aclosed)
|
||||
|
||||
## 0.1.1 - 2017-11-01
|
||||
|
||||
### Fixed
|
||||
|
||||
- Show warning message that zip deploy is a destructive action
|
||||
- Leverage [new app service zipdeploy](https://github.com/projectkudu/kudu/wiki/Deploying-from-a-zip-file)
|
||||
|
||||
### Removed
|
||||
|
||||
- Zip Deploy no longer runs 'npm install'. It expects a ready-to-run app
|
||||
|
||||
## 0.1.0 - 2017-10-19
|
||||
|
||||
### Added
|
||||
* Create new project
|
||||
* Create new function from template
|
||||
* Debug function apps locally
|
||||
* View Azure Functions
|
||||
* Deploy to Azure Functions
|
||||
* Start, stop, and restart Azure Functions
|
||||
* JSON Intellisense for `function.json`, `host.json`, and `proxies.json`
|
||||
|
||||
- Create new project
|
||||
- Create new function from template
|
||||
- Debug function apps locally
|
||||
- View Azure Functions
|
||||
- Deploy to Azure Functions
|
||||
- Start, stop, and restart Azure Functions
|
||||
- JSON Intellisense for `function.json`, `host.json`, and `proxies.json`
|
||||
|
|
|
@ -35,6 +35,7 @@ to get started with the Azure Functions extension.
|
|||
* Debug Function projects locally
|
||||
* Deploy to Azure Function Apps
|
||||
* View, create, delete, start, stop, and restart Azure Function Apps
|
||||
* View, edit, upload, and download application settings
|
||||
* JSON Intellisense for `function.json`, `host.json`, and `proxies.json`
|
||||
* Stream logs from your remote Function Apps
|
||||
* Debug Java Function App on Azure (experimental)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-azurefunctions",
|
||||
"displayName": "Azure Functions",
|
||||
"description": "%extension.description%",
|
||||
"version": "0.7.0",
|
||||
"version": "0.8.0",
|
||||
"publisher": "ms-azuretools",
|
||||
"icon": "resources/azure-functions.png",
|
||||
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
|
||||
|
|
Загрузка…
Ссылка в новой задаче