vscode azureappservice changelog - microsoft/vscode-azuretools GitHub Wiki
Auto-generated by this tool. Last updated on 2021-05-12.
v0.80.2 - 2021-05-12
Add extended property to app service plans
v0.80.1 - 2021-05-12
Filter app service plans by selected location
v0.80.0 - 2021-05-10
Fixed
- Use publishing credentials with kudu client if necessary
Changed
IActionContext
must be passed in to a few more functions
v0.79.0 - 2021-05-07
Changed
- Update dependency of "vscode-azureextensionui" package to "0.43.0"
v0.78.0 - 2021-05-06
Added
- Support "workflow" app kind
- Display zip ignored files in output during deploy
- Recommended skus now show up even in advanced create
- Added app service specific location step
Changed
- Update dependency of "vscode-azureextensionui" package to "0.42.0"
v0.77.0 - 2021-05-03
Changed
- Moved
SiteClient.getKuduClient
to it's own functioncreateKuduClient
- Removed
ISimplifiedSiteClient
- useSiteClient
instead - Removed functions-specific app setting validation on deploy from this package - it will go in the Functions extension instead
v0.76.1 - 2021-04-07
Icons updated to leverage VS Code's product icon theme where possible
v0.76.0 - 2021-03-30
Changed
Update dependency of "vscode-azureextensionui" package to "0.41.0"
v0.75.1 - 2021-03-29
Removes request
package entirely (which is deprecated). startStreamingLogs
is now implemented using createGenericClient
/ @azure/ms-rest-js
.
v0.75.0 - 2021-03-24
- Only execute preDeployTask if it's not already active
Changed
- Update dependency of "vscode-azureextensionui" package to "0.40.0"
- Minimum version of VS Code is now 1.53.0
v0.74.0 - 2021-03-03
Changed
Switch from "archiver" to "yazl" to hopefully fix zip deploy on WSL/Codespaces
v0.73.1 - 2021-03-01
Add simplified sku prompt for basic create
v0.73.0 - 2021-02-08
Changed
Update dependency of "vscode-azureextensionui" package to "0.39.0"
v0.72.2 - 2021-01-07
Updates some packages to fix axios dependency vulnerability.
v0.72.1 - 2020-12-10
Temporarily revert change to only execute task if not active
v0.72.0 - 2020-12-04
Update dependency of "vscode-azureextensionui" package to "0.38.0"
v0.71.1 - 2020-12-01
Check if preDeployTask/postDeployTask is already running before executing it
v0.71.0 - 2020-11-30
- Updates dependency of "vscode-azureextensionui" package to "0.37.0", leveraging
ui
onIActionContext
v0.70.0 - 2020-10-27
Fixed
- Removed some duplicate/unformatted logs from end of deploy output
Changed
putFile
now requires parameterdata
to bestring | ArrayBuffer
instead ofReadable | string
v0.69.0 - 2020-10-26
Removed web app-specific runtime logic, including SiteRuntimeStep
, LinuxRuntimes
and IAppServiceWizardContext.newSiteRuntime
v0.68.1 - 2020-10-22
Fix tryGetAppServicePlan
returning an error instead of undefined for certain error codes
v0.68.0 - 2020-10-13
Added
- Lazy load of
@azure
dependencies to improve startup time.
Changed
setLocationsTask
is now async instead of sync
v0.67.1 - 2020-10-05
- Switches
vscode-azureappservice
frommoment
to the much lighter-weightdayjs
v0.67.0 - 2020-10-01
Consume the latest version of the UI package.
NOTE: If consuming this version, it's probably safest to make sure all other dependencies are also using the same version of vscode-azureextensionui
.
v0.66.2 - 2020-09-10
- Fix storage deploy when AzureWebJobsStorage doesn't have EndpointSuffix
v0.66.1 - 2020-08-20
Fix handling of 'ResourceNotFound' error for "@azure/arm-appservice" package
v0.66.0 - 2020-08-05
Changed
- Use v0.35.0 of vscode-azureextensionui package
v0.65.0 - 2020-07-31
Changed
- Update azure dependencies to use azure-sdk-for-js
IMPORTANT NOTE: This requires v0.9.0 of the Azure Account extension, which requires v1.48.0 of VS Code (Insiders-only at the time of this release). See vscode-azure-account#140 or #510 for more information.
v0.64.1 - 2020-07-29
Changed
- Make app setting names/value strings consistent with each other
v0.64.0 - 2020-07-15
Changed
Pass tree
as parameter to getDeployNode
instead of on ext
v0.63.0 - 2020-07-02
Added
- Support viewing files for Linux Consumption function apps
getDeployNode
: Converts the args passed in by VS Code and any relevant settings into the node used to deployshowDeployConfirmation
: Prompts the user to make sure they want to deploy, with a 'Reset Default' button if the node was retrieved from settings
Changed
IDeployContext
now requires deploy pathsregisterAppServiceExtensionVariables
now requires atree
IFileResult
was renamed toISiteFile
v0.62.4 - 2020-06-30
- Fix local git deploy for Trial apps when committing
- Change wording for
getDeployFsPath
to make sense to all deploy scenarios instead of just Zip deploy - Fix slot name length validation
v0.62.3 - 2020-06-25
- Add ability to hide certain app settings from being shown as children of the app settings tree item
v0.62.2 - 2020-06-18
For localGitDeploy
when the commit
option is true
:
* don't show the uncommitted changes popup
* stage changes automatically
v0.62.1 - 2020-06-18
- Use simple-git version 1.132.0 instead of 2.6.0
v0.62.0 - 2020-06-16
- Combine
IFilesClient
andIDeploymentsClient
intoISimplifiedSiteClient
v0.61.5 - 2020-06-15
Fixed zip "stream" deploy (added in v0.61.4) not working for larger zips
v0.61.4 - 2020-06-15
No longer writes zip file to disk when deploying
v0.61.3 - 2020-06-12
- Encode publishingUserName and publishingPassword in the remote url for local git deploy
- AppSettingsTreeItem and AppSettingTreeItem context values can change based on support for slots.
v0.61.2 - 2020-06-09
IFilesClient
now supports log streaming
v0.61.1 - 2020-06-09
- Bump version of
archiver
used during zip deploy
v0.61.0 - 2020-05-29
These changes are all with the goal to support trial apps in the vscode-azureappservice extension.
- Make tree items generic in order to support scenarios where no subscription is available.
- New interfaces
IAppSettingsClient
,IDeploymentsClient
, andIFilesClient
. These serve to break up the dependence on SiteClient. - Separated commands from tree items.
v0.60.1 - 2020-05-20
- Ping app before starting tunnel proxy to prevent error "App is started, but port is unreachable"
- Improve messages when deleting app
v0.60.0 - 2020-05-14
Bumped minimum version of VS Code to 1.40.0 and Node.js to 12.0.0
v0.59.3 - 2020-05-13
- Fixed output when creating app insights resource
- Don't show "Report Issue" for linux consumption local git error
- Fixed load more when connecting to GitHub
v0.59.2 - 2020-05-12
Track size of deployed content in telemetry
v0.59.1 - 2020-05-11
Added
- Show logs for long runnings commands when deploying to app service
- Better detect when a deployment has failed
v0.59.0 - 2020-05-06
Bump dependency on ui package to ^0.32.0
v0.58.1 - 2020-05-05
Use any
instead of unknown
for registerSiteCommand
v0.58.0 - 2020-05-04
Bump dependency on ui package to ^0.31.1
v0.57.7 - 2020-04-30
- Bump dependency on ui package
v0.57.6 - 2020-04-06
Added
- Add azurewebsites placeholder to site name prompt
- Show log stream tree item even on error
v0.57.5 - 2020-04-03
Fixed
- runPreDeployTask failed to detect the task had ended
v0.57.4 - 2020-04-01
Added
- Provide a workaround when md5 validation isn't working for storage account deploy
v0.57.3 - 2020-03-31
Added
- Support for postDeployTask
- Show "Deployment successful" in output after storage account deploy
v0.57.2 - 2020-03-25
Changed
- Update dependency
fs-extra
to^8.0.0
v0.57.1 - 2020-03-02
Removed
callWithMaskHandling
has been moved to the ui package
v0.57.0 - 2020-02-27
Fixed
- Default maximum worker count on elastic premium plans to 20
- Ignore "Log not found" errors
Changed
DeploymentTreeItem.viewDeploymentLogs
now needsIActionContext
passed ingetDeployFsPath
now needsIActionContext
passed ingetDeployFsPath
enforces the path being open in a workspace
v0.56.0 - 2020-02-21
Added
- Allow users to cancel remote debugging
Changed
- Remote debugging functions now require a cancellation token to be passed in
v0.55.2 - 2020-02-18
Added
- Refactor sync triggers logic and add ability to stop app before deploy
v0.55.1 - 2020-02-14
Fixed
- Verify md5 hash during storage account deploy
- Prevent users from configuring linux consumption for local git
v0.55.0 - 2020-02-07
Added
registerSiteCommand
, which will show a custom troubleshooting error for 502/503 errors
Changed
DeploymentTreeItem
now expects a commandext.prefix
+viewDeploymentLogs
to be registered for it's click action
v0.54.2 - 2020-01-29
Added
- Improve validation of name when creating a function app or web app
- Handle deployment message as JSON in DeploymentTreeItem
v0.54.0 - 2019-12-04
Added
- Updated UI Extension to in dependencies
v0.53.0 - 2019-12-04
Changed
- Removed
SiteClient.getFunctionsAdminToken
(UselistHostKeys
instead) - Removed
functionsAdminRequest
v0.52.1 - 2019-11-20
Fixed
- Don't remove CONTENT* settings for Linux Premium
- Improve retry logic for getLogEntry
v0.52.0 - 2019-11-05
Removed
SiteCreateStep
SiteHostingPlanStep
v0.51.4 - 2019-10-31
Fixed
- Show better message when viewing files on Linux Consumption
v0.51.3 - 2019-10-30
Fixed
- Remove test error message from deploy
v0.51.2 - 2019-10-30
Fixed
- Don't try to sync triggers if function app is stopped
v0.51.1 - 2019-10-30
Fixed
- Fixed spelling of read-only to be consistent
v0.51.0 - 2019-10-24
Added
- Support for Python remote debugging
v0.50.0 - 2019-10-17
Added
- File and folder tree items
Changed
- Extension prefix must be specified when registering extension variables
- Rather than pass in full command ids (i.e. "appService.showOutputChannel"), the prefix will be determined from
ext.prefix
and the suffix will be defined in this package
v0.49.0 - 2019-10-10
Fixed
- Allow elastic premium plans on linux
- Correctly filter locations and existing plans for elastic premium
v0.48.1 - 2019-10-09
Fixed
- Sync triggers more often for after function app deploy
- Include subfolders of a symlinked folder
- Fix finding preDeployTask with special characters
- Make elastic premium plan more discoverable
- Render Linux runtimes properly when creating web app
v0.47.2 - 2019-10-09
Fixed
- v0.47.1 accidentally picked up changes from v0.48.0
v0.47.1 - 2019-10-09
Fixed
- Change how Linux runtimes are parsed and displayed after retrieving from Azure API
v0.48.0 - 2019-10-07
Added
- Add slot support for listing, getting, and deleting functions
- Added retry logic to increase reliability when listing deploy logs
Changed
DeploymentTreeItem.redeployDeployment
now requiresIActionContext
to be passed in
v0.47.0 - 2019-10-02
Added
- getDeployFsPath returns
IDeployPaths
which includes the deployPath selected by the user and the effective deploy path after the subDeployPath has been added - Updates some VS Code Icons
v0.46.0 - 2019-09-20
Fixed
- Validate linux app setting names
Changed
SiteClient
is now a required parameter forvalidateAppSettingKey
v0.45.0 - 2019-09-16
Added
getDeployFsPath
acceptsstring[]
forfileExtensions
to support deploying multiple artifacts (.war/.jar
)- Leverages new UI
AzExtOutputChannel
to have timestamps for appservice output
v0.44.3 - 2019-09-11
Changed
- External link updated in
AppServicePlanSKUStep
to show Linux or Windows-specific pricing page
v0.44.2 - 2019-09-10
Added
- External link to show ASP SKU pricing information in
AppServicePlanSKUStep
v0.44.1 - 2019-09-09
Fixed
nonNullProp
was being used onruntime
forSiteCreateStep
even though it's an optional property
v0.44.0 - 2019-09-05
Added
createSiteAppSettings
is now enforced forSiteCreateStep
getDeployFsPath
refactored to be in shared tools
v0.43.3 - 2019-08-20
Fixed
- Fix error for app insights with existing resource group
- Fix AppInsightsListStep if provider isn't registered
v0.43.2 - 2019-08-16
Fixed
- Deploy to new linux consumption function app failed with 401 error
v0.43.1 - 2019-08-14
Added
AppInsightsCreateStep
andAddInsightsListStep
to support creating Application Insights resources within extensions
v0.43.0 - 2019-08-02
Added
- Server-side build support for linux function apps
- Open deploy logs in read only editor
Changed
- Refactored
SiteClient.kudu
toSiteClient.getKuduClient
v0.42.7 - 2019-08-02
Added
- Added list keys methods for linux function apps
v0.42.6 - 2019-07-31
Fixed
- Fix create scenario for linux dedicated function app
v0.42.5 - 2019-07-24
Fixed
- Move
portfinder
to dependency instead of dev dependency
v0.42.4 - 2019-07-23
Changed
- Bump UI dependency to 0.26.0
v0.42.3 - 2019-07-22
Added
- More Linux runtimes in the enum
v0.42.2 - 2019-07-02
Added
- Refactored remote debugging common code
- Support for Premium v2 plans
v0.42.1 - 2019-06-05
Added
- Export getRelatedName for SiteNameStep to be used in App Service ext
- Wake app before attempting to connect remote debugging/SSH session
Changed
- Refactor GitHub steps into an Azure Wizard
v0.42.0 - 2019-05-29
Added
commandId
to allow clickable progress notification inDeploy
andRedeploy
Fixed
- Suppress error display for Local Git force push cancels
v0.41.0 - 2019-05-20
Changed
- Updated to UI package 0.25.0 (which had breaking changes related to
IActionContext
)
v0.40.0 - 2019-05-14
Changed
- Updated to UI package 0.24.0 (which had breaking changes to the tree)
v0.39.0 - 2019-05-07
Removed
javaUtils
has been refactored out
v0.38.0 - 2019-05-06
Added
- Allows
site.state
to beundefined
Removed
- Notification from
SiteCreateStep
. Extension will be responsible for displaying notification - Custom logic for creating a web app and
ICreateOptions
Fixed
v0.37.3 - 2019-04-26
- Removed feature flag for PowerShell in SiteRuntimeStep
v0.37.2 - 2019-04-25
Added
- Sort runtimes by version
- Added hosting plan step so that function apps can be created on dedicated plan
v0.37.1 - 2019-04-22
Added
- Retrieve Linux runtimes dynamically
- Telemetry for local git
Removed
- Node.js v4.x 6.x for Linux Web Apps
Fixed
- Microsoft/vscode-azureappservice#769
v0.37.0 - 2019-04-11
Added
ListWebJobs()
in SiteClient
Changed
TunnelProxy.ts
accepts a booleanisSsh
rather than accepting aremotePort
number. That is because today the port is either 2222 for SSH or it is literally any other port for remote debugging.
v0.36.0 - 2019-04-10
Added
- Support Java 11 related runtimes
- Allow
startProxy
to listen to specific ports
v0.35.0 - 2019-04-01
Changed
- Leveraged ui package 0.23.0 to specify priority in
AzureWizardExecuteStep
v0.34.1 - 2019-03-26
Added
- PowerShell to list of runtimes for function app (requires feature flag)
v0.34.0 - 2019-03-21
Changed
- Export site steps instead of
createFunctionApp
. The wizard has to be created outside this package - Leverage ui package v0.22.0
v0.33.0 - 2019-03-20
Added
- Descriptions to Deployments node
Changed
- Use subscription token credentials for Kudu client (now in
SiteClient.ts
)
v0.32.0 - 2019-03-14
Added
- Update to new wizard with back button
Changed
- Minimum VS Code engine is 1.26.0
v0.31.5 - 2019-03-08
Fixed
- Directories for icons were wrong due to change in file structure
v0.31.4 - 2019-03-08
Fixed
- Mask credentials when local git deploys error
- Remote url for local git deploy was incorrectly pointing to the scmUri
- Not catching errors from push because we were not awaiting it
v0.31.3 - 2019-03-06
Added
- Node.js v10.14 runtime
- Java utils have been centralized
v0.31.2 - 2019-02-27
Fixed
- Remove preview label for Java function apps
- Fix zip deploy sometimes swallowing errors without displaying to the user
v0.31.1 - 2019-02-22
Added
- Automatically recommend Java runtimes when applicable
- Add .NET Core 2.2 to runtime list
Fixed
- Use sovereign-friendly connection strings for Functions
v0.31.0 - 2019-02-15
Added
- Support for ".funcignore"
- Show deployment logs in real time for local git
- Smart defaults when creating Java Web Apps
- View commit in GitHub
Changed
- Removed Functions support for "zipGlobPattern" and "zipIgnorePattern" settings
- Signature of deploy method so that we can leverage full actionContext instead of just telemetryProperties
v0.30.0 - 2019-02-06
Fixed
- Remove
WEBSITE_RUN_FROM_*
settings when switching to Github deployment - Fix "Configuration type must be set to "None" to connect to a GitHub repository."
Changed
- Split
runPreDeployTask
into:runPreDeployTask
: handle the result and returns nothingtryRunPreDeployTask
: does not handle the result and also returns the task's exit code
v0.29.2 - 2019-02-06
Added
- Configure settings as slot settings that do not get altered on slot swap
v0.29.1 - 2019-01-31
Fixed
- Fix preDeploy
isTaskEqual
for non-shell tasks
v0.29.0 - 2019-01-24
Changed
- Bumped minimum version of
vscode-azureextensionui
to 0.20.0
v0.28.2 - 2019-01-22
Fixed
- Improve stability of deploying to Linux Consumption
- Display only supported locations when deploying function app or web app to linux
v0.28.1 - 2019-01-16
Fixed
- Trying to create a web app from the
Deploy
button would cause an error
v0.28.0 - 2019-01-11
Added
- ExponentialRetryPolicyFilter when deploying to linux consumption
- Notification for when editScmType completes
- Enable Deployments Node for zipdeploy scenarios
- Prompt for function app runtime even on windows
- 10 second delay to basic asp app's first deployment
Changed
- Minimum version of VS Code engine is now 1.24.0
v0.27.0 - 2018-12-13
Added
- Breaking change to
AppSettingsTreeItem
. AcommandId
must be passed to the constructor that is used to hide/reveal app settings on the tree view. - Sort runtimes based on recommendations.
v0.26.0 - 2018-12-03
Changed
- Make
connectToGitHubCommandId
a required parameter for creatingDeploymentsTreeItem
v0.25.6 - 2018-11-30
Added
- Swap slot
- Create slot
v0.25.5 - 2018-11-29
Added
package-lock.json
Removed
waitForDeploymentToComplete on GitHub connections
Fixed
Redeploy deployment logs
v0.25.4 - 2018-11-28
Added
- GitHub configuring and redeploy display deployment logs in output channel
Fixed
- GitHub repo names are included in "Connecting message"
- node.js|10.10 new LST default for creating Web Apps
- Path does not exist error
v0.25.3 - 2018-11-21
Fixed
- Make "disconnect repo" a modal dialog
- Improve Github org quick pick
- Sort orgs
- Put "load more" at top
- Show 'loading' indicator
- Show "Creating Web App" right after creation starts
- Truncate commit message with line break in DeploymentTreeItem
v0.25.2 - 2018-11-15
Added
Telemetry on advancedCreate, OS, and runtime for webAppCreate Update to V2 of tunnel GetStatus API QoL for DeploymentTreeItems
Fixed
Status of DeploymentTrees now rely on status codes from Kudu
v0.25.1 - 2018-11-14
Added
Deployments and Deployment treeItems and implementation of viewing/redeploying deployments and logs
v0.25.0 - 2018-11-12
Added
- editScmType passes IActionContext and is programmatic
- gitUrl displayed for LocalGit repositories
Fixed
- Fixed Github repos to load 10 seconds worth of repos rather than one page
- AzureTreeItems and AzureParentTreeItems has properties no longer have mismatched types when linking to another project via npm
v0.24.1 - 2018-10-29
Added
- Display git url after changing deployment source to local git
- Add validateAppSettingKey function
v0.24.0 - 2018-10-17
Fixed
- Improved list of App Service locations to be more accurate
- Local git deploy will check for "Run From Package" settings and remove appropriately
Changed
- createFunctionApp no longer handles app settings. That must be done by the extension
- Bumped azure-arm-website from 4.0 to 5.0
v0.23.0 - 2018-10-04
Leverage new tree from ui package
v0.22.4 - 2018-10-01
Fixed
- Sync triggers after linux consumption deploy
v0.22.3 - 2018-09-21
Fixed
- Assume function apps are consumption if we can't determine the plan type when deploying
v0.22.2 - 2018-09-20
Fixed
- Linux consumption function apps will not have CONTENT app settings, which break deploy
v0.22.1 - 2018-09-19
Fixed
- Use runtime passed in to createAppService
v0.22.0 - 2018-09-17
Added
- Command for calling admin function api
- Support creating linux consumption function apps
Changed
- Signature for createFuntionApp and createWebApp to more easily support options
v0.21.3 - 2018-09-13
Support "Run from package" for Linux Consumption Function Apps
v0.21.1 - 2018-09-11
Add creating function apps with resource groups programmatically
v0.21.2 - 2018-09-11
Added several function-specific methods to SiteClient (meant to replace kudu calls)
v0.21.0 - 2018-08-30
Changed
Remove deploy confirmation from shared package. It must now be implemented in each extension
v0.20.0 - 2018-08-27
Added
- User agent to kudu client
- Sovereign cloud support
- Additional runtimes when creating an App Service
Changed
- Moved logStream persistence logic inside package instead of being implemented by each extension
- Default to Central US when creating App Service
- Updated reference to
azure-arm-website
to non-preview version
v0.19.1 - 2018-08-02
Update referenced version of telemetry package
v0.19.0 - 2018-07-12
Added
- 'Browse Website' to deployment message
Fixed
- Check for existing app service before overwriting with new settings
- Don't throw error when viewing empty files
Changed
- Confirmation of deployment was removed (and must be handled outside this package)
v0.18.0 - 2018-07-10
Fixed
- Creating Function App uses correct resource group specified
Changed
- Creating Function App must pass in node version and func version as app settings
- showCreatingNode is now a required parameter for createFunctionApp and creationWebApp
v0.17.0 - 2018-07-03
Added
- Append vscode-specific user agent to Azure calls
Changed
- Leverage long-running notifications rather than showing the output channel
- Register common variables rather than passing them in all the time
v0.16.6 - 2018-06-27
Added
Typedef for new advanced creation
v0.16.5 - 2018-06-27
Changed
Modified web app creation wizard to only prompt for name and location if smart defaults can be made New advanced creation property is leverage to return to former web app creation wizard
v0.16.4 - 2018-06-05
Added
- Dynamically retrieve Kudu url to support deploying to App Service Environment
v0.16.3 - 2018-05-30
Added
- Enable creating tomcat runtime stack for Linux Web App
- Support wardeploy
v0.16.2 - 2018-05-16
Check app service tunnel status before connecting tunnel proxy
v0.16.1 - 2018-05-08
Fix contradictory messages when failed to update deployment source to GitHub
v0.16.0 - 2018-05-08
- Filter out unsupported storage accounts when creating function apps
v0.15.1 - 2018-04-23
Make confirmation dialogs modal
v0.15.0 - 2018-04-19
Update wizard to use latest breaking changes in UI package
v0.14.6 - 2018-04-12
Fixed a bug that would cause custom domain deployments to fail.
v0.14.5 - 2018-04-12
Add TunnelProxy to appservice, forwards connections to Kudu tunnel
v0.14.4 - 2018-04-03
Fix 'isFunctionApp' to work for linux function apps
v0.14.3 - 2018-04-02
Allow users to select OS when creating web app
v0.14.2 - 2018-03-30
Add app service plan telemetry to deploy
v0.14.1 - 2018-03-30
Make log streaming more robust
v0.14.0 - 2018-03-26
Leverage latest ui package with update to subscription api
v0.13.1 - 2018-03-22
Added
- Leverage common wizard steps
Fixes
- Don't persist recently used picks for EditScmType
v0.13.0 - 2018-03-15
Leverage Wizard and UserInput from ui package
v0.12.0 - 2018-03-13
Refactored SiteWrapper into multiple files
v0.11.3 - 2018-03-08
Added
- Show deployed app URL
- More deployment telemetry
Fixed
- Fix possible null ref exception (#113)
v0.11.1 - 2018-03-07
Added
Improved Deploy:
- More detailed logs
- More telemetry
- Zip ignore/glob patterns work on a folder-basis
v0.11.2 - 2018-03-07
Fixed
Possible null ref while waiting for deployment
v0.11.0 - 2018-03-01
Added
- Add additional runtimes for app services
Fixed
- Github connection to slots
- Refactored to work with updated ui package
v0.10.1 - 2018-02-26
Added
- getFile and putFile to siteWrapper
v0.10.0 - 2018-02-22
Added
- Configure deployment source to Github
- Ping function app status
v0.9.0 - 2018-02-16
Fixed
- Update dependency of ui package
v0.8.5 - 2018-02-16
Fixed
- Log streaming for Function Apps pings the site so that it works immediately
v0.8.4 - 2018-02-06
Added
- startLogStreaming now returns an
ILogStream
withisConnected
property - Added logs config commands
v0.8.3 - 2018-02-06
Added
- Log streaming
v0.8.2 - 2018-01-04
Fixed
- Update dependency version of UI package
v0.8.1 - 2017-12-14
Fixed
- Make completion message more prominent
v0.8.0 - 2017-12-13
Added
Zip deploy can be configured (globPattern and ignorePattern)
v0.7.2 - 2017-12-11
Fixed
- Properly validate storage account name when creating Function App
- Show outputChannel on local git deploy
v0.7.1 - 2017-12-05
Added
- Improved resource name (web apps, slots, and storage accounts) validation through the Azure API
- Deploy now includes flag whether or not to prompt the user that deployment is a destructive action
v0.7.0 - 2017-12-01
Added
- Single deploy function that auto-detects deployment type
Removed
- Deploy zip
- Deploy local git
v0.6.0 - 2017-11-29
Added
- App Setting tree items
- Optional
showCreatingNode
parameter when creating an app
Fixed
- Leverage
UserCancelledError
to properly indicate when an operation has been cancelled
v0.5.1 - 2017-11-27
Added
- Edit scm type
- Get Kudu Client
v0.4.0 - 2017-11-15
Added
- Local Git Deploy
- Delete App Service
v0.3.2 - 2017-11-08
Fixed
- Make sure function apps get the right settings uploaded
- Fix 'cannot get subscription of undefined' error when the subscription is pre-selected
v0.3.1 - 2017-11-08
Added
- Create Function App
- Create Web App
v0.2.0 - 2017-11-08
Fixed
- Show warning message that zip deploy is a destructive action
- Leverage new app service zipdeploy
Removed
- Zip Deploy no longer runs 'npm install'. It expects a ready-to-run app
v0.1.1 - 2017-10-17
Initial release