v2.4.0
-
Introduce the
captureIp
configuration settting.
For browser settings, this determines how we attempt to capture IP addresses from the client
that submits items. For server settings, this determines how we capture IP addresses from requests.Possible values are:
true
,false
, oranonymize
.If
true
then we will attempt to capture and store the full IP address of the client.
If set toanonymize
we will do a semi-anonymization on the captured IP address by masking out
the least significant bits.
If set tofalse
we will not attempt to capture any IP address.Default: true
-
Introduce the
captureUsername
andcaptureEmail
configuration settings.
In the server context, as described in the documentation, we attempt to gather information about
the current user. Prior to this release, we tried to gather theid
,username
, andemail
.
Starting with this release, by default we only attempt to capture theid
for a user.
The boolean configuration optionscaptureEmail
andcaptureUsername
can be used to change
this behaviour.