Skip to content

Commit 6950602

Browse files
authored
Merging dev into master for v1.3.1 release
2 parents d03751e + c9b6c23 commit 6950602

35 files changed

+616
-3271
lines changed

.vscode/launch.json

+24
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
8+
79
{
810
"type": "node",
911
"request": "launch",
@@ -55,6 +57,28 @@
5557
"${workspaceFolder}/lib/**"
5658
],
5759
"preLaunchTask": "build"
60+
},
61+
{
62+
"type": "node",
63+
"request": "launch",
64+
"name": "Mocha Tests Debug",
65+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
66+
"args": [
67+
"-u",
68+
"tdd",
69+
"--colors",
70+
"${workspaceFolder}/lib/test/**/**-spec.js",
71+
"-g",
72+
".*",
73+
"--timeout",
74+
"300000"
75+
],
76+
"internalConsoleOptions": "openOnSessionStart",
77+
"sourceMaps": true,
78+
"outFiles": [
79+
"${workspaceFolder}/lib/**"
80+
],
81+
"preLaunchTask": "build"
5882
}
5983
]
6084
}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ You can follow the [Visual Studio Code quickstart](https://docs.microsoft.com/en
4040

4141
Run this command from the root folder of your Azure Functions app:
4242
```bash
43-
func extensions install -p Microsoft.Azure.WebJobs.Extensions.DurableTask -v 1.7.0
43+
func extensions install -p Microsoft.Azure.WebJobs.Extensions.DurableTask -v 1.8.3
4444
```
4545

46-
**durable-functions requires Microsoft.Azure.WebJobs.Extensions.DurableTask 1.7.0 or greater.**
46+
**durable-functions requires Microsoft.Azure.WebJobs.Extensions.DurableTask 1.8.3 or greater.**
4747

4848
4. Install the `durable-functions` npm package at the root of your function app:
4949

0 commit comments

Comments
 (0)