Skip to content

Commit

Permalink
Update problem matcher to accommodate 1.12 changes. (#310)
Browse files Browse the repository at this point in the history
* Update problem matcher to accommodate 1.12 changes.

Signed-off-by: Phillip Hoff <[email protected]>

* Update CHANGELOG.

Signed-off-by: Phillip Hoff <[email protected]>

---------

Signed-off-by: Phillip Hoff <[email protected]>
  • Loading branch information
philliphoff authored Oct 17, 2023
1 parent 0c6e41c commit 900a1f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)" }
}
}
],
Expand Down

0 comments on commit 900a1f1

Please sign in to comment.