Skip to content

Commit e9d8a4b

Browse files
Update changelog
1 parent 1f0de81 commit e9d8a4b

1 file changed

Lines changed: 21 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/HubSpot/hubspot-api-php/compare/12.1.0...HEAD)
8+
## [Unreleased](https://github.com/HubSpot/hubspot-api-php/compare/12.2.0...HEAD)
99

10-
## [13.0.0](https://github.com/HubSpot/hubspot-api-php/releases/tag/13.0.0-beta) - 2024-04-17
10+
## [13.0.0-beta](https://github.com/HubSpot/hubspot-api-php/releases/tag/13.0.0-beta) - 2024-04-28
1111

1212
### CMS
1313

1414
- Moved methods `archive`, `callClone`, `create`, `getById`, `pushLive`, `resetDraft`, `schedule`, `update` and `updateDraft` from `cms()->blogs()->blogPostsApi()` to `cms()->blogs()->basicApi()`.
1515
- Moved and renamed methods `archiveBatch` => `archive`, `createBatch` => `create`, `readBatch` => `read` and `updateBatch` => `update` from `cms()->blogs()->blogPostsApi()` to `cms()->blogs()->batchApi()`.
1616
- Moved methods `attachToLangGroup`, `createLangVariation`, `detachFromLangGroup`, `setLangPrimary` and `updateLangs` from `cms()->blogs()->blogPostsApi()` to `cms()->blogs()->multiLanguageApi()`.
17+
- Removed `cms()->perfomance()` API client.
1718

1819
### CRM
1920

@@ -73,7 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7374
- Renamed `events()->send()->customEventDataApi()` to `events()->send()->basicApi()`.
7475
- Added `events()->send()->batchApi()` API.
7576

76-
### Marketing
77+
### Marketing Events
7778

7879
- Renamed `marketing()->events()->attendanceSubscriberStateChangesApi()` to `marketing()->events()->addEventAttendeesApi()`.
7980
- Added new methods `recordByContactId()` and `recordByEmail()` to `marketing()->events()->addEventAttendeesApi()`.
@@ -89,9 +90,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8990

9091
### Files
9192

92-
- Changed options order and added new options from `files()->filesApi()->doSearch($properties = null, $after = null, $before = null, $limit = null, $sort = null, $id = null, $created_at = null, $created_at_lte = null, $created_at_gte = null, $updated_at = null, $updated_at_lte = null, $updated_at_gte = null, $name = null, $path = null, $parent_folder_id = null, $size = null, $height = null, $width = null, $encoding = null, $type = null, $extension = null, $url = null, $is_usable_in_content = null, $allows_anonymous_access = null)` to `files()->filesApi()->doSearch($properties = null, $after = null, $before = null, $limit = null, $sort = null, $ids = null, $id_lte = null, $id_gte = null, $created_at = null, $created_at_lte = null, $created_at_gte = null, $updated_at = null, $updated_at_lte = null, $updated_at_gte = null, $name = null, $path = null, $parent_folder_ids = null, $size = null, $size_lte = null, $size_gte = null, $height = null, $height_lte = null, $height_gte = null, $width = null, $width_lte = null, $width_gte = null, $encoding = null, $type = null, $extension = null, $url = null, $is_usable_in_content = null, $allows_anonymous_access = null, $file_md5 = null, $expires_at = null, $expires_at_lte = null, $expires_at_gte = null)`.
93+
- Changed incomining parameters list in `files()->filesApi()->doSearch()`.
94+
- Renamed method `archiveGDPR()` to `delete()` in `files.filesApi`.
95+
- Renamed method `updateProperties()` to `updatePropertiesRecursively()` in `files.foldersApi`.
96+
- Added new method `updateProperties()` to `files.foldersApi`.
97+
- Changed incomining parameters list in `files()->foldersApi()->doSearch()`.
98+
- Added properties `source_group` and `file_md5` to `HubSpot\Client\Files\Model\File`.
99+
- Added property `clear_expires` to `HubSpot\Client\Files\Model\FileUpdateInput`.
100+
- Changed property type from `expires_at:int` to `expires_at:\DateTime` in `HubSpot\Client\Files\Model\FileUpdateInput`.
101+
- Added property `expires_at` to `HubSpot\Client\Files\Model\ImportFromUrlInput`.
102+
- Removed property `id` from `HubSpot\Client\Files\Model\FolderUpdateInput`.
93103

104+
## [12.2.0](https://github.com/HubSpot/hubspot-api-php/releases/tag/12.2.0) - 2025-04-28
94105

106+
## Updated
107+
108+
- Marked `cms()->performance()` API client as deprecated.
95109

96110
## [12.1.0](https://github.com/HubSpot/hubspot-api-php/releases/tag/12.1.0) - 2024-04-08
97111

@@ -941,7 +955,7 @@ ListAssociationsApi
941955
25. getSubscriptions => getAll (webhooks()->subscriptionsApi())
942956
26. updateSubscription => update (webhooks()->subscriptionsApi())
943957

944-
[Unreleased]: https://github.com/HubSpot/hubspot-api-php/compare/12.1.0...HEAD
958+
[Unreleased]: https://github.com/HubSpot/hubspot-api-php/compare/12.2.0...HEAD
945959
[1.0.0-beta]: https://github.com/HubSpot/hubspot-api-php/releases/tag/v1.0.0-beta
946960
[1.1.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/1.1.0
947961
[1.2.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/1.2.0
@@ -1000,3 +1014,5 @@ ListAssociationsApi
10001014
[11.3.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/11.3.0
10011015
[12.0.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/12.0.0
10021016
[12.1.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/12.1.0
1017+
[12.2.0]: https://github.com/HubSpot/hubspot-api-php/releases/tag/12.2.0
1018+
[13.0.0-beta]: https://github.com/HubSpot/hubspot-api-php/releases/tag/13.0.0-beta

0 commit comments

Comments
 (0)