Skip to content

Commit 93c688e

Browse files
committed
TestResponse: setCookie() has parameter sameSite to match default Response implementation
1 parent 6c71d68 commit 93c688e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased](https://github.com/orisai/nette-http/compare/1.1.0...HEAD)
99

10+
### Fixed
11+
12+
- `TestResponse`
13+
- `setCookie()` has parameter `sameSite` to match default `Response` implementation
14+
1015
## [1.1.0](https://github.com/orisai/nette-http/compare/1.0.1...1.1.0) - 2022-12-10
1116

1217
### Added

src/Tester/TestResponse.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ public function setCookie(
143143
?string $path = null,
144144
?string $domain = null,
145145
?bool $secure = null,
146-
?bool $httpOnly = null
146+
?bool $httpOnly = null,
147+
?string $sameSite = null
147148
): self
148149
{
149150
$this->cookies[$name] = [

0 commit comments

Comments
 (0)