Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
a6ebf27
Update Kissmetrics domain
NathanielWroblewski Jun 17, 2020
d9885dd
Bump Kissmetrics integration version
NathanielWroblewski Jun 17, 2020
cd6e5c6
add support for collectHighEntropyUserAgentHints
rhall-twilio Oct 21, 2022
ad6dc1a
Google Ads (GTag): add support for doubleclick floodlight id
rhall-twilio Feb 6, 2023
06e13b1
nit: add floodlightAccountId as an option to the initializer
rhall-twilio Feb 7, 2023
479317f
bump package.json for google ads
rhall-twilio Feb 8, 2023
09f410a
Merge branch 'STRATCONN-1287' into staging
rhall-twilio Feb 8, 2023
3126cd7
[STAGE] Hgi 404 update our pinned version of sentry to v7.40 (#742)
AnkitUnthinkable Mar 30, 2023
e286b36
Hgi 404 update our pinned version of sentry to v7.45 (#743)
AnkitUnthinkable Mar 30, 2023
26eac4a
updated load-iframe and anlytics.js-integrations versions
Apr 5, 2023
5b81fcf
Merge branch 'strat-1996' into staging
Apr 6, 2023
124af39
updated analytics.js-integration version of root
Apr 11, 2023
25e6592
Merge branch 'strat-1996' into staging
Apr 11, 2023
e8db292
udpated analytic.js integration version in root package.json
Apr 12, 2023
4539d87
updated anlytics.js-integratin version and passed an argument to spec…
Apr 14, 2023
fd372b4
yarn.locl
Apr 14, 2023
a8e9879
Merge branch 'strat-1996' into staging
Apr 14, 2023
3972a81
passing an paramter to load function
Apr 17, 2023
5823b87
Merge branch 'strat-1996' into staging
Apr 17, 2023
3abe426
Merge branch 'master' into strat-1996
Innovative-GauravKochar Apr 17, 2023
b66785e
updated analuytics version to 3.3.4-alpha.3
Apr 17, 2023
c085407
Merge branch 'strat-1996' of ssh://github.com/segmentio/analytics.js-…
Apr 17, 2023
10a3a06
updated version and resolved conflicts
Apr 18, 2023
06cdd27
updated analutics.j-integration
Apr 18, 2023
87fa32c
Merge branch 'strat-1996' into staging
Apr 18, 2023
0116f93
Add option to choose a custom bucket
paco-walkme Jun 1, 2023
90d1366
fix typo
paco-walkme Jun 1, 2023
42ad08e
forcing use the `bucket` option
paco-walkme Jun 1, 2023
2388376
update literal to friendly name
paco-walkme Jun 14, 2023
099020d
fix typo
paco-walkme Jul 5, 2023
168ebb0
fix typo
varadarajan-tw Jul 5, 2023
6e95629
Merge remote-tracking branch 'origin2/feature/add_bucket_option' into…
varadarajan-tw Jul 6, 2023
0b74b96
rename customDirectory -> customDirecotry
varadarajan-tw Jul 6, 2023
e9878ae
fix: dont use ES6
paco-walkme Jul 12, 2023
89869fd
Merge branch 'add_bucket_option' into staging
varadarajan-tw Jul 17, 2023
2a89693
[STAGE] Stratconn-2841 (#772)
AnkitSegment Aug 4, 2023
ff5f545
Revert "[STAGE] Stratconn-2841 (#772)" (#773)
AnkitSegment Aug 4, 2023
95086a2
[stage] Stratconn 2841 (#774)
AnkitSegment Aug 4, 2023
8399f05
Revert "[stage] Stratconn 2841 (#774)" (#777)
AnkitSegment Aug 4, 2023
d4ef68a
[stage] Startconn 2841 (#779)
AnkitSegment Aug 4, 2023
ebf1865
[stage] Startconn 2841 (#780)
AnkitSegment Aug 4, 2023
967ad28
[stage] STRATCONN-2841 (#781)
AnkitSegment Aug 7, 2023
628a343
[stage] stratconn-2841 (#782)
AnkitSegment Aug 7, 2023
765339c
Merge branch 'staging' into nw/update-domain
Innovative-GauravKochar Oct 13, 2023
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
4 changes: 4 additions & 0 deletions integrations/kissmetrics/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.2.0 / 2020-06-17
==================

* Update domain

2.1.1 / 2016-09-06
==================
Expand Down
8 changes: 3 additions & 5 deletions integrations/kissmetrics/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@ var KISSmetrics = (module.exports = integration('KISSmetrics')
.option('trackNamedPages', true)
.tag(
'library',
'<script src="//scripts.kissmetrics.com/{{ apiKey }}.2.js">'
'<script src="//scripts.kissmetrics.io/{{ apiKey }}.2.js">'
));

/**
* Check if browser is mobile, for kissmetrics.
*
* http://support.kissmetrics.com/how-tos/browser-detection.html#mobile-vs-non-mobile
*/

exports.isMobile =
Expand All @@ -45,7 +43,7 @@ exports.isMobile =
/**
* Initialize.
*
* http://support.kissmetrics.com/apis/javascript
* https://support.kissmetrics.io/docs/javascript-library
*/

KISSmetrics.prototype.initialize = function() {
Expand Down Expand Up @@ -136,7 +134,7 @@ KISSmetrics.prototype.track = function(track) {
if (revenue) {
// legacy: client side integration used to only send 'Billing Amount', but
// our server side sent both 'revenue' and 'Billing Amount'. From the docs,
// http://support.kissmetrics.com/tools/revenue-report.html, ther is no
// https://support.kissmetrics.io/docs/revenue-report-1, there is no
// reason to send it as 'Billing Amount', but we don't want to break reports
// so we send it as 'revenue' and 'Billing Amount' for consistency across
// platforms.
Expand Down
2 changes: 1 addition & 1 deletion integrations/kissmetrics/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@segment/analytics.js-integration-kissmetrics",
"description": "The Kissmetrics analytics.js integration.",
"version": "2.1.1",
"version": "2.2.0",
"keywords": [
"analytics.js",
"analytics.js-integration",
Expand Down