File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All Notable changes to ` trello-php ` will be documented in this file
4
4
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
+
5
22
## 0.5.2 - 2018-03-26
6
23
7
24
### Added
Original file line number Diff line number Diff line change @@ -240,7 +240,8 @@ public function put($path, $parameters)
240
240
public function putAsBody ($ path , $ parameters )
241
241
{
242
242
$ 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 ' );
244
245
245
246
return $ this ->sendRequest ($ request );
246
247
}
You can’t perform that action at this time.
0 commit comments