forked from rrweb-io/rrweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/rrweb-io/rrweb
- Loading branch information
Showing
264 changed files
with
38,194 additions
and
8,983 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
.vscode | ||
.vscode/* | ||
!/.vscode/rrweb-monorepo.code-workspace | ||
.idea | ||
node_modules | ||
package-lock.json | ||
# yarn.lock | ||
build | ||
dist | ||
es | ||
lib | ||
|
||
temp | ||
|
||
*.log | ||
|
||
.env | ||
|
||
.DS_Store | ||
|
||
build | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
{ | ||
"non-interactive": true, | ||
"hooks": { | ||
"before:init": ["npm run bundle", "npm run typings"] | ||
}, | ||
"hooks": {}, | ||
"git": { | ||
"requireCleanWorkingDir": false | ||
"commit": false, | ||
"tag": false, | ||
"push": false | ||
}, | ||
"npm": { | ||
"publish": false | ||
}, | ||
"github": { | ||
"release": true, | ||
"releaseName": "Release ${version}" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
language: node_js | ||
|
||
os: linux | ||
|
||
dist: focal | ||
|
||
node_js: | ||
- 12 | ||
|
||
install: | ||
- yarn | ||
|
||
script: | ||
- xvfb-run --server-args="-screen 0 1920x1080x24" npm test | ||
- yarn lerna run prepublish | ||
- yarn lerna run check-types | ||
- xvfb-run --server-args="-screen 0 1920x1080x24" yarn lerna run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"name": " rrweb monorepo", // added a space to bump it to the top | ||
"path": ".." | ||
}, | ||
{ | ||
"name": "rrdom (package)", | ||
"path": "../packages/rrdom" | ||
}, | ||
{ | ||
"name": "rrweb (package)", | ||
"path": "../packages/rrweb" | ||
}, | ||
{ | ||
"name": "rrweb-player (package)", | ||
"path": "../packages/rrweb-player" | ||
}, | ||
{ | ||
"name": "rrweb-snapshot (package)", | ||
"path": "../packages/rrweb-snapshot" | ||
} | ||
], | ||
"settings": { | ||
"jest.disabledWorkspaceFolders": [ | ||
" rrweb monorepo", | ||
"rrweb-player (package)", | ||
"rrdom (package)" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changelog | ||
|
||
## v1.0.0 | ||
|
||
### Featrues & Improvements | ||
|
||
- Support record same-origin non-sandboxed iframe. | ||
- Support record open-mode shadow DOM. | ||
- Implement the plugin API. | ||
- Export `record.takeFullSnapshot` as a public API | ||
- Record and replay drag events. | ||
- Add options to mask texts (#540). | ||
|
||
### Fixes | ||
|
||
- Get the original MutationObserver when Angular patched it. | ||
- Fix RangeError: Maximum call stack size exceeded (#479). | ||
- Fix the linked-list implementation in the recorder. | ||
- Don't perform newly added actions if the player is paused (#539). | ||
- Fix inaccurate mouse position (#522) | ||
|
||
### Breaking Changes | ||
|
||
- Deprecated the usage of `rrweb.mirror`. Please use `record.mirror` and `replayer.getMirror()` instead. | ||
- Deprecated the record option `recordLog `. See the new plugin API [here](./docs/recipes/console.md). | ||
- Deprecated the replay option ` `. See the new plugin API [here](./docs/recipes/console.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.