Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@openreplay/tracker

Package Overview
Dependencies
Maintainers
3
Versions
218
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openreplay/tracker - npm Package Compare versions

Comparing version 14.0.2 to 14.0.3

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 14.0.3
- send integer instead of float for normalizedX/Y coords (basically moving from 0-100 to 0-10000 range)
# 14.0.2

@@ -2,0 +6,0 @@

2

cjs/app/index.js

@@ -97,3 +97,3 @@ "use strict";

this.activityState = ActivityState.NotActive;
this.version = '14.0.2'; // TODO: version compatability check inside each plugin.
this.version = '14.0.3'; // TODO: version compatability check inside each plugin.
this.socketMode = false;

@@ -100,0 +100,0 @@ this.compressionThreshold = 24 * 1000;

@@ -101,3 +101,3 @@ "use strict";

req.send(JSON.stringify({
trackerVersion: '14.0.2',
trackerVersion: '14.0.3',
projectKey: this.options.projectKey,

@@ -104,0 +104,0 @@ doNotTrack,

@@ -194,3 +194,3 @@ "use strict";

function roundNumber(num) {
return Math.round(num * 1e3) / 1e1;
return Math.round(num * 1e4);
}

@@ -68,3 +68,3 @@ import { gzip } from 'fflate';

this.activityState = ActivityState.NotActive;
this.version = '14.0.2'; // TODO: version compatability check inside each plugin.
this.version = '14.0.3'; // TODO: version compatability check inside each plugin.
this.socketMode = false;

@@ -71,0 +71,0 @@ this.compressionThreshold = 24 * 1000;

@@ -70,3 +70,3 @@ import App, { DEFAULT_INGEST_POINT } from './app/index.js';

req.send(JSON.stringify({
trackerVersion: '14.0.2',
trackerVersion: '14.0.3',
projectKey: this.options.projectKey,

@@ -73,0 +73,0 @@ doNotTrack,

@@ -191,3 +191,3 @@ import { hasTag, isSVGElement, isDocument } from '../app/guards.js';

function roundNumber(num) {
return Math.round(num * 1e3) / 1e1;
return Math.round(num * 1e4);
}
{
"name": "@openreplay/tracker",
"description": "The OpenReplay tracker main package",
"version": "14.0.2",
"version": "14.0.3",
"keywords": [

@@ -6,0 +6,0 @@ "logging",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc