Api v1.16.0 (#1698)
* feat: canvas support [assist] (#1641) * feat(tracker/ui): start canvas support * feat(tracker): slpeer -> peerjs for canvas streams * fix(ui): fix agent canvas peer id * fix(ui): fix agent canvas peer id * fix(ui): fix peer removal * feat(tracker): canvas recorder * feat(tracker): canvas recorder * feat(tracker): canvas recorder * feat(tracker): canvas recorder * feat(ui): canvas support for ui * fix(tracker): fix falling tests * feat(ui): replay canvas in video * feat(ui): refactor video streaming to draw on canvas * feat(ui): 10hz check for canvas replay * feat(ui): fix for tests * feat(ui): fix for tests * feat(ui): fix for tests * feat(ui): fix for tests cov * feat(ui): mroe test coverage * fix(ui): styling * fix(tracker): support backend settings for canvas * feat(ui): allow devtools to be resizeable (#1605) * fix(ui): console redux tab null check * Api v1.15.0 (#1689) * fix(chalice): fix create alert with MS Teams notification channel closes openreplay/openreplay#1677 * fix(chalice): fix MS Teams notifications * refactor(chalice): enhanced MS Teams notifications closes openreplay/openreplay#1681 (cherry picked from commit265897f509) * fix(ui): filter keys conflcit with metadata, path analysis 4 col * fix(ui): clear the filers and series on card type change * fix(player): fix msg reader bug * fix(DB): fix CH wrong version (#1692) (cherry picked from commit48dbbb55db) * fix(ui): filter keys conflcit with metadata * fix(tracker): unique broadcast channel name * fix(chalice): fixed delete cards (#1697) (cherry picked from commit92fedd310c) * fix(tracker): add trycatch to ignore iframe errors * feat(backend): added ARM arch support to backend services [Dockerfile] * feat(backend): removed userAgent from sessions and unstarted-sessions tables * fix(DB): change path-analysis card size --------- Co-authored-by: Delirium <nikita@openreplay.com> Co-authored-by: Shekar Siri <sshekarsiri@gmail.com> Co-authored-by: Alexander <zavorotynskiy@pm.me>
This commit is contained in:
parent
f3cebd36a6
commit
0a9d0e63ac
2 changed files with 20 additions and 0 deletions
|
|
@ -27,6 +27,16 @@ CREATE TABLE IF NOT EXISTS events.canvas_recordings
|
|||
);
|
||||
CREATE INDEX IF NOT EXISTS canvas_recordings_session_id_idx ON events.canvas_recordings (session_id);
|
||||
|
||||
DROP SCHEMA IF EXISTS backup_v1_10_0 CASCADE;
|
||||
|
||||
UPDATE metrics
|
||||
SET default_config='{
|
||||
"col": 4,
|
||||
"row": 2,
|
||||
"position": 0
|
||||
}'::jsonb
|
||||
WHERE metric_type = 'pathAnalysis';
|
||||
|
||||
COMMIT;
|
||||
|
||||
\elif :is_next
|
||||
|
|
|
|||
|
|
@ -71,6 +71,16 @@ CREATE TABLE IF NOT EXISTS events.canvas_recordings
|
|||
);
|
||||
CREATE INDEX IF NOT EXISTS canvas_recordings_session_id_idx ON events.canvas_recordings (session_id);
|
||||
|
||||
DROP SCHEMA IF EXISTS backup_v1_10_0 CASCADE;
|
||||
|
||||
UPDATE metrics
|
||||
SET default_config='{
|
||||
"col": 4,
|
||||
"row": 2,
|
||||
"position": 0
|
||||
}'::jsonb
|
||||
WHERE metric_type = 'pathAnalysis';
|
||||
|
||||
COMMIT;
|
||||
|
||||
\elif :is_next
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue