Skip to content

Commit

Permalink
Merge branch 'main' into feature/laravel12
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentBean authored Feb 13, 2025
2 parents c8f71f2 + f9dd50a commit 4596292
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog

[Unreleased changes](https://github.com/justbetter/laravel-magento-client/compare/2.6.0...main)
[Unreleased changes](https://github.com/justbetter/laravel-magento-client/compare/2.6.1...main)
## [2.6.1](https://github.com/justbetter/laravel-magento-client/releases/tag/2.6.1) - 2024-09-09

### What's Changed
* Increase release time to 30 seconds by @VincentBean in https://github.com/justbetter/laravel-magento-client/pull/43


**Full Changelog**: https://github.com/justbetter/laravel-magento-client/compare/2.6.0...2.6.1

## [2.6.0](https://github.com/justbetter/laravel-magento-client/releases/tag/2.6.0) - 2024-08-23

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion docs/migrations/GRAYLOON.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class Example
->where('email', 'like', '%@example.com')
->get();

$this->magento->get('customers', $searchCriteria);
$this->magento->get('customers/search', $searchCriteria);
}

public function getStoreConfigs(): void
Expand Down
2 changes: 1 addition & 1 deletion src/Jobs/Middleware/AvailableMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class AvailableMiddleware

protected int $seconds;

public function __construct(?string $connection = null, int $seconds = 5)
public function __construct(?string $connection = null, int $seconds = 30)
{
$this->connection = $connection ?? config('magento.connection');
$this->seconds = $seconds;
Expand Down

0 comments on commit 4596292

Please sign in to comment.