File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 1.10.1] - 2024-03-15
8+ ### Fixed
9+ - Fix Drupal deprecations
10+
11+ ## [ 1.10.0] - 2023-09-12
12+ ### Added
13+ - Drupal 10 support
14+
715## [ 1.9.5] - 2022-1-11
816### Fixed
917- Validate access on each submitted entity for bulk action
Original file line number Diff line number Diff line change 1010 }
1111 ],
1212 "require" : {
13- "php" : " >=7.1.0 " ,
14- "drupal/core" : " ^9.1 || ^10 "
13+ "php" : " >=8.1 " ,
14+ "drupal/core" : " ^10.1 "
1515 },
1616 "require-dev" : {
1717 "ergebnis/composer-normalize" : " ^2.0" ,
Original file line number Diff line number Diff line change 66use Drupal \Core \Entity \EntityTypeManagerInterface ;
77use Drupal \Core \Extension \ModuleHandlerInterface ;
88use Drupal \Core \Plugin \DefaultPluginManager ;
9+ use Drupal \Core \Utility \Error ;
910use Drupal \wmentity_overview \Annotation \OverviewBuilder ;
1011use Drupal \wmentity_overview \FilterStorage \FilterStorageManager ;
1112use Drupal \wmentity_overview \Plugin \Factory \OverviewBuilderPluginFactory ;
@@ -142,7 +143,7 @@ protected function findDefinitions(): array
142143 } catch (\Exception $ e ) {
143144 // Catch the exception to prevent site install from failing
144145 // when the entity type in question is not yet installed.
145- watchdog_exception ( 'wmentity_overview ' , $ e );
146+ Error:: logException (\Drupal:: logger ( 'wmentity_overview ' ) , $ e );
146147 }
147148 }
148149
You can’t perform that action at this time.
0 commit comments