-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from HubSpot/feature/changelog
add change log
- Loading branch information
Showing
2 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [1.0.0-beta] - 2020-04-21 | ||
|
||
### Added | ||
|
||
- This CHANGELOG.md file. | ||
- Imports API (crm()->imports()) | ||
|
||
### Breaking changes: | ||
|
||
- Updated clients method names: | ||
1. archiveBatch => archive (crm()->associations()->batchApi()) | ||
2. createBatch => create (crm()->associations()->batchApi()) | ||
3. readBatch => read (crm()->associations()->batchApi()) | ||
4. getTypes => getAll (crm()->associations()->typesApi) | ||
5. archiveAssociation => archive (crm()->companies()->associationsApi(), crm()->contacts()->associationsApi(), crm()->deals()->associationsApi(), crm()->lineItems()->associationsApi(), crm()->products()->associationsApi(), crm()->quotes()->associationsApi(), crm()->tickets()->associationsApi()) | ||
6. createAssociation => create (crm()->companies()->associationsApi(), crm()->contacts()->associationsApi(), crm()->deals()->associationsApi(), crm()->lineItems()->associationsApi(), crm()->products()->associationsApi(), crm()->quotes()->associationsApi(), crm()->tickets()->associationsApi()) | ||
7. getAssociations => getAll (crm()->companies()->associationsApi(), crm()->contacts()->associationsApi(), crm()->deals()->associationsApi(), crm()->lineItems()->associationsApi(), crm()->products()->associationsApi(), crm()->quotes()->associationsApi(), crm()->tickets()->associationsApi()) | ||
8. archiveBatch => archive (crm()->companies()->batchApi(), crm()->contacts()->batchApi(), crm()->deals()->batchApi(), crm()->lineItems()->batchApi(), crm()->products()->batchApi(), crm()->quotes()->batchApi(), crm()->tickets()->batchApi()) | ||
9. createBatch => create (crm()->companies()->batchApi(), crm()->contacts()->batchApi(), crm()->deals()->batchApi(), crm()->lineItems()->batchApi(), crm()->products()->batchApi(), crm()->quotes()->batchApi(), crm()->tickets()->batchApi()) | ||
10. readBatch => read (crm()->companies()->batchApi(), crm()->contacts()->batchApi(), crm()->deals()->batchApi(), crm()->lineItems()->batchApi(), crm()->products()->batchApi(), crm()->quotes()->batchApi(), crm()->tickets()->batchApi()) | ||
11. updateBatch => update (crm()->companies()->batchApi(), crm()->contacts()->batchApi(), crm()->deals()->batchApi(), crm()->lineItems()->batchApi(), crm()->products()->batchApi(), crm()->quotes()->batchApi(), crm()->tickets()->batchApi()) | ||
12. archiveEventTemplate => archive (crm()->timeline()->templatesApi()) | ||
13. createEventTemplate => create (crm()->timeline()->templatesApi()) | ||
14. getAllEventTemplates => getAll (crm()->timeline()->templatesApi()) | ||
15. getEventTemplateById => getById (crm()->timeline()->templatesApi()) | ||
16. updateEventTemplate => update (crm()->timeline()->templatesApi()) | ||
17. archiveEventTemplateToken => archive (crm()->timeline()->tokensApi()) | ||
18. createEventTemplateToken => create (crm()->timeline()->tokensApi()) | ||
19. updateEventTemplateToken => update (crm()->timeline()->tokensApi()) | ||
20. clearSettings => clear (webhooks()->settingsApi()) | ||
21. configureSettings => configure (webhooks()->settingsApi()) | ||
22. getSettings => getAll (webhooks()->settingsApi()) | ||
23. deleteSubscription => archive (webhooks()->subscriptionsApi()) | ||
24. getSubscription => getById (webhooks()->subscriptionsApi()) | ||
25. getSubscriptions => getAll (webhooks()->subscriptionsApi()) | ||
26. updateSubscription => update (webhooks()->subscriptionsApi()) | ||
|
||
[unreleased]: https://github.com/HubSpot/hubspot-api-php/compare/v1.0.0-beta...HEAD | ||
[1.0.0-beta]: https://github.com/HubSpot/hubspot-api-php/releases/tag/v1.0.0-beta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters