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

Commit 2eae49e

Browse files
committed
version 4.7.1
1 parent 16da715 commit 2eae49e

File tree

13 files changed

+41
-21
lines changed

13 files changed

+41
-21
lines changed

custom-backends/mssql/Dfm.MsSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.12" />
99
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.5.0" />
1010
<PackageReference Include="Microsoft.DurableTask.SqlServer.AzureFunctions" Version="0.9.0-beta" />
11-
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="4.7.0" />
11+
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="4.7.1" />
1212
</ItemGroup>
1313
<ItemGroup>
1414
<None Update="host.json">

custom-backends/netcore31/Dfm.NetCore31.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ItemGroup>
77
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.12" />
88
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.5.0" />
9-
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="4.6.0" />
9+
<PackageReference Include="durablefunctionsmonitor.dotnetbackend" Version="4.7.1" />
1010
</ItemGroup>
1111
<ItemGroup>
1212
<None Update="host.json">

durablefunctionsmonitor-vscodeext/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## Version 4.7.1
4+
5+
- Hotfix for incompatibility with Storage Emulator ([#112](https://github.com/scale-tone/DurableFunctionsMonitor/issues/112)).
6+
37
## Version 4.7
48

59
- Latest [az-func-as-a-graph](https://github.com/scale-tone/az-func-as-a-graph) integrated, and it is now used as yet another visualization tab for both search results and instance details, with instance counts and statuses rendered on top of it. So it now acts as an *animated* code map of your project:

durablefunctionsmonitor-vscodeext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "durablefunctionsmonitor",
33
"displayName": "Durable Functions Monitor",
44
"description": "Monitoring/debugging UI tool for Azure Durable Functions. View->Command Palette...->Durable Functions Monitor",
5-
"version": "4.7.0",
5+
"version": "4.7.1",
66
"engines": {
77
"vscode": "^1.39.0"
88
},

durablefunctionsmonitor-vscodeext/src/az-func-as-a-graph/traverseFunctionProjectUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export class TraversalRegexes {
135135
}
136136

137137
static getCallActivityRegex(activityName: string): RegExp {
138-
return new RegExp(`(CallActivity|call_activity)[\\s\\w\.-<>\\[\\]\\(]*\\([\\s\\w\.-]*["'\`]?${activityName}\\s*["'\`\\)]{1}`, 'i');
138+
return new RegExp(`(CallActivity|call_activity)[\\s\\w,\.-<>\\[\\]\\(\\)]*\\([\\s\\w\.-]*["'\`]?${activityName}\\s*["'\`\\)]{1}`, 'i');
139139
}
140140
}
141141

durablefunctionsmonitor.dotnetbackend/DfmStatics/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

durablefunctionsmonitor.dotnetbackend/DfmStatics/static/js/main.14d3190a.chunk.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

durablefunctionsmonitor.dotnetbackend/DfmStatics/static/js/main.14d3190a.chunk.js renamed to durablefunctionsmonitor.dotnetbackend/DfmStatics/static/js/main.37cea6d6.chunk.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

durablefunctionsmonitor.dotnetbackend/DfmStatics/static/js/main.37cea6d6.chunk.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

durablefunctionsmonitor.dotnetbackend/durablefunctionsmonitor.dotnetbackend.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<TargetFramework>netcoreapp2.1</TargetFramework>
44
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
5-
<AssemblyVersion>4.7.0.0</AssemblyVersion>
6-
<FileVersion>4.7.0.0</FileVersion>
5+
<AssemblyVersion>4.7.1.0</AssemblyVersion>
6+
<FileVersion>4.7.1.0</FileVersion>
77
</PropertyGroup>
88
<ItemGroup>
99
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.4.3" />

0 commit comments

Comments
 (0)