Releases: podium/uinta
Releases · podium/uinta
v0.3.1
Bug Fixes
- When the
include_variables
flag was passed to the plug, any time a post request was received without variables in the request body, an error would occur. In this update, variables will only be looked for if the request has both anoperationName
andtype
. Additionally it will now only return variables if they were given, whether the request be a GraphQL one or not.
v0.3.0
New Features
- filter variables
When passing theinclude_variables: true
flag toUinta.Plug
, the variablespassword
,passwordConfirmation
,idToken
, andrefreshToken
will now be filtered from the logs by default. If you would like to disable this, you can pass the optionfilter_variables: []
to the plug. You can also pass in a custom list of variables to filter out.