Skip to content

Releases: anime-db/my-anime-list-browser-bundle

v1.1.1

20 Aug 21:09
Compare
Choose a tag to compare

Changes

  • Wrap Guzzle client exceptions.

v1.1.0

27 Jul 08:39
Compare
Choose a tag to compare

Changes

  • Create detector for detect errors in response.

    use AnimeDb\Bundle\MyAnimeListBrowserBundle\Exception\BannedException;
    use AnimeDb\Bundle\MyAnimeListBrowserBundle\Exception\NotFoundException;
    
    try {
        $content = $browser->get('/anime/1');
    } catch (BannedException $e) {
        // you are banned
    } catch (NotFoundException $e) {
        // page not found
    } catch (\Exception $e) {
        // other exceptions
    }

v1.0.1

21 Jul 14:44
Compare
Choose a tag to compare

Changes

  • Allow override User Agent from request options.

v1.0.0

19 Jul 16:38
Compare
Choose a tag to compare
add src and tests