change(tracker): updating changelogs for v10

This commit is contained in:
nick-delirium 2023-10-30 15:32:02 +01:00
parent d385ee5d7d
commit 0df6bf9772
5 changed files with 14 additions and 4 deletions

View file

@ -1,3 +1,6 @@
## this plugin is deprecated, all network tracking apis are moved into the main tracker codebase
______
# OpenReplay Tracker Axios plugin
Tracker plugin to support tracking of the [Axios](https://axios-http.com/) requests.

View file

@ -1,3 +1,6 @@
## this plugin is deprecated, all network tracking apis are moved into the main tracker codebase
______
# Fetch plugin for OpenReplay
This plugin allows you to capture `fetch` payloads and inspect them later on while replaying session recordings. This is very useful for understanding and fixing issues.

View file

@ -1,9 +1,13 @@
# 10.0.1
- network proxy api is now default turned on
# 10.0.0
- networkRequest message changed to include `TransferredBodySize`
- tracker now attempts to create proxy for beacon api as well (if its in scope)
- tracker now attempts to create proxy for beacon api as well (if its in scope of the current env)
- safe wrapper for angular apps
- better browser lag handling
- better browser lag handling (and some performance improvements as a bonus)
# 9.0.11

View file

@ -1,7 +1,7 @@
{
"name": "@openreplay/tracker",
"description": "The OpenReplay tracker main package",
"version": "10.0.0",
"version": "10.0.1",
"keywords": [
"logging",
"replay"

View file

@ -68,7 +68,7 @@ export default function (app: App, opts: Partial<Options> = {}) {
sessionTokenHeader: false,
captureInIframes: true,
axiosInstances: undefined,
useProxy: false,
useProxy: true,
},
opts,
)