diff --git a/frontend/.env.sample b/frontend/.env.sample index 2c134fce1..14b084ea9 100644 --- a/frontend/.env.sample +++ b/frontend/.env.sample @@ -22,5 +22,5 @@ MINIO_ACCESS_KEY = '' MINIO_SECRET_KEY = '' # APP and TRACKER VERSIONS -VERSION = 1.16.0 -TRACKER_VERSION = '11.0.1' +VERSION = 1.18.0 +TRACKER_VERSION = '13.0.0' diff --git a/tracker/tracker-assist/bun.lockb b/tracker/tracker-assist/bun.lockb index c2538aae6..7ee069c43 100755 Binary files a/tracker/tracker-assist/bun.lockb and b/tracker/tracker-assist/bun.lockb differ diff --git a/tracker/tracker-assist/package.json b/tracker/tracker-assist/package.json index da0ada158..6268507e6 100644 --- a/tracker/tracker-assist/package.json +++ b/tracker/tracker-assist/package.json @@ -20,7 +20,7 @@ "build-cjs": "rm -Rf cjs && tsc --project tsconfig-cjs.json && echo '{ \"type\": \"commonjs\" }' > cjs/package.json && bun run replace-paths && bun run replace-req-version", "replace-paths": "replace-in-files cjs/* --string='@openreplay/tracker' --replacement='@openreplay/tracker/cjs' && replace-in-files cjs/* --string='/lib/' --replacement='/'", "replace-pkg-version": "sh pkgver.sh", - "replace-req-version": "replace-in-files lib/* cjs/* --string='REQUIRED_TRACKER_VERSION' --replacement='12.0.0'", + "replace-req-version": "replace-in-files lib/* cjs/* --string='REQUIRED_TRACKER_VERSION' --replacement='13.0.0'", "prepublishOnly": "bun run test && bun run build", "prepare": "cd ../../ && husky install tracker/.husky/", "lint-front": "lint-staged", diff --git a/tracker/tracker-redux/bun.lockb b/tracker/tracker-redux/bun.lockb index e622c8cbe..0c78f0fb8 100755 Binary files a/tracker/tracker-redux/bun.lockb and b/tracker/tracker-redux/bun.lockb differ diff --git a/tracker/tracker-redux/package.json b/tracker/tracker-redux/package.json index 8fd338fd9..acd5509a8 100644 --- a/tracker/tracker-redux/package.json +++ b/tracker/tracker-redux/package.json @@ -1,7 +1,7 @@ { "name": "@openreplay/tracker-redux", "description": "Tracker plugin for Redux state recording", - "version": "3.6.1-beta.2", + "version": "4.0.0", "keywords": [ "redux", "logging", diff --git a/tracker/tracker-redux/src/index.ts b/tracker/tracker-redux/src/index.ts index d83bd5ec9..9ef9ded45 100644 --- a/tracker/tracker-redux/src/index.ts +++ b/tracker/tracker-redux/src/index.ts @@ -71,9 +71,8 @@ export default function(opts: Partial = {}) { const _currState = data.state; const _table = data.table; const _timestamp = data.timestamp; - console.log('encoded', _action, _currState, _table, _timestamp, app?.timestamp()) for (let key in _table) app.send(Messages.OTable(key, _table[key])); - app.send(Messages.Redux(_action, _currState, duration, _timestamp)); // TODO: add timestamp + app.send(Messages.Redux(_action, _currState, duration, _timestamp)); } } worker.onerror = (e) => { diff --git a/tracker/tracker/bun.lockb b/tracker/tracker/bun.lockb index b88246e27..ee7dac7c8 100755 Binary files a/tracker/tracker/bun.lockb and b/tracker/tracker/bun.lockb differ diff --git a/tracker/tracker/package.json b/tracker/tracker/package.json index 9299039d7..936e48062 100644 --- a/tracker/tracker/package.json +++ b/tracker/tracker/package.json @@ -51,7 +51,7 @@ "typescript": "^4.9.4" }, "dependencies": { - "@medv/finder": "^3.1.0", + "@medv/finder": "^3.2.0", "error-stack-parser": "^2.0.6", "fflate": "^0.8.2" },