diff --git a/CHANGELOG.md b/CHANGELOG.md index 6121058..29e07ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## v0.8.0 - 3 October 2023 +## v0.8.0 - 16 October 2023 Integrating new features of Dapr 1.11 and 1.12. @@ -11,6 +11,10 @@ Integrating new features of Dapr 1.11 and 1.12. * [Enhancement] Scaffold Dapr tasks using existing run file [#272](https://github.com/microsoft/vscode-dapr/issues/272) * chore: enhance dapryml schema validation [#292](https://github.com/microsoft/vscode-dapr/pull/292) +### Fixed + +* Debugging with Dapr hangs with 1.12 [#309](https://github.com/microsoft/vscode-dapr/issues/309) + ## v0.7.0 - 16 February 2023 Integrating new features of Dapr 1.10. diff --git a/package.json b/package.json index 46a61bf..183f5d7 100644 --- a/package.json +++ b/package.json @@ -312,8 +312,8 @@ } ], "background": { - "beginsPattern": "^.*starting Dapr Runtime", - "endsPattern": "^.*(waiting on port|dapr initialized)" + "beginsPattern": { "regexp": "^.*[sS]tarting Dapr Runtime" }, + "endsPattern": { "regexp": "^.*(waiting on port|dapr initialized)" } } } ],