Skip to content

Commit

Permalink
Finish 4.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosnar committed Jun 21, 2022
1 parent fc549e1 commit f1cbea0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
# Bulk Edit Changelog

## 4.0.0 - UNRELEASED
## 4.0.0-RC1 - 2022-06-22

### Added
- "Select All" support
- "Select All" support - this works well with filtres, conditions, etc.

### Changed
- Bulk Edit now requires Craft 4
- Plugin no longer requires db tables - all data is now stored in the queue job.
- Refactor
- Field strategies are now represented as classes implementing FieldStrategyInterface
-
- Refactored field rendering for future support of native fields

## 2.0.6 - 2021-07-22
### 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": "venveo/craft-bulkedit",
"description": "Bulk edit Craft CMS element fields",
"type": "craft-plugin",
"version": "4.0.0",
"version": "4.0.0-RC1",
"keywords": [
"craft",
"cms",
Expand Down
5 changes: 4 additions & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ public function init()
];
}

$event->permissions[Craft::t('venveo-bulk-edit', 'Bulk Edit')] = $permissions;
$event->permissions[] = [
'heading' => Craft::t('venveo-bulk-edit', 'Bulk Edit'),
'permissions' => $permissions
];
});

if (Craft::$app->request->isCpRequest) {
Expand Down

0 comments on commit f1cbea0

Please sign in to comment.