We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c71d68 commit 93c688eCopy full SHA for 93c688e
CHANGELOG.md
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
8
## [Unreleased](https://github.com/orisai/nette-http/compare/1.1.0...HEAD)
9
10
+### Fixed
11
+
12
+- `TestResponse`
13
+ - `setCookie()` has parameter `sameSite` to match default `Response` implementation
14
15
## [1.1.0](https://github.com/orisai/nette-http/compare/1.0.1...1.1.0) - 2022-12-10
16
17
### Added
src/Tester/TestResponse.php
@@ -143,7 +143,8 @@ public function setCookie(
143
?string $path = null,
144
?string $domain = null,
145
?bool $secure = null,
146
- ?bool $httpOnly = null
+ ?bool $httpOnly = null,
147
+ ?string $sameSite = null
148
): self
149
{
150
$this->cookies[$name] = [
0 commit comments