Skip to content

Commit

Permalink
Updated changelog to reflect latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
johanhaleby committed Jan 17, 2020
1 parent 991ec5c commit a2e3085
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions changelog.txt
Expand Up @@ -46,6 +46,25 @@ Changelog next version
RestAssured.config = RestAssured.config.objectMapperConfig(ObjectMapperConfig.objectMapperConfig().defaultObjectMapperType(ObjectMapperType.JSONB));

(thanks to Andrew Guibert for pull request)
* Added ability to blacklist headers so that they are not shown in the request or response log. Instead the header value will be replaced with "[ BLACKLISTED ]". You can enable this per header basis using the LogConfig:

given().config(config().logConfig(logConfig().blacklistHeader("Accept"))). ..

The response log will the print:

Request method: GET
Request URI: http://localhost:8080/something
Proxy: <none>
Request params: <none>
Query params: <none>
Form params: <none>
Path params: <none>
Headers: Accept=[ BLACKLISTED ]
Cookies: <none>
Multiparts: <none>
Body: <none>

(thanks to Simone Ivan Conte for the help)

Changelog 4.1.2 (2019-10-02)
----------------------------
Expand Down

0 comments on commit a2e3085

Please sign in to comment.