Skip to content

Releases: reactphp/dns

v0.4.4

13 Feb 09:58

Choose a tag to compare

  • Fix: Fix handling connection and stream errors
    (#45 by @clue)
  • Feature: Add examples and forward compatibility with upcoming Socket v0.5 component
    (#46 and #47 by @clue)

v0.4.3

01 Aug 10:10

Choose a tag to compare

  • Feature: Allow for cache adapter injection (#38 by @WyriHaximus)

    $factory = new React\Dns\Resolver\Factory();
    
    $cache = new MyCustomCacheInstance();
    $resolver = $factory->createCached('8.8.8.8', $loop, $cache);
  • Feature: Support Promise cancellation (#35 by @clue)

    $promise = $resolver->resolve('reactphp.org');
    
    $promise->cancel();

v0.4.2

24 Feb 23:46

Choose a tag to compare

  • Repository maintenance, split off from main repo, improve test suite and documentation
  • First class support for PHP7 and HHVM (#34 by @clue)
  • Adjust compatibility to 5.3 (#30 by @clue)

v0.4.1

24 Feb 23:46

Choose a tag to compare

  • Bug fix: Fixed PSR-4 autoload path (@marcj/WyriHaximus)

v0.4.0

24 Feb 23:47

Choose a tag to compare

  • BC break: Bump minimum PHP version to PHP 5.4, remove 5.3 specific hacks
  • BC break: Update to React/Promise 2.0
  • Bug fix: Properly resolve CNAME aliases
  • Dependency: Autoloading and filesystem structure now PSR-4 instead of PSR-0
  • Bump React dependencies to v0.4

v0.3.2

24 Feb 23:47

Choose a tag to compare

  • Feature: Support default port for IPv6 addresses (@clue)

v0.3.0

24 Feb 23:47

Choose a tag to compare

  • Bump React dependencies to v0.3

v0.2.6

24 Feb 23:48

Choose a tag to compare

  • Feature: New cache component, used by DNS

v0.2.5

24 Feb 23:49

Choose a tag to compare

  • Version bump

v0.2.4

24 Feb 23:49

Choose a tag to compare

  • Feature: Change to promise-based API (@jsor)