Skip to content

Commit 4596292

Browse files
authored
Merge branch 'main' into feature/laravel12
2 parents c8f71f2 + f9dd50a commit 4596292

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
22

3-
[Unreleased changes](https://github.com/justbetter/laravel-magento-client/compare/2.6.0...main)
3+
[Unreleased changes](https://github.com/justbetter/laravel-magento-client/compare/2.6.1...main)
4+
## [2.6.1](https://github.com/justbetter/laravel-magento-client/releases/tag/2.6.1) - 2024-09-09
5+
6+
### What's Changed
7+
* Increase release time to 30 seconds by @VincentBean in https://github.com/justbetter/laravel-magento-client/pull/43
8+
9+
10+
**Full Changelog**: https://github.com/justbetter/laravel-magento-client/compare/2.6.0...2.6.1
11+
412
## [2.6.0](https://github.com/justbetter/laravel-magento-client/releases/tag/2.6.0) - 2024-08-23
513

614
### What's Changed

docs/migrations/GRAYLOON.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class Example
9898
->where('email', 'like', '%@example.com')
9999
->get();
100100

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

104104
public function getStoreConfigs(): void

src/Jobs/Middleware/AvailableMiddleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class AvailableMiddleware
1111

1212
protected int $seconds;
1313

14-
public function __construct(?string $connection = null, int $seconds = 5)
14+
public function __construct(?string $connection = null, int $seconds = 30)
1515
{
1616
$this->connection = $connection ?? config('magento.connection');
1717
$this->seconds = $seconds;

0 commit comments

Comments
 (0)