diff --git a/integrations/google-adwords-new/HISTORY.md b/integrations/google-adwords-new/HISTORY.md
index 0810298b8..7bd3d456b 100644
--- a/integrations/google-adwords-new/HISTORY.md
+++ b/integrations/google-adwords-new/HISTORY.md
@@ -1,7 +1,11 @@
+1.3.0 / 2023-02-08
+==================
+ * Introduces a new setting `floodlightAccountId` to enable passing the DoubleClick Floodlight config ID to GTag's `config` to allow better synergy between these two products.
+
1.2.0 / 2020-02-18
==================
- * Introduces a new setting `disableAdPersonalization` to disable collection of remarketing data for users who do not wish to view personalized ads. When this settiing is `true`, Segment will set `allow_ad_personalization_signals` to false.
+ * Introduces a new setting `disableAdPersonalization` to disable collection of remarketing data for users who do not wish to view personalized ads. When this setting is `true`, Segment will set `allow_ad_personalization_signals` to false.
1.1.1 / 2019-12-09
==================
diff --git a/integrations/google-adwords-new/lib/index.js b/integrations/google-adwords-new/lib/index.js
index 19e77b11e..39317b99f 100644
--- a/integrations/google-adwords-new/lib/index.js
+++ b/integrations/google-adwords-new/lib/index.js
@@ -22,6 +22,7 @@ var GoogleAdWordsNew = (module.exports = integration('Google AdWords New')
.option('pageLoadConversions', [])
.option('defaultPageConversion', '')
.option('disableAdPersonalization', false)
+ .option('floodlightAccountId', '')
// The ID in this line (i.e. the gtag.js ID) does not determine which account(s) will receive data from the tag; rather, it is used to uniquely identify your global site tag. Which account(s) receive data from the tag is determined by calling the config command (and by using the send_to parameter on an event). For instance, if you use Google Analytics, you may already have the gtag.js global site tag installed on your site. In that case, the gtag.js ID may be that of the Google Analytics property where you first obtained the snippet.
.tag(
''
+ ''
)
// Sentry.Integrations.RewriteFrames plugin: https://docs.sentry.io/platforms/javascript/#rewriteframes
.tag(
'plugin',
- ''
+ ''
));
/**
@@ -53,8 +51,8 @@ Sentry.prototype.initialize = function() {
environment: this.options.environment,
release: customRelease || this.options.release,
serverName: this.options.serverName,
- whitelistUrls: this.options.whitelistUrls,
- blacklistUrls: this.options.ignoreUrls,
+ allowUrls: this.options.allowUrls,
+ denyUrls: this.options.ignoreUrls,
// ignoreErrors still exists, but is not documented on Sentry's website
// https://github.com/getsentry/sentry-javascript/blob/master/packages/core/src/integrations/inboundfilters.ts#L12
ignoreErrors: this.options.ignoreErrors,
diff --git a/integrations/sentry/package.json b/integrations/sentry/package.json
index 33b4e2dc1..18fdfdb3a 100644
--- a/integrations/sentry/package.json
+++ b/integrations/sentry/package.json
@@ -1,7 +1,7 @@
{
"name": "@segment/analytics.js-integration-sentry",
"description": "The Sentry analytics.js integration.",
- "version": "3.0.1",
+ "version": "3.0.2",
"keywords": [
"analytics.js",
"analytics.js-integration",