Skip to content

Commit f1cbea0

Browse files
committed
Finish 4.0.0-RC1
1 parent fc549e1 commit f1cbea0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# Bulk Edit Changelog
22

3-
## 4.0.0 - UNRELEASED
3+
## 4.0.0-RC1 - 2022-06-22
44

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

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

1514
## 2.0.6 - 2021-07-22
1615
### Fixed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "venveo/craft-bulkedit",
33
"description": "Bulk edit Craft CMS element fields",
44
"type": "craft-plugin",
5-
"version": "4.0.0",
5+
"version": "4.0.0-RC1",
66
"keywords": [
77
"craft",
88
"cms",

src/Plugin.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ public function init()
7373
];
7474
}
7575

76-
$event->permissions[Craft::t('venveo-bulk-edit', 'Bulk Edit')] = $permissions;
76+
$event->permissions[] = [
77+
'heading' => Craft::t('venveo-bulk-edit', 'Bulk Edit'),
78+
'permissions' => $permissions
79+
];
7780
});
7881

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

0 commit comments

Comments
 (0)