Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
66fdc55
Update Node.js to v14 (closes #1129) (#1130)
igneel64 Jan 9, 2023
9d9a461
Update browser targets for compilation (closes #1131) (#1132)
igneel64 Jan 9, 2023
84e0575
Upgrade UUID to 8.3.2
igneel64 Jan 12, 2023
97bc039
Revise Node.js initialization API
igneel64 Feb 3, 2023
d04e9e8
Revise default plugins included on the JavaScript tracker (#1147)
igneel64 Feb 8, 2023
dce3f43
Change default tracker initialization parameters for JS/Browser v4
igneel64 Mar 9, 2023
b98cd4b
Fix newTracker typing to accurately return null or undefined (fix #1167)
igneel64 Aug 16, 2023
1ef8125
Fix newTracker optional typing (#1237)
igneel64 Oct 13, 2023
993a247
Add event delegation for link click tracking (#1325)
jethron Jul 10, 2024
bf78a16
Add a filter function to plugins to filter out events so that they ar…
matus-tomlein Jul 11, 2024
3d6bd25
Add event delegation for form tracking (#1329)
jethron Jul 19, 2024
703d99f
Add support for named global context (#1331)
jethron Jul 23, 2024
a2d44d0
Use fetch API instead of XMLHttpRequest both in browser and Node trac…
matus-tomlein Aug 29, 2024
c7ae894
Add browser-tracker-core default for os_timezone (#1338)
jethron Sep 2, 2024
e0904d8
Fix message when a resource triggers errors (#1341)
jethron Sep 10, 2024
aa2c481
Fix SelfDescribingJson type to allow optional keys in type parameter …
jethron Oct 1, 2024
60adf51
Remove browser-features, optimizely, ecommerce and consent plugins, d…
matus-tomlein Oct 1, 2024
2904b86
Make cookie writes async by default to improve tracker performance (#…
matus-tomlein Oct 3, 2024
2000f89
Migrate to Media Tracking plugin for HTML5 Plugin (#1344)
greg-el Sep 19, 2024
c118235
Update discoverRootDomain default behaviour (#1350)
jethron Oct 8, 2024
e67894e
Disable b64 for SDJ data on POST requests from browsers by default (#…
jethron Oct 9, 2024
08ce63a
Switch to GA4 as default for gaCookies plugin (#1349)
jethron Oct 9, 2024
fd737a5
Use capture-phase listeners for button click tracking (#1348)
jethron Oct 9, 2024
6dfe806
Support events on buttons/links/forms in ShadowDOMs (#1351)
jethron Oct 9, 2024
f7ab9ee
Fix GA cookies unit tests broken by #1349 (#1353)
jethron Oct 11, 2024
bb3508e
Fix SelfDescribingJson type regression from #1330 (#1347)
jethron Oct 14, 2024
09d866d
Migrate to v2 Media for youtube-tracking plugin (#1342)
jethron Oct 15, 2024
9803c39
Make base64 encoding an optional parameter in Node newTracker call (#…
matus-tomlein Oct 18, 2024
2db12df
Enable batching multiple events into a single POST request over buffe…
matus-tomlein Oct 18, 2024
6c00618
Update uuid package dependency to version 10.0.0 (close #1305)
matus-tomlein Oct 21, 2024
72d6004
Read the request response to avoid overlapping requests to collector …
matus-tomlein Oct 22, 2024
e025a3d
Change the default value for keepalive to false (#1359)
matus-tomlein Oct 24, 2024
b8fda2b
Fill empty targetUrl for link clicks with "about:invalid" to avoid fa…
matus-tomlein Oct 25, 2024
fe2126f
Prepare for 4.0.0 release
matus-tomlein Oct 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 5 additions & 5 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
chrome >= 32,
ie >= 9,
edge >= 13,
firefox >= 27,
safari >= 8,
chrome >= 72,
ie >= 11,
edge >= 79,
firefox >= 78,
safari >= 9.1,
10 changes: 5 additions & 5 deletions .bundlemonrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@
},
{
"path": "./trackers/browser-tracker/dist/index.umd.min.js",
"maxSize": "16kb",
"maxSize": "20kb",
"maxPercentIncrease": 10
},
{
"path": "./trackers/javascript-tracker/dist/sp.js",
"maxSize": "26kb",
"maxSize": "30kb",
"maxPercentIncrease": 10
},
{
"path": "./trackers/javascript-tracker/dist/sp.lite.js",
"maxSize": "16kb",
"maxSize": "20kb",
"maxPercentIncrease": 10
},
{
"path": "./libraries/browser-tracker-core/dist/index.module.js",
"maxSize": "28kb",
"maxSize": "25kb",
"maxPercentIncrease": 10
},
{
"path": "./libraries/tracker-core/dist/index.module.js",
"maxSize": "15kb",
"maxSize": "20kb",
"maxPercentIncrease": 10
}
],
Expand Down
Loading