Skip to content

Commit

Permalink
Scale tone/v6.5 (#205)
Browse files Browse the repository at this point in the history
* v6.5

* v6.5

* Update CHANGELOG.md
  • Loading branch information
scale-tone authored Jun 30, 2024
1 parent 1a48cc2 commit f57d3b0
Show file tree
Hide file tree
Showing 29 changed files with 24 additions and 13 deletions.
4 changes: 2 additions & 2 deletions custom-backends/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ These are Azure Function projects with Durable Functions Monitor 'injected' as a

* [netcore21](https://github.com/microsoft/DurableFunctionsMonitor/tree/main/custom-backends/netcore21) - (legacy) Durable Functions Monitor backend, that runs on .Net Core 2.1.
* [netcore31](https://github.com/microsoft/DurableFunctionsMonitor/tree/main/custom-backends/netcore31) - Durable Functions Monitor backend, that runs on .Net Core 3.1.
* [dotnet7isolated](https://github.com/microsoft/DurableFunctionsMonitor/tree/main/custom-backends/dotnet7isolated) - Durable Functions Monitor .NET 7 Isolated backend.
* [dotnetIsolated](https://github.com/microsoft/DurableFunctionsMonitor/tree/main/custom-backends/dotnetIsolated) - Durable Functions Monitor .NET 8 Isolated backend.
* [mssql](https://github.com/microsoft/DurableFunctionsMonitor/tree/main/custom-backends/mssql) - Durable Functions Monitor backend to be used with [Durable Task SQL Provider](https://microsoft.github.io/durabletask-mssql/#/).
* [dotnet7isolated-mssql](https://github.com/microsoft/DurableFunctionsMonitor/tree/main/custom-backends/dotnet7isolated-mssql) - Durable Functions Monitor .NET 7 Isolated backend to be used with [Durable Task SQL Provider](https://microsoft.github.io/durabletask-mssql/#/).
* [dotnetIsolated-mssql](https://github.com/microsoft/DurableFunctionsMonitor/tree/main/custom-backends/dotnetIsolated-mssql) - Durable Functions Monitor .NET 8 Isolated backend to be used with [Durable Task SQL Provider](https://microsoft.github.io/durabletask-mssql/#/).
* [netherite](https://github.com/microsoft/DurableFunctionsMonitor/tree/main/custom-backends/netherite) - Durable Functions Monitor backend to be used with [Netherite Provider](https://microsoft.github.io/durabletask-netherite/#/).
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DurableFunctionsMonitor.DotNetIsolated" Version="6.4.0" />
<PackageReference Include="DurableFunctionsMonitor.DotNetIsolated" Version="6.5.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.1.3" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask.SqlServer" Version="1.2.1" />
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DurableFunctionsMonitor.DotNetIsolated" Version="6.4.0" />
<PackageReference Include="DurableFunctionsMonitor.DotNetIsolated" Version="6.5.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.1.3" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
},
{
"name": "Project",
"value": "custom-backends/dotnet7isolated"
"value": "custom-backends/dotnetIsolated"
}
]
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion custom-backends/mssql/Dfm.MsSql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.4.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.13.3" />
<PackageReference Include="Microsoft.DurableTask.SqlServer.AzureFunctions" Version="1.3.0" />
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="6.4.0" />
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand Down
6 changes: 3 additions & 3 deletions custom-backends/netherite/Dfm.Netherite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.DurableTask.Netherite.AzureFunctions" Version="1.4.2" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.2.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.12.0" />
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="6.4.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.4.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.13.3" />
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand Down
11 changes: 11 additions & 0 deletions durablefunctionsmonitor-vscodeext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

# Version 6.5

- New feature - `Execute Batch Operations...` (https://github.com/microsoft/DurableFunctionsMonitor/issues/169). Prepare a list of instances in the main screen, and then use this context menu to execute operations against all of them:

<img width="600px" src="https://github.com/microsoft/DurableFunctionsMonitor/assets/5447190/513033e4-a209-4e50-942a-0820d0dc9cbf"/>

- Fixed https://github.com/microsoft/DurableFunctionsMonitor/issues/174 (`FailureDetails not shown, if the orchestration runs in a .NET Isolated project`). Thanks [@epDugas](https://github.com/epDugas) for this contribution!

- Moved to [az-func-as-a-graph](https://github.com/scale-tone/az-func-as-a-graph) v1.3.3.


## Version 6.4.1

- Fix for Task Hubs being partially shown ([#175](https://github.com/microsoft/DurableFunctionsMonitor/issues/175)).
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",
"version": "6.4.1",
"version": "6.5.0",
"engines": {
"vscode": "^1.39.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ suite('BackendProcess Test Suite', () => {

// Arrange

const tempBackendFolder = await copyBackendProjectToTempFolder('dotnet7isolated');
const tempBackendFolder = await copyBackendProjectToTempFolder('dotnetIsolated');

const connSettings = new StorageConnectionSettings('my-invalid-conn-string', 'my-task-hub');

Expand Down

0 comments on commit f57d3b0

Please sign in to comment.