Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

closing comments is fixed #82

Merged
merged 2 commits into from
Aug 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DETAILS.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ stats.js Location | true | ./node_modules/webpack/lib/Stats.js | Location of the

## <a id="release-notes"></a>Release Notes

* 4.1.2 (23/08/2018)
* 4.1.3 (23/08/2018)
* Errors and warnings can be reported as pull request comments (ts-loader and tslint-loader are supported, more will come).
* 4.0.4 (24/05/2018)
* Dependencies are updated to fix security vulnerabilities (though it was just in one of the samples).
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
next-version: 4.1.2
next-version: 4.1.3
assembly-informational-format: '{SemVer}'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ stats.js Location | true | ./node_modules/webpack/lib/Stats.js | Location of the

## <a id="release-notes"></a>Release Notes

* 4.1.2 (23/08/2018)
* 4.1.3 (23/08/2018)
* Errors and warnings can be reported as pull request comments (ts-loader and tslint-loader are supported, more will come).
* 4.0.4 (24/05/2018)
* Dependencies are updated to fix security vulnerabilities (though it was just in one of the samples).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wepback-vsts-extension",
"version": "4.1.2",
"version": "4.1.3",
"description": "webpack Visual Studio Team System (VSTS) Extension",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion tasks/webpack-build-task/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webpack-build-task",
"version": "4.1.2",
"version": "4.1.3",
"description": "Webpack build task for Visual Studio Team System (VSTS)",
"main": "index.js",
"scripts": {},
Expand Down
2 changes: 1 addition & 1 deletion tasks/webpack-build-task/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 4,
"Minor": 1,
"Patch": 2
"Patch": 3
},
"minimumAgentVersion": "1.95.0",
"groups": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ const threadEqualsToMessage = (thread: GitPullRequestCommentThread, message: IMe
&& message.start
&& thread.threadContext.rightFileStart.line === message.start.line
&& thread.threadContext.rightFileStart.offset === message.start.offset
&& thread.comments
&& thread.comments[0].content === message.message
);

const parseMessages = (taskDisplayName: string, messagesToParse: string[], isError: boolean) => {
Expand Down
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "webpack-vsts-extension",
"version": "4.1.2",
"version": "4.1.3",
"name": "webpack",
"description": "bundle your assets, scripts, images, styles",
"publisher": "Dealogic",
Expand Down