Skip to content

Commit

Permalink
version 3.0.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed May 18, 2022
1 parent 5c8ae3e commit 00fc178
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
9 changes: 9 additions & 0 deletions docs/get-started/upgrading-from-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

0 comments on commit 00fc178

Please sign in to comment.