All Versions
112
Latest Version
Avg Release Cycle
20 days
Latest Release
1871 days ago

Changelog History
Page 10

  • v4.4.0 Changes

    July 02, 2016

    โž• Added:

    • User registerBusiness for registration business accounts.
    • User convertToBusiness to convert simple account to a business one.
  • v4.3.0 Changes

    June 27, 2016

    โž• Added:

    • User register method

    ๐Ÿ›  Fixed:

    • Pins edit method returns bool value

    ๐Ÿ”„ Changed:

    • login, isLoggedIn and logout methods move to User provider
    • Bot login, isLoggedIn and logout methods are deprecated
    • removed RequestInterface and ResponseInterface
  • v4.2.2 Changes

    June 19, 2016

    ๐Ÿ›  Fixed:

    • keywords recommendedFor method returns an empty array if no results
    • Response hasErrors method returns true on errors
    • php version downgraded for 5.5.9
    • test changed for phpunit 4.0
    • Response getBookmarks method return empty array for no bookmarks
  • v4.2.1 Changes

    June 14, 2016

    ๐Ÿ›  Fixed:

    • news last method login requirement check
    • pagination empty result check
  • v4.2.0 Changes

    June 13, 2016

    ๐Ÿ”„ Changed:

    • functions with pagination accept a limit as a second argument, for example:

      $bot->pins->search('cats', 2)
      

      will return only two pins for the search results. The same is true about getting followers/following/pins for the user or board and getting pins from source.

    • activity method in pins provider (requires login).

  • v4.1.0 Changes

    June 12, 2016

    โž• Added:

    • bot logout method
  • v4.0.0 Changes

    June 12, 2016

    ๐Ÿ”„ Changed:

    • generator objects now return an entity for each iteration, not an array of entities. For example, to execGet search results there is no more need to make two nested loops:
     foreach($bot->pins->search('cats') as $pin) {
        echo $pin['id'], "\n";
        // ...
     }
    
     The same is true about getting followers/following/pins for the user or board and getting pins from source. 
    
  • v3.3.1 Changes

    June 12, 2016

    โž• Added:

    • isLoggedIn method
    • Response and Request refactoring
    • Better exception messages in ProviderLoginCheckWrapper
  • v3.2.3 Changes

    June 09, 2016

    ๐Ÿ›  Fixed:

    • Pins like/dislike
    • Response error check
  • v3.2.2 Changes

    June 05, 2016

    โšก๏ธ Updated:

    • Keywords provider
      • recommendedFor($query) method returns terms and their positions.