Releases: intercom/intercom-php
Releases · intercom/intercom-php
New PHP release
5.0.1 Update README.md (#379)
v5.0.0
Supporting http-message@v2 and some minor bugfixes.
What's Changed
- Allow psr/http-message v2 by @FlashBlack in #364
- Make
IntercomClient::$password
explicitly nullable by @hhamon in #373
New Contributors
- @FlashBlack made their first contribution in #364
- @hhamon made their first contribution in #373
Full Changelog: v4.5.0...v4.5.1
HTTP: Add support for PSR17/PSR18
What's Changed
- HTTP: add support for PSR17/PSR18 and drop usage of deprecated client discovery by @glaubinix in #363
New Contributors
- @glaubinix made their first contribution in #363
Fixes and Improvements
Fix bug in nextSearchPage
Fixed a bug in nextSearchPage
. This method was wrongfully processing the response twice, which could lead to exceptions depending on the PHP configuration.
Fix bug in contact update method
The previous release introduced support for the Contacts API. However, the contact update method wasn't working because it was missing the contact id in the URL. This release fixes the $client->contacts->update
method.
Add support for API 2.0
This release includes the following:
- API 2.0 support: Contact resource and Conversation Search.
- Updates to the readme to specify which resources are available in which versions.
Add support for Teams
This release adds support for Teams:
- List all teams with
$intercomClient->teams->getTeams()
- Get a single team with
$intercomClient->teams->getTeam($id)
Add support for listing users of a company
This release adds support for listing users of a company via $intercomClient->companies->getCompanyUsers($id)