Skip to content

Commit

Permalink
fixed null pointer issue in ReporterManager, fixes #517 (#518)
Browse files Browse the repository at this point in the history
* fixed null pointer issue in ReporterManager, fixes #517
* prepare release
  • Loading branch information
AlexHaxe authored Jan 4, 2023
1 parent 4bdebcc commit bf9cf5f
Show file tree
Hide file tree
Showing 10 changed files with 339 additions and 14 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/checkstyle-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ jobs:
npx haxe build.hxml
npx haxe buildDebug.hxml
- name: Build NodeJs version
run: npx haxe buildJS.hxml
run: |
npx haxe buildJS.hxml
bash uglifyCheckstyle.sh
- name: Build C++ version
run: echo "y" | npx haxe buildCpp.hxml
- name: Build JSON schema
Expand Down
2 changes: 1 addition & 1 deletion .haxerc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "5645ecc",
"version": "966864c",
"resolveLibs": "scoped"
}
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## dev branch / next version (2.x.x)

## version 2.8.4 (2023-01-05)

- Fixed null pointer reference in BaseReporter, fixes [#517](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/517) ([#518](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/518))
- Fixed null pointer reference in JSONReporter ([#516](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/516))
- Fixed C++ compilation on nightly

Expand Down
2 changes: 0 additions & 2 deletions buildJS.hxml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@ build/common.hxml
-lib hxnodejs
-main checkstyle.Main
-js haxecheckstyle.js

-cmd mkdir -p bin && cp haxecheckstyle.js bin/checkstyle.js
4 changes: 2 additions & 2 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"adireddy",
"Gama11"
],
"releasenote": "fixed support for numeric separators and suffixes in MagicNumber check - see CHANGELOG",
"version": "2.8.3",
"releasenote": "fixed null pointer crashes in reporters - see CHANGELOG",
"version": "2.8.4",
"url": "https://github.com/HaxeCheckstyle/haxe-checkstyle",
"dependencies": {}
}
315 changes: 312 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bf9cf5f

Please sign in to comment.