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

Commit

Permalink
version 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scale-tone committed Jun 19, 2020
1 parent 5f48e18 commit 7d6e757
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions durablefunctionsmonitor-vscodeext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## Version 3.1

- Minor security improvements.
- List of existing Task Hubs is now loaded from your Storage Account and shown to you, when connecting to a Task Hub.

## Version 3.0

- A 'DURABLE FUNCTIONS' TreeView added to Azure Functions View Container. It displays all currently attached Task Hubs, allows to connect to multiple Task Hubs and switch between them. You need to have [Azure Functions](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions) extension installed to see it (which is typically the case if you work with Azure Functions in VSCode).
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.0.0",
"version": "3.1.0",
"engines": {
"vscode": "^1.39.0"
},
Expand Down
4 changes: 2 additions & 2 deletions durablefunctionsmonitor.dotnetbackend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ To run this on your devbox you need to have [Azure Functions Core Tools](https:/
**OR**

Run [this Docker container](https://hub.docker.com/r/scaletone/durablefunctionsmonitor) locally:
* **docker pull scaletone/durablefunctionsmonitor:3.0**
* **docker run -p 7072:80 -e AzureWebJobsStorage="your-azure-storage-connection-string" -e DFM_HUB_NAME="your-hub-name" scaletone/durablefunctionsmonitor:3.0**
* **docker pull scaletone/durablefunctionsmonitor:3.1**
* **docker run -p 7072:80 -e AzureWebJobsStorage="your-azure-storage-connection-string" -e DFM_HUB_NAME="your-hub-name" scaletone/durablefunctionsmonitor:3.1**
* Navigate to http://localhost:7072

**OR**
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.0.0.0</AssemblyVersion>
<FileVersion>3.0.0.0</FileVersion>
<AssemblyVersion>3.1.0.0</AssemblyVersion>
<FileVersion>3.1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="2.0.0" />
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.0.0",
"version": "3.1.0",
"private": true,
"homepage": "http://localhost:7072",
"dependencies": {
Expand Down

0 comments on commit 7d6e757

Please sign in to comment.