Skip to content

Commit

Permalink
Add missing changes from v1.5.0 (#9)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
crynobone authored Dec 14, 2024
1 parent 4e88f5a commit 6db2abd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
os:
- "ubuntu-latest"
php:
- 8.1
- 8.2
- 8.3
experimental:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"laravel/nova-devtool": "^1.0.1",
"laravel/pint": "^1.17",
"orchestra/testbench": "^8.20 || ^9.0",
"phpstan/phpstan": "^1.11",
"orchestra/pest-plugin-testbench": "^2.0"
"orchestra/pest-plugin-testbench": "^2.0",
"phpstan/phpstan": "^1.11"
},
"conflict": {
"laravel/nova": "<5.0.0 || >=6.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Jobs/QueuedExportAsCsv.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function handle(): void
$query = unserialize($this->query);

$eloquentGenerator = function () use ($query) {
foreach ($query->cursor() as $model) {
foreach ($query->lazy() as $model) {
yield $model;
}
};
Expand Down

0 comments on commit 6db2abd

Please sign in to comment.