Skip to content

Releases: DaveLiddament/sarb

1.9.0

11 Jan 23:15
fb1b031
Compare
Choose a tag to compare

Adds error handling for when the static analysis tool reports an error.
Updated PHPStan's ResultsParser report errors. See issue #135

1.8.0

10 Dec 23:08
b13ea39
Compare
Choose a tag to compare

Add support for PHP 8.3 and Symfony 7 components

1.7.0

16 Jun 17:52
Compare
Choose a tag to compare

Add support for PHP 8.2. Drop support for PHP 7.3 and PHP 7.4

1.6.0

01 Dec 23:21
7feae9c
Compare
Choose a tag to compare

Adds concept of severity. Issues can be either ERROR or WARNING. By default both are reported. However it is possible to exclude warnings from the results by using the --ignore-warnings flag.

Thanks to @MisterIcy who suggested the idea and came up with an initial implementation, from which this PR is inspired by.

1.5.0

07 Aug 22:09
b363129
Compare
Choose a tag to compare

Adds the --clean-up option. This picks out 5 random issues for you to fix that are in the baseline. This is to encourage gradually improving the codebase.

1.4.1

24 Dec 14:23
8d69f89
Compare
Choose a tag to compare

Fix critical bug where code depended on webmozart/path that has now beed removed. Thanks @bytestream for fix

1.4.0

23 Dec 17:41
3d84218
Compare
Choose a tag to compare

New features

  • Adds SARB format to support tools that only provide relative and not absolute paths (#96)
  • Removed dependency on deprecated library webmozart/path (#110) (Thanks @a4blue and @jdressen)

Other updates

  • Updated contributing notes for information about using libraries (#111)
  • Bumped PHPStan analysis level to max (#112)

1.3.0

29 Nov 21:50
72bc655
Compare
Choose a tag to compare

Allow use of Symfony 6 components

1.2.0

25 Nov 18:26
3078203
Compare
Choose a tag to compare

Add support for PHP 8.1

1.1.0

01 Oct 20:05
b99c3f8
Compare
Choose a tag to compare

Adds support for the junit output format. Thanks to @PleaseHelpMe-hub for making this happen.