Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
version 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
scale-tone committed Dec 4, 2020
1 parent 930f75d commit 5aa6d49
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions durablefunctionsmonitor-vscodeext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## Version 3.8

- WebViews are now persistent (do not reload every time you switch between them) and even persist their state (filters, sorting etc.) across restarts.
- 'Restart' button for orchestrations (triggers the new [.RestartAsync()](https://github.com/Azure/azure-functions-durable-extension/pull/1545) method).
- Sequence diagrams now show some timing (start times and durations).
- 'Detach from all Task Hubs...' button for quickly killing all backends.
- All logs (when enabled) now go to 'Durable Functions Monitor' output channel.
- Minor bugfixes.

## Version 3.7

- Now settings are stored in VsCode's settings.json. **File->Preferences->Settings->Durable Functions Monitor**:
Expand Down
2 changes: 1 addition & 1 deletion durablefunctionsmonitor-vscodeext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "durablefunctionsmonitor",
"displayName": "Durable Functions Monitor",
"description": "Monitoring/debugging UI tool for Azure Durable Functions. View->Command Palette...->Durable Functions Monitor",
"version": "3.7.0",
"version": "3.8.0",
"engines": {
"vscode": "^1.39.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
<AssemblyVersion>3.7.0.0</AssemblyVersion>
<FileVersion>3.7.0.0</FileVersion>
<AssemblyVersion>3.8.0.0</AssemblyVersion>
<FileVersion>3.8.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.4.0" />
Expand Down
2 changes: 1 addition & 1 deletion durablefunctionsmonitor.dotnetbackend/nuspec.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>DurableFunctionsMonitor.DotNetBackend</id>
<version>3.7.0</version>
<version>3.8.0</version>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>DurableFunctionsMonitor.DotNetBackend</description>
<authors>DurableFunctionsMonitor</authors>
Expand Down
2 changes: 1 addition & 1 deletion durablefunctionsmonitor.react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "durablefunctionsmonitor.react",
"version": "3.7.0",
"version": "3.8.0",
"private": true,
"homepage": "http://localhost:7072",
"dependencies": {
Expand Down

0 comments on commit 5aa6d49

Please sign in to comment.