4.6 KiB
4.6 KiB
Changelog
All notable changes to this project will be documented in this file.
Unreleased
v11.0.0
Changed
- Graph API call upgrade to [v11.0]https://developers.facebook.com/docs/graph-api/changelog/version11.0
v10.0.1
Added
- Support for sending multiple values for certain UserData parameters to Conversions API.
v10.0.0
Changed
- Graph API call upgrade to v10.0
v9.0.2
Added
action_sourcefield to Event for Conversions API.
Fixed
opt_outfield was being removed when set to false for Conversions API.
v9.0.0
Changed
- Graph API call upgrade to v9.0
Added
delivery_categoryfield to Content for Conversions API.
Changed
- Add empty to the list of reserved keywords.
- Change empty value enum name in AdsPixelFirstPartyCookieStatusValues and AdsPixelDataUseSettingValues
v8.0.3
Changed
- Fixed a normalization issue for zero values in CustomData in Conversions API
- Start passing in the appsecret_proof to Conversions API custom http_clients when an appsecret is set
- A Conversions API EventRequest custom http_client must now be an object instead of a class name
v8.0.2
Added
- Added batching support to Conversions API. Create batched event requests by using BatchProcessor.
Added
lead_idfield to the Conversions APIuser_datasection.- Added HttpServiceInterface to enable the default request object to be overridden by a user-defined HTTP Request Service class. Can be used to create Conversions API event requests.
v8.0.1
Added
- Added async support to Conversions API - Create event request promises by using EventRequestAsync.
v8.0.0
Changed
- Graph API call upgrade to v8.0
Added
delivery_categoryfield in custom_data section for Conversions API(formerly Serverside API).
v7.0.2
Added
- Added support for data processing options in Serverside API. For more details see : https://developers.facebook.com/docs/marketing-apis/data-processing-options
v7.0.0
Changed
- Graph API call upgrade to v7.0
v6.0.2
Added
- Add support for custom properties in the Server-Side API
v6.0.0
Changed
- Graph API call upgrade to v6.0
v5.0.5
Added
- Server-side API added search_string to CustomData and fixed setLastName in UserData object.
v5.0.3
Added
- Added function
getHeadersin RequestException class which provides header information
Fixed
- Server Side API CustomData model normalization fix
v5.0.2
Added
- Added
CrashRepoter, more context available here
v5.0.1
Added
- Added strongly typed Server-Side API for Web (https://developers.facebook.com/docs/marketing-api/facebook-pixel/server-side-api/using-the-api)
v5.0.0
Changed
- Graph API call upgrade to v5.0
v4.0.6
Fixed
- Add back
sourceparam inAdaccount->createAdVideo.
v4.0.5
Fixed
- Introduce
addUsersMultiKeyandremoveUsersMultiKeyinCustomAudienceto still allow add users toCustomAudiencewith multiple keys afterCustomAudienceMultiKeybeen deprecated.
v4.0.0
Changed
- Graph API call upgrade to v4.0
v3.3.1
Changed
- Remove list of API call from Business SDK, any these APIs included in Business SDK will be deprecated.
v3.3.0
Changed
- Graph API call upgrade to v3.3
Deprecated
- Deprecated
parentIDinAbstractCrudObject. - Deprecated
CustomAudienceMultiKey, use classCustomAudienceinstead. - Deprecated functions
create,read,updateinAbstractCrudObject. Check out our recommended way to make API call.readwill reset the object fields, whilegetSelfwill get a new object. For example :$async_job = $adaccount->getInsightsAsync($fields, $params); $async_job = $async_job->getSelf(); while (!$async_job->isComplete()) { sleep(1); $async_job = $async_job->getSelf(); }