Skip to content

Commit 6db2abd

Browse files
authored
Add missing changes from v1.5.0 (#9)
* wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> --------- Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 4e88f5a commit 6db2abd

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/audit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
os:
1515
- "ubuntu-latest"
1616
php:
17+
- 8.1
1718
- 8.2
1819
- 8.3
1920
experimental:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"laravel/nova-devtool": "^1.0.1",
3838
"laravel/pint": "^1.17",
3939
"orchestra/testbench": "^8.20 || ^9.0",
40-
"phpstan/phpstan": "^1.11",
41-
"orchestra/pest-plugin-testbench": "^2.0"
40+
"orchestra/pest-plugin-testbench": "^2.0",
41+
"phpstan/phpstan": "^1.11"
4242
},
4343
"conflict": {
4444
"laravel/nova": "<5.0.0 || >=6.0.0"

src/Jobs/QueuedExportAsCsv.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function handle(): void
5454
$query = unserialize($this->query);
5555

5656
$eloquentGenerator = function () use ($query) {
57-
foreach ($query->cursor() as $model) {
57+
foreach ($query->lazy() as $model) {
5858
yield $model;
5959
}
6060
};

0 commit comments

Comments
 (0)