Skip to content

Releases: denpamusic/php-bitcoinrpc

php-bitcoinrpc v2.2.0

24 May 01:16
172c184
Compare
Choose a tag to compare

What's Changed

  • Fix for PHP 8.1 deprecation messages by @Doc0x1 in #62

New Contributors

php-bitcoinrpc v2.1.3

23 Aug 04:47
578dab8
Compare
Choose a tag to compare
  • bump guzzle to 7.0.* (closes #55)

php-bitcoinrpc v2.1.2

08 Dec 01:44
Compare
Choose a tag to compare
  • Added ability to set connection timeout

php-bitcoinrpc v2.1.1

14 Aug 21:34
0e53768
Compare
Choose a tag to compare
  • Fixed issue in to_satoshi helper function when dealing with large sums (thanks @partyka1)

php-bitcoinrpc v2.1.0

20 Nov 17:48
Compare
Choose a tag to compare

First release of v2.1.x branch.

Note: This release only supports PHP version 7.1 or later.
If you want to continue to use PHP 5.6 or 7.0, use latest release of 2.0.x branch.
Please be aware, that PHP 7.0 approaches it's end of life in just 10 days and PHP 5.6 will follow in a month, so upgrade ASAP.
See: http://php.net/supported-versions.php and http://php.net/eol.php

  • Re-implemented client with strict types enabled
  • Improved helper functions.
  • Improved exception handling.
  • Improved async response handling.
  • Fixed some minor bugs.
  • Improved test suite.

php-bitcoinrpc v2.0.13

16 Nov 21:56
Compare
Choose a tag to compare

php-bitcoinrpc v2.0.12

26 Oct 22:42
Compare
Choose a tag to compare

php-bitcoinrpc v2.0.11

04 Oct 16:35
47b9ae2
Compare
Choose a tag to compare
  • Added ability to change response handler class via getResponseHandler() method, when extending Denpa\Bitcoin\Client class.
    This allows for further response customizations in dependent packages like denpa\laravel-bitcoinrpc.
    See: BitcoindResponse.php and Response.php
  • Improved namespace structure.

php-bitcoinrpc v2.0.10

19 Sep 00:43
Compare
Choose a tag to compare
  • contains(), keys() and values() methods of BitcoindResponse are now context-aware (can be used with dotted-notation path)
  • added helpers to convert bitcoin to mbtc and ubtc/bits (see README)
  • added ability to cast response object to string

php-bitcoinrpc v2.0.9

14 Sep 12:34
Compare
Choose a tag to compare
  • Improved handling of asynchronous requests.
  • Separated helper methods from main client class (see Helpers).
  • Minor code improvements.