Skip to content

Commit ea19de3

Browse files
Innovative-GauravKocharGaurav Kochar
and
Gaurav Kochar
authored
Updated latest analytics.js-integration versions for Doubleclick-Floodlight (#746)
* updated load-iframe and anlytics.js-integrations versions * updated analytics.js-integration version of root * udpated analytic.js integration version in root package.json * updated anlytics.js-integratin version and passed an argument to specify whether to load iframe to head or body * yarn.locl * passing an paramter to load function * updated analuytics version to 3.3.4-alpha.3 * updated analutics.j-integration * updated analytics.js-integration and load-iframe version --------- Co-authored-by: Gaurav Kochar <[email protected]>
1 parent b1e9a7a commit ea19de3

File tree

4 files changed

+42
-32
lines changed

4 files changed

+42
-32
lines changed

Diff for: integrations/doubleclick-floodlight/lib/index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,9 @@ Floodlight.prototype.track = function(track) {
178178

179179
// Fire each tag
180180
each(function(tagParams) {
181-
if (tagParams._type === 'sales') return self.load('sales', tagParams);
182-
return self.load('counter', tagParams);
181+
if (tagParams._type === 'sales')
182+
return self.load('sales', tagParams, null, true);
183+
return self.load('counter', tagParams, null, true);
183184
}, tags);
184185
};
185186

Diff for: integrations/doubleclick-floodlight/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@segment/analytics.js-integration-doubleclick-floodlight",
33
"description": "The DoubleClick Floodlight analytics.js integration.",
4-
"version": "1.5.4",
4+
"version": "1.5.5-alpha.5",
55
"keywords": [
66
"analytics.js",
77
"analytics.js-integration",
@@ -28,7 +28,7 @@
2828
"dependencies": {
2929
"@ndhoule/each": "^2.0.1",
3030
"@ndhoule/foldl": "^2.0.1",
31-
"@segment/analytics.js-integration": "^3.2.0",
31+
"@segment/analytics.js-integration": "3.3.4-alpha.5",
3232
"component-querystring": "^2.0.0",
3333
"obj-case": "^0.2.0",
3434
"to-no-case": "^0.1.3"

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "analytics.js-integrations",
3-
"version": "1.0.1",
3+
"version": "1.0.1-alpha.1",
44
"main": "index.js",
55
"repository": "https://github.com/segmentio/analytics.js-integrations.git",
66
"author": "Segment",
@@ -42,7 +42,7 @@
4242
"webpack-dev-server": "^3.11.0"
4343
},
4444
"dependencies": {
45-
"@segment/analytics.js-integration": "^3.3.3",
45+
"@segment/analytics.js-integration": "3.3.4-alpha.5",
4646
"domify": "1.4.1",
4747
"is-email": "1.0.2"
4848
}

Diff for: yarn.lock

+35-26
Original file line numberDiff line numberDiff line change
@@ -2020,12 +2020,11 @@
20202020
json3 "^3.3.2"
20212021
proclaim "^3.4.1"
20222022

2023-
"@segment/analytics.js-integration@^2.0.1", "@segment/analytics.js-integration@^2.1.0", "@segment/analytics.js-integration@^2.1.1":
2024-
version "2.1.1"
2025-
resolved "https://registry.yarnpkg.com/@segment/analytics.js-integration/-/analytics.js-integration-2.1.1.tgz#cdc58cdac19874eb3f088e4c3c74055dc4ef178c"
2026-
integrity sha512-FDxtGy8LcJf+oTwl8KE/5Py01UVURsc0t4+fpIBIiPlZtE3tV0jTd/eMDQ0VyBfetjQ9rrq8tk8l52JPkQObBg==
2023+
"@segment/analytics.js-integration@3.3.4-alpha.5":
2024+
version "3.3.4-alpha.5"
2025+
resolved "https://registry.yarnpkg.com/@segment/analytics.js-integration/-/analytics.js-integration-3.3.4-alpha.5.tgz#63e43662104e8c07a55d734807373bd8c4939677"
2026+
integrity sha512-/U0TfY2oMY93Im9VbQCcyAaYNSwi3Tz3l5TSH/RCgGcbjbYDZl8XjFw4mpftgpB5BmB0xjPVx5eCfhZj7TZW3w==
20272027
dependencies:
2028-
"@ndhoule/after" "^1.0.0"
20292028
"@ndhoule/clone" "^1.0.0"
20302029
"@ndhoule/defaults" "^2.0.1"
20312030
"@ndhoule/each" "^2.0.1"
@@ -2035,22 +2034,24 @@
20352034
"@ndhoule/includes" "^2.0.1"
20362035
"@segment/fmt" "^1.0.0"
20372036
"@segment/load-script" "^1.0.1"
2038-
analytics-events "^1.2.0"
2037+
analytics-events "^2.0.2"
20392038
component-bind "^1.0.0"
20402039
component-emitter "^1.2.0"
20412040
debug "^2.2.0"
2042-
domify "^1.4.0"
2041+
domify "^1.4.1"
2042+
extend "^3.0.2"
20432043
is "^3.1.0"
2044-
load-iframe "^1.0.0"
2044+
load-iframe "1.0.2-alpha.6"
20452045
next-tick "^0.2.2"
20462046
slug-component "^1.1.0"
20472047
to-no-case "^0.1.3"
20482048

2049-
"@segment/analytics.js-integration@^3.0.0", "@segment/analytics.js-integration@^3.2.1", "@segment/analytics.js-integration@^3.3.0", "@segment/analytics.js-integration@^3.3.2", "@segment/analytics.js-integration@^3.x":
2050-
version "3.3.2"
2051-
resolved "https://registry.yarnpkg.com/@segment/analytics.js-integration/-/analytics.js-integration-3.3.2.tgz#f8bc55f91f33c6fda5640418c0cf52b05300335c"
2052-
integrity sha512-dBzWc7Yvlc2OGnKvrLW7I/6PVLeQXfBZ6fbah/yM9LxHOj4W2O+isQvTpcYFOsRVBMlNDLiBI1AUXlc0OnanEg==
2049+
"@segment/analytics.js-integration@^2.0.1", "@segment/analytics.js-integration@^2.1.0", "@segment/analytics.js-integration@^2.1.1":
2050+
version "2.1.1"
2051+
resolved "https://registry.yarnpkg.com/@segment/analytics.js-integration/-/analytics.js-integration-2.1.1.tgz#cdc58cdac19874eb3f088e4c3c74055dc4ef178c"
2052+
integrity sha512-FDxtGy8LcJf+oTwl8KE/5Py01UVURsc0t4+fpIBIiPlZtE3tV0jTd/eMDQ0VyBfetjQ9rrq8tk8l52JPkQObBg==
20532053
dependencies:
2054+
"@ndhoule/after" "^1.0.0"
20542055
"@ndhoule/clone" "^1.0.0"
20552056
"@ndhoule/defaults" "^2.0.1"
20562057
"@ndhoule/each" "^2.0.1"
@@ -2060,24 +2061,22 @@
20602061
"@ndhoule/includes" "^2.0.1"
20612062
"@segment/fmt" "^1.0.0"
20622063
"@segment/load-script" "^1.0.1"
2063-
analytics-events "^2.0.2"
2064+
analytics-events "^1.2.0"
20642065
component-bind "^1.0.0"
20652066
component-emitter "^1.2.0"
20662067
debug "^2.2.0"
20672068
domify "^1.4.0"
2068-
extend "^3.0.2"
20692069
is "^3.1.0"
20702070
load-iframe "^1.0.0"
20712071
next-tick "^0.2.2"
20722072
slug-component "^1.1.0"
20732073
to-no-case "^0.1.3"
20742074

2075-
"@segment/analytics.js-integration@^3.1.0", "@segment/analytics.js-integration@^3.2.0":
2076-
version "3.3.0"
2077-
resolved "https://registry.yarnpkg.com/@segment/analytics.js-integration/-/analytics.js-integration-3.3.0.tgz#a44eac133e0ba1a26dc7387adc59c84b0ab15178"
2078-
integrity sha512-xDwQ6xQKYFMIaZd+I9SYIZNAWUk806mU18JeGpo1wj84bqKjwi8WaFYTk+keuh+B8GtIOTkH16S/orzvzmBDxw==
2075+
"@segment/analytics.js-integration@^3.0.0", "@segment/analytics.js-integration@^3.2.1", "@segment/analytics.js-integration@^3.3.0", "@segment/analytics.js-integration@^3.3.2", "@segment/analytics.js-integration@^3.x":
2076+
version "3.3.2"
2077+
resolved "https://registry.yarnpkg.com/@segment/analytics.js-integration/-/analytics.js-integration-3.3.2.tgz#f8bc55f91f33c6fda5640418c0cf52b05300335c"
2078+
integrity sha512-dBzWc7Yvlc2OGnKvrLW7I/6PVLeQXfBZ6fbah/yM9LxHOj4W2O+isQvTpcYFOsRVBMlNDLiBI1AUXlc0OnanEg==
20792079
dependencies:
2080-
"@ndhoule/after" "^1.0.0"
20812080
"@ndhoule/clone" "^1.0.0"
20822081
"@ndhoule/defaults" "^2.0.1"
20832082
"@ndhoule/each" "^2.0.1"
@@ -2092,18 +2091,19 @@
20922091
component-emitter "^1.2.0"
20932092
debug "^2.2.0"
20942093
domify "^1.4.0"
2095-
extend "3.0.1"
2094+
extend "^3.0.2"
20962095
is "^3.1.0"
20972096
load-iframe "^1.0.0"
20982097
next-tick "^0.2.2"
20992098
slug-component "^1.1.0"
21002099
to-no-case "^0.1.3"
21012100

2102-
"@segment/analytics.js-integration@^3.3.3":
2103-
version "3.3.3"
2104-
resolved "https://registry.yarnpkg.com/@segment/analytics.js-integration/-/analytics.js-integration-3.3.3.tgz#c8fb06747f0864f931c3d0a16f014d9b0e726ec2"
2105-
integrity sha512-RpUQBSE2wH/ovVrT1b0dTesalLZer7iX21p2TDaM+8mhi4M91HdqK4nOtE/Ny5+GAYU4v7LvTfvb9zgTC34rPA==
2101+
"@segment/analytics.js-integration@^3.1.0", "@segment/analytics.js-integration@^3.2.0":
2102+
version "3.3.0"
2103+
resolved "https://registry.yarnpkg.com/@segment/analytics.js-integration/-/analytics.js-integration-3.3.0.tgz#a44eac133e0ba1a26dc7387adc59c84b0ab15178"
2104+
integrity sha512-xDwQ6xQKYFMIaZd+I9SYIZNAWUk806mU18JeGpo1wj84bqKjwi8WaFYTk+keuh+B8GtIOTkH16S/orzvzmBDxw==
21062105
dependencies:
2106+
"@ndhoule/after" "^1.0.0"
21072107
"@ndhoule/clone" "^1.0.0"
21082108
"@ndhoule/defaults" "^2.0.1"
21092109
"@ndhoule/each" "^2.0.1"
@@ -2117,8 +2117,8 @@
21172117
component-bind "^1.0.0"
21182118
component-emitter "^1.2.0"
21192119
debug "^2.2.0"
2120-
domify "^1.4.1"
2121-
extend "^3.0.2"
2120+
domify "^1.4.0"
2121+
extend "3.0.1"
21222122
is "^3.1.0"
21232123
load-iframe "^1.0.0"
21242124
next-tick "^0.2.2"
@@ -10212,6 +10212,15 @@ listr@^0.14.1, listr@^0.14.2:
1021210212
p-map "^2.0.0"
1021310213
rxjs "^6.3.3"
1021410214

10215+
10216+
version "1.0.2-alpha.6"
10217+
resolved "https://registry.yarnpkg.com/load-iframe/-/load-iframe-1.0.2-alpha.6.tgz#47ad6e31a1f2d369670e29c1104ca4089312a0f2"
10218+
integrity sha512-2jJ6h6wOhZayKN6hnS8p+tjv4kf2ynBw83Pi6Gm2OvtKwsmwTOXomf2Q75BmVy+8XfXPc9pYZ9corItM7CsKwg==
10219+
dependencies:
10220+
is "^3.0.1"
10221+
next-tick "^0.2.2"
10222+
script-onload "^1.0.2"
10223+
1021510224
load-iframe@^1.0.0:
1021610225
version "1.0.0"
1021710226
resolved "https://registry.yarnpkg.com/load-iframe/-/load-iframe-1.0.0.tgz#b2c111f1a2b982897463232f5286191343bbdbd8"

0 commit comments

Comments
 (0)