Skip to content

Releases: subjective-php/util-exceptions

Version 4.0.1: Add Support for PHP 8

03 May 18:48
4e36238

Choose a tag to compare

Developer Changes

  • Add Support for PHP > 7.0 [PR #31]
  • Update build process [PR #30]
  • Update phpdoc badge

Version 4.0.0

08 Jun 22:09
e62efb9

Choose a tag to compare

Backwards Compatibility Breakers

  • Change namespace to SubjectivePHP [PR #29]
  • Switch organization to subjective-php [PR #28]

Major Features

  • Develop [PR #16]

Developer Changes

  • Remove authors from composer [PR #25]
  • Update coveralls dependency [PR #24]
  • Switch to PSR2 coding standard [PR #26]
  • Update php-coveralls dependency [PR #14]
  • Include PHP 7.2 in travis-ci build [PR #15]
  • Update scrutinizer [PR #11]

Version 3.0.1

16 Mar 12:40

Choose a tag to compare

Developer Changes

  • Update dependencies [PR #10]

Version 3.0.0

08 Mar 17:13

Choose a tag to compare

Backwards Compatibility Breakers

  • PHP 7 [PR #9]

Version 2.0.1

17 Nov 01:48

Choose a tag to compare

Minor Features

  • Open Util\Exception for extension

Developer Changes

  • Add PULL_REQUEST_TEMPLATE.md
  • Add .gitattributes
  • Update README.md
  • Update composer.json
  • Update dependency badge
  • Use latest coveralls

Version 2.0.0

09 Aug 12:49

Choose a tag to compare

Backwards Compatibility Breakers

  • Make minimum php requirement 5.6 [PR #6]

Developer Changes

  • Update phpunit version [PR #8]
  • Use Chadicus coding standard [PR #7]
  • Dev/add GitHub dir [PR #4]

Version 1.0.0: Anxious Anaconda

26 Sep 00:03

Choose a tag to compare

Backwards Compatibility Breakers

  • Make Exception class final

Bug Fixes

  • Ensure $error is not null in fromLastError() [PR #1]

Developer Changes

  • Update README for v1
  • Update coveralls badge
  • Update travis-ci badge
  • Ad CONTRIBUTING guidelines
  • Update scrutinizer config
  • Add versioneye badge
  • Update pholio badge
  • format README
  • Add homepage to developer / update dependencies
  • Fix phpdoc link [PR #2]

Version 0.1.0 - Initial Release

21 Jul 22:07

Choose a tag to compare

Pre-release

Major Features

\Chadicus\Util\Exception

Static utility class for Exceptions

  • getBaseException - Returns the Exception that is the root cause of one or more subsequent exceptions.
  • raise - Throws a new \ErrorException based on the error information provided. For use with set_error_handler
  • toArray - Converts the given Exception to an array. Ideal for logging exception information
  • fromLastError - Creates an ErrorException based on the error from error_get_last().