Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions integrations/facebook-pixel/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.11.2/ 2020-07-28
==================

* Explicitly not enable Limited Data Use (LDU) mode in the FB Pixel SDK when the Limited Data Use Segment setting is disabled.

2.11.1/ 2020-07-22
==================

Expand Down
3 changes: 3 additions & 0 deletions integrations/facebook-pixel/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ FacebookPixel.prototype.initialize = function() {
this.validateAndSetDataProcessing(
this.options.dataProcessingOptions || [['LDU'], 0, 0]
);
} else {
// explicitly not enable Limited Data Use (LDU) mode
window.fbq('dataProcessingOptions', []);
}
if (this.options.initWithExistingTraits) {
var traits = this.formatTraits(this.analytics);
Expand Down
2 changes: 1 addition & 1 deletion integrations/facebook-pixel/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@segment/analytics.js-integration-facebook-pixel",
"description": "The Facebook Pixel analytics.js integration.",
"version": "2.11.1",
"version": "2.11.2",
"keywords": [
"analytics.js",
"analytics.js-integration",
Expand Down