v2.4.0
-
Introduce the
captureIpconfiguration 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
truethen we will attempt to capture and store the full IP address of the client.
If set toanonymizewe will do a semi-anonymization on the captured IP address by masking out
the least significant bits.
If set tofalsewe will not attempt to capture any IP address.Default: true
-
Introduce the
captureUsernameandcaptureEmailconfiguration 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 theidfor a user.
The boolean configuration optionscaptureEmailandcaptureUsernamecan be used to change
this behaviour.