File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 22
33All 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
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments