diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f55425..6a4f03f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 3.0.0-beta.4 - 2022-05-18 + +### Added +- Add resave console command for elements. +- Add checks for registering events for performance. +- Add `archiveTableIfExists()` to install migration. + +### Changed +- Rename model classes. +- Rename record classes. +- Rename service classes. +- Rename base plugin methods. + +### Fixed +- Fix JS not initialising when selecting new fields in settings (`footHtml` to `bodyHtml`). +- Fix an error when running the “check content tables” helper. +- Fix an error with new static fields not having any field content output in the control panel. +- Fix an error where return type of `prepareQuery` was incorrect. (thanks @davidwebca). + +### Removed +- Remove deprecated Craft and Super Table functions. + ## 3.0.0-beta.3 - 2022-03-16 ### Fixed diff --git a/composer.json b/composer.json index bbc592c..fffb8dc 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "verbb/super-table", "description": "Super-charge your Craft workflow with Super Table. Use it to group fields together or build complex Matrix-in-Matrix solutions.", "type": "craft-plugin", - "version": "3.0.0-beta.3", + "version": "3.0.0-beta.4", "keywords": [ "craft", "cms", diff --git a/docs/get-started/upgrading-from-v2.md b/docs/get-started/upgrading-from-v2.md index dd6349c..0f1f68f 100644 --- a/docs/get-started/upgrading-from-v2.md +++ b/docs/get-started/upgrading-from-v2.md @@ -10,3 +10,12 @@ Old | What to do instead | `verbb\supertable\record\SuperTableBlockRecord` | `verbb\supertable\record\SuperTableBlock` | `verbb\supertable\record\SuperTableBlockTypeRecord` | `verbb\supertable\record\SuperTableBlockType` | `verbb\supertable\services\SuperTableService` | `verbb\supertable\services\Service` + +## Query Params +Some element query params have been removed: + +Old Param | What to do instead +--- | --- +| `ownerLocale` | `site` or `siteId` +| `ownerSite` | `site` +| `ownerSiteId` | `siteId`