Skip to content

Commit 237a871

Browse files
committed
Update updateCardCustomField method to use send request as JSON with body
1 parent e13cdab commit 237a871

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All Notable changes to `trello-php` will be documented in this file
44

5+
## 0.5.3 - 2018-03-28
6+
7+
### Added
8+
- Nothing
9+
10+
### Deprecated
11+
- Nothing
12+
13+
### Fixed
14+
- Update updateCardCustomField method to use send request as JSON with body
15+
16+
### Removed
17+
- Nothing
18+
19+
### Security
20+
- Nothing
21+
522
## 0.5.2 - 2018-03-26
623

724
### Added

src/Http.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ public function put($path, $parameters)
240240
public function putAsBody($path, $parameters)
241241
{
242242
$request = $this->getRequest(static::HTTP_PUT, $path)
243-
->withBody(Psr7\stream_for(json_encode($parameters)));
243+
->withBody(Psr7\stream_for(json_encode($parameters)))
244+
->withHeader('content-type', 'application/json');
244245

245246
return $this->sendRequest($request);
246247
}

0 commit comments

Comments
 (0)