Skip to content

Releases: belgattitude/soluble-japha

Version 2.4.2

17 Nov 10:21
Compare
Choose a tag to compare

Improvements

  • Refactored some internal methods visibility (protected/private)

Q&A

Version 2.4.1

10 Oct 09:24
Compare
Choose a tag to compare

Bugfix

  • Regression with https connection introduced in 2.4.0

Version 2.4.0

09 Oct 11:23
Compare
Choose a tag to compare

Added

  • Added support for basic authentication in connection servlet_address.

    <?php
    $ba = new BridgeAdapter([
        'servlet_address' => 'http://user:pass@localhost:8080/MyJavaBridge/servlet.phpjavabridge'
    ]);    
  • Added AuthenticationException (ConnectionException).

  • Logger now logs java exceptions (NoSuchProcedureException,... at error level).

Fixed

  • Notice and warnings when a BrokenConnection is encountered.

Version 2.3.0

19 Sep 09:43
Compare
Choose a tag to compare

Improved

  • More typehints in internal PJB62 driver.

Version 2.2.4

02 Sep 21:32
Compare
Choose a tag to compare

Improved

  • Catch Throwable instead of Exception in driver and client.
  • Dev updated to PHPUnit 6+
  • Dev removed pjbserver-tools from require-dev
  • Doc update: recipe for jasper reports

Version 2.2.3

20 Aug 11:38
Compare
Choose a tag to compare

Improved

  • Now Adapter defaults to pjb62 driver.
  • Unit tests, preliminary work to update to phpunit 6+

Version 2.2.2

18 Aug 10:07
Compare
Choose a tag to compare

Fixed

  • Unit tests, incorrect call java.time.format.FormatStyle fixed.

Version 2.2.1

17 Aug 14:35
Compare
Choose a tag to compare

Fixed

  • Prevent loop when un-registering client after an error. Not a major issue, but help when unit testing.

Version 2.2.0

15 Aug 14:29
Compare
Choose a tag to compare

Added

  • Support for PHP7.2 (tested against PHP7.2-beta2)
  • More type checking for PHP7.1

Improved

  • Internal socket api improvements.

Tests

  • Upgraded to phpstan 0.8.2, with max level analysis

Version 2.1.1

11 Aug 17:45
Compare
Choose a tag to compare

Fixed

  • Removed a trigger_error when using a php object as Java argument (a JavaException is still thrown).
  • Missing break for $arg->setVoidSignature() in Pjb62 Client.php.

Improved

  • Some more polishing for types (PHP 7.1)
  • Minor optimization, using empty instead of count.