Skip to content

Commit b56ee52

Browse files
authored
Merge branch '7.x' into dependabot/composer/tools/phpunit/phpunit-9.6.23
2 parents 9196aaf + df6ee01 commit b56ee52

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/test-suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
static-analyze:
1414
name: "Static Analyze"
1515

16-
runs-on: "ubuntu-20.04"
16+
runs-on: "ubuntu-22.04"
1717

1818
steps:
1919
- name: "Checkout"
@@ -59,7 +59,7 @@ jobs:
5959
php-version:
6060
- "8.2"
6161
operating-system:
62-
- "ubuntu-20.04"
62+
- "ubuntu-22.04"
6363

6464
steps:
6565
- name: "Checkout"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [Unreleased] - 2025-06-19
2+
3+
### Changed
4+
- [#753](https://github.com/amazon-php/sp-api-sdk/pull/753) - **Update GitHub test-suite to use Ubuntu-22.04** - [@jasonhebert](https://github.com/jasonhebert)
5+
- [#753](https://github.com/amazon-php/sp-api-sdk/pull/753) - **Make implicitly null param explicitly null in LoggerConfiguration** - [@jasonhebert](https://github.com/jasonhebert)
6+
17
## [7.1.0] - 2025-02-28
28

39
### Added

src/AmazonPHP/SellingPartner/Configuration/LoggerConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public function enableAPIOperation(string $api, string $operation) : self
124124
return $this;
125125
}
126126

127-
public function isSkipped(string $api, string $operation = null) : bool
127+
public function isSkipped(string $api, string|null $operation = null) : bool
128128
{
129129
if (\in_array($api, $this->skippedAPIs, true)) {
130130
return true;

0 commit comments

Comments
 (0)