Socket
Socket
Sign inDemoInstall

@openreplay/tracker

Package Overview
Dependencies
Maintainers
3
Versions
211
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 12.0.1 to 12.0.2

4

CHANGELOG.md

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

# 12.0.2
- fix for canvas snapshot check
# 12.0.1

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

6

cjs/app/canvas.js

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

if (entry.target) {
if (this.snapshots[id].createdAt) {
if (this.snapshots[id] && this.snapshots[id].createdAt) {
this.snapshots[id].paused = false;

@@ -43,3 +43,5 @@ }

else {
this.snapshots[id].paused = true;
if (this.snapshots[id]) {
this.snapshots[id].paused = true;
}
}

@@ -46,0 +48,0 @@ }

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

this.activityState = ActivityState.NotActive;
this.version = '12.0.1'; // TODO: version compatability check inside each plugin.
this.version = '12.0.2'; // TODO: version compatability check inside each plugin.
this.compressionThreshold = 24 * 1000;

@@ -87,0 +87,0 @@ this.restartAttempts = 0;

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

req.send(JSON.stringify({
trackerVersion: '12.0.1',
trackerVersion: '12.0.2',
projectKey: this.options.projectKey,

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

@@ -26,3 +26,3 @@ import { hasTag } from './guards.js';

if (entry.target) {
if (this.snapshots[id].createdAt) {
if (this.snapshots[id] && this.snapshots[id].createdAt) {
this.snapshots[id].paused = false;

@@ -41,3 +41,5 @@ }

else {
this.snapshots[id].paused = true;
if (this.snapshots[id]) {
this.snapshots[id].paused = true;
}
}

@@ -44,0 +46,0 @@ }

@@ -55,3 +55,3 @@ import ConditionsManager from '../modules/conditionsManager.js';

this.activityState = ActivityState.NotActive;
this.version = '12.0.1'; // TODO: version compatability check inside each plugin.
this.version = '12.0.2'; // TODO: version compatability check inside each plugin.
this.compressionThreshold = 24 * 1000;

@@ -58,0 +58,0 @@ this.restartAttempts = 0;

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

req.send(JSON.stringify({
trackerVersion: '12.0.1',
trackerVersion: '12.0.2',
projectKey: this.options.projectKey,

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

{
"name": "@openreplay/tracker",
"description": "The OpenReplay tracker main package",
"version": "12.0.1",
"version": "12.0.2",
"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