Note
We strive to document every potential breaking change. However, as some of these alterations occur in lesser-known sections of Bagisto, only a fraction of them may impact your application.
Impact Probability: Medium
-
Moved the
DataGridExport
class to the DataGrid package and enhanced the new exporter class with theWithQuery
interface instead ofWithView
. This change reduces the need for temporary file creation. -
We have removed the
exportFile
properties and all its associated method i.e.setExportFile
andgetExportFile
,
- protected mixed $exportFile = null;
- public function setExportFile($format = 'csv')
- public function getExportFile()
- We have removed two methods:
processPaginatedRequest
andprocessExportRequest
.
- $this->processPaginatedRequest();
- $this->processExportRequest();
- Removed all the events from the setter methods to avoid duplicate dispatching.