diff --git a/.changeset/eslint-camelcase-devonly.md b/.changeset/eslint-camelcase-devonly.md deleted file mode 100644 index a845151cc8..0000000000 --- a/.changeset/eslint-camelcase-devonly.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/pre.json b/.changeset/pre.json index b058736512..b00936a3ed 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -25,6 +25,8 @@ "changesets": [ "attribute-text-reductions", "beige-olives-roll", + "blank-cherries-laugh", + "blank-dev-changset", "brave-numbers-joke", "breezy-cats-heal", "breezy-mice-breathe", @@ -45,7 +47,9 @@ "curvy-apples-lay", "curvy-balloons-brake", "date-now-guard", + "dirty-pets-fly", "dirty-rules-dress", + "efficiently-splitCssText-1603", "eight-terms-hunt", "eighty-teachers-smash", "eleven-bobcats-peel", @@ -62,9 +66,11 @@ "fluffy-planes-retire", "format-head-prettier", "forty-elephants-attack", + "four-panthers-fly", "fresh-cars-impress", "fresh-spoons-drive", "friendly-numbers-leave", + "fuzzy-mugs-march", "giant-rats-chew", "gold-apples-joke", "gold-experts-type", @@ -90,6 +96,7 @@ "lovely-files-sparkle", "lovely-pears-cross", "lovely-students-boil", + "lucky-donuts-hammer", "mean-tips-impress", "metal-mugs-mate", "mighty-ads-worry", @@ -107,6 +114,7 @@ "new-snakes-call", "nice-pugs-reply", "no-neg-lookbehind", + "odd-onions-brush", "old-dryers-hide", "perfect-bulldogs-punch", "perfect-dolls-grab", @@ -120,6 +128,7 @@ "rare-adults-sneeze", "real-masks-explode", "real-trains-switch", + "red-peaches-explode", "rich-crews-protect", "rich-dots-lay", "rich-jars-remember", @@ -149,6 +158,7 @@ "swift-dancers-rest", "swift-peas-film", "swift-pots-search", + "textarea-inner-html", "thin-vans-applaud", "thirty-baboons-punch", "three-baboons-bow", diff --git a/.eslintrc.js b/.eslintrc.js index b2b44dca82..16d975a68a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -23,8 +23,5 @@ module.exports = { rules: { 'tsdoc/syntax': 'warn', '@typescript-eslint/prefer-as-const': 'warn', - 'camelcase': ['error', { - allow: ['rr_.*', 'legacy_.*', 'UNSAFE_.*', '__rrweb_.*'], - }], }, }; diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index b8f12ac6be..f0d4f6de6b 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -10,13 +10,13 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 - name: Setup Node.js lts/* - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: lts/* cache: 'yarn' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 284a669269..0b36d5b020 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,10 +13,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js lts/* - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: lts/* cache: 'yarn' @@ -24,6 +24,14 @@ jobs: - name: Install Dependencies run: yarn install --frozen-lockfile + - name: Set registry settings + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + npm config set registry https://npm.pkg.github.com + echo "//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN" > "$HOME/.npmrc" + echo '@rrweb:registry=https://npm.pkg.github.com/' >> "$HOME/.npmrc" + - name: Create Release Pull Request or Publish to npm id: changesets uses: changesets/action@v1 @@ -32,19 +40,3 @@ jobs: env: NODE_OPTIONS: '--max-old-space-size=4096' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - - name: Build Chrome Extension - if: steps.changesets.outputs.published == 'true' - run: NODE_OPTIONS='--max-old-space-size=4096' DISABLE_WORKER_INLINING=true yarn turbo run prepublish --filter=@rrweb/web-extension - - - name: Publish Chrome Extension - uses: mnao305/chrome-extension-upload@v5.0.0 - if: steps.changesets.outputs.published == 'true' - with: - extension-id: 'pdaldeopoccdhlkabbkcjmecmmoninhe' - file-path: ./packages/web-extension/dist/chrome.zip - client-id: ${{ secrets.CWS_CLIENT_ID }} - client-secret: ${{ secrets.CWS_CLIENT_SECRET }} - refresh-token: ${{ secrets.CWS_REFRESH_TOKEN }} - publish: true diff --git a/.github/workflows/style-check.yml b/.github/workflows/style-check.yml index 5b6eb5e0c5..cbab90296a 100644 --- a/.github/workflows/style-check.yml +++ b/.github/workflows/style-check.yml @@ -13,7 +13,7 @@ jobs: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.head_ref }} - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: lts/* cache: 'yarn' @@ -35,7 +35,7 @@ jobs: annotation: # Skip the annotation action in push events - if: github.event_name == 'pull_request_target' + if: github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != 'Midpath-Software/rrweb' needs: eslint_check_upload runs-on: ubuntu-latest name: ESLint Annotation @@ -48,19 +48,20 @@ jobs: with: repo-token: '${{ secrets.GITHUB_TOKEN }}' report-json: 'eslint_report.json' + markdown-report-on-step-summary: true prettier_check: # In the forked PR, it's hard to format code and push to the branch directly, so the action only check the format correctness. - if: github.event_name != 'push' && github.event.pull_request.head.repo.full_name != 'rrweb-io/rrweb' + if: github.event_name != 'push' && github.event.pull_request.head.repo.full_name != 'Midpath-Software/rrweb' runs-on: ubuntu-latest name: Format Check steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.head_ref }} - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: lts/* cache: 'yarn' @@ -71,16 +72,16 @@ jobs: prettier: # Skip the format code action in forked PRs - if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == 'rrweb-io/rrweb' + if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == 'Midpath-Software/rrweb' runs-on: ubuntu-latest name: Format Code steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.head_ref }} - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: lts/* cache: 'yarn' diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml new file mode 100644 index 0000000000..831eba1ea9 --- /dev/null +++ b/.github/workflows/tarball.yml @@ -0,0 +1,58 @@ +name: Upload tarball + +on: + workflow_dispatch: + push: + branches: + - master + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +jobs: + release: + name: Tarball + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v4 + + - name: Setup Node.js lts/* + uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: 'yarn' + + - name: Install Dependencies + run: yarn install --frozen-lockfile + + - name: Build Project + run: NODE_OPTIONS='--max-old-space-size=4096' yarn build:all + + - name: Version Packages Using Changesets + id: version + run: | + yarn changeset version + echo "VERSION=$(node -p 'require(\"./package.json\").version')" >> "$GITHUB_ENV" + + - name: Build Packages as Tarballs + id: build + run: | + mkdir -p built-packages + for pkg_json in $(find packages -mindepth 2 -name package.json); do + pkg_dir=$(dirname "$pkg_json") + pkg_name=$(jq -r .name "$pkg_json") + pkg_version=$(jq -r .version "$pkg_json") + + if [[ -n "$pkg_name" && -n "$pkg_version" ]]; then + echo "Packing $pkg_name ($pkg_dir)" + (cd "$pkg_dir" && yarn pack --filename "../../built-packages/${pkg_name}-${pkg_version}.tgz") + else + echo "Skipping $pkg_dir (invalid package.json)" + fi + done + + - name: Upload Built Packages as Artifacts + uses: actions/upload-artifact@v4 + with: + name: built-packages + path: built-packages/ diff --git a/package.json b/package.json index 60e7b9e5b9..4a3736e7f8 100644 --- a/package.json +++ b/package.json @@ -1,20 +1,24 @@ { "name": "@rrweb/_monorepo", "description": "record and replay the web", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, "repository": { "type": "git", - "url": "git+ssh://git@github.com/rrweb-io/rrweb.git" + "url": "git+ssh://git@github.com/Midpath-Software/rrweb.git" }, "keywords": [ "rrweb" ], - "author": "yanzhen@smartx.com", + "author": "gnpaone@gmail.com", "license": "MIT", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, "private": true, - "homepage": "https://github.com/rrweb-io/rrweb#readme", + "homepage": "https://github.com/Midpath-Software/rrweb#readme", "workspaces": [ "packages/*", "packages/plugins/*" @@ -54,8 +58,8 @@ "dev": "yarn turbo run dev --concurrency=18", "repl": "cd packages/rrweb && npm run repl", "live-stream": "cd packages/rrweb && yarn live-stream", - "lint": "yarn run concurrently --success=all -r -m=1 'yarn run markdownlint docs' 'ESLINT_USE_FLAT_CONFIG=false yarn eslint packages/*/src --ext .ts,.tsx,.js,.jsx,.svelte'", - "lint:report": "ESLINT_USE_FLAT_CONFIG=false yarn eslint --output-file eslint_report.json --format json packages/*/src --ext .ts,.tsx,.js,.jsx", + "lint": "yarn run concurrently --success=all -r -m=1 'yarn run markdownlint docs' 'yarn eslint packages/*/src --ext .ts,.tsx,.js,.jsx,.svelte'", + "lint:report": "yarn eslint --output-file eslint_report.json --format json packages/*/src --ext .ts,.tsx,.js,.jsx", "release": "yarn build:all && changeset publish" }, "resolutions": { @@ -66,5 +70,5 @@ "defaults", "not op_mini all" ], - "packageManager": "yarn@1.22.19" + "packageManager": "yarn@1.22.22" } diff --git a/packages/all/CHANGELOG.md b/packages/all/CHANGELOG.md index 02fb010b70..c61a5822fa 100644 --- a/packages/all/CHANGELOG.md +++ b/packages/all/CHANGELOG.md @@ -1,5 +1,23 @@ # @rrweb/all +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + - @rrweb/types@2.0.1-alpha.20 + - @rrweb/packer@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + - @rrweb/types@2.0.1-alpha.19 + - @rrweb/packer@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/all/package.json b/packages/all/package.json index 6aa8256457..f8d08bc413 100644 --- a/packages/all/package.json +++ b/packages/all/package.json @@ -1,8 +1,9 @@ { "name": "@rrweb/all", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", "publishConfig": { - "access": "public" + "access": "public", + "registry": "https://npm.pkg.github.com" }, "keywords": [ "rrweb", @@ -17,13 +18,13 @@ "prepublish": "tsc -noEmit && vite build", "lint": "yarn eslint src/**/*.ts" }, - "homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/@rrweb/all#readme", + "homepage": "https://github.com/Midpath-Software/rrweb/tree/main/packages/@rrweb/all#readme", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "license": "MIT", "type": "module", @@ -56,9 +57,9 @@ "typescript": "^5.4.5" }, "dependencies": { - "@rrweb/types": "^2.0.0-alpha.18", - "@rrweb/packer": "^2.0.0-alpha.18", - "rrweb": "^2.0.0-alpha.18" + "@rrweb/types": "^2.0.1-alpha.20", + "@rrweb/packer": "^2.0.1-alpha.20", + "rrweb": "^2.0.1-alpha.20" }, "browserslist": [ "supports es6-class" diff --git a/packages/packer/CHANGELOG.md b/packages/packer/CHANGELOG.md index 9a4900f193..53daad925e 100644 --- a/packages/packer/CHANGELOG.md +++ b/packages/packer/CHANGELOG.md @@ -1,5 +1,19 @@ # @rrweb/packer +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies []: + - @rrweb/types@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies []: + - @rrweb/types@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/packer/package.json b/packages/packer/package.json index c4595a4e87..c38a9d77c7 100644 --- a/packages/packer/package.json +++ b/packages/packer/package.json @@ -1,8 +1,9 @@ { "name": "@rrweb/packer", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", "publishConfig": { - "access": "public" + "access": "public", + "registry": "https://npm.pkg.github.com" }, "keywords": [ "rrweb", @@ -17,13 +18,13 @@ "prepublish": "tsc -noEmit && vite build", "lint": "yarn eslint src/**/*.ts" }, - "homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/@rrweb/packer#readme", + "homepage": "https://github.com/Midpath-Software/rrweb/tree/main/packages/@rrweb/packer#readme", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "license": "MIT", "type": "module", @@ -78,7 +79,7 @@ }, "dependencies": { "fflate": "^0.4.4", - "@rrweb/types": "^2.0.0-alpha.18" + "@rrweb/types": "^2.0.1-alpha.20" }, "browserslist": [ "supports es6-class" diff --git a/packages/plugins/rrweb-plugin-canvas-webrtc-record/CHANGELOG.md b/packages/plugins/rrweb-plugin-canvas-webrtc-record/CHANGELOG.md index 6c69f3979e..e3a6e0b094 100644 --- a/packages/plugins/rrweb-plugin-canvas-webrtc-record/CHANGELOG.md +++ b/packages/plugins/rrweb-plugin-canvas-webrtc-record/CHANGELOG.md @@ -1,5 +1,19 @@ # @rrweb/rrweb-plugin-canvas-webrtc-record +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/plugins/rrweb-plugin-canvas-webrtc-record/package.json b/packages/plugins/rrweb-plugin-canvas-webrtc-record/package.json index c5c0c38e29..2815b91b44 100644 --- a/packages/plugins/rrweb-plugin-canvas-webrtc-record/package.json +++ b/packages/plugins/rrweb-plugin-canvas-webrtc-record/package.json @@ -1,6 +1,10 @@ { "name": "@rrweb/rrweb-plugin-canvas-webrtc-record", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, "description": "", "type": "module", "main": "./dist/rrweb-plugin-canvas-webrtc-record.umd.cjs", @@ -31,7 +35,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "keywords": [ "rrweb" @@ -39,16 +43,16 @@ "author": "justin@recordonce.com", "license": "MIT", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, - "homepage": "https://github.com/rrweb-io/rrweb#readme", + "homepage": "https://github.com/Midpath-Software/rrweb#readme", "devDependencies": { - "rrweb": "^2.0.0-alpha.18", + "rrweb": "^2.0.1-alpha.20", "typescript": "^5.4.5", "vite": "^5.3.1", "vite-plugin-dts": "^3.9.1" }, "peerDependencies": { - "rrweb": "^2.0.0-alpha.18" + "rrweb": "^2.0.1-alpha.20" } } diff --git a/packages/plugins/rrweb-plugin-canvas-webrtc-replay/CHANGELOG.md b/packages/plugins/rrweb-plugin-canvas-webrtc-replay/CHANGELOG.md index f844f9dd47..b68c3a654f 100644 --- a/packages/plugins/rrweb-plugin-canvas-webrtc-replay/CHANGELOG.md +++ b/packages/plugins/rrweb-plugin-canvas-webrtc-replay/CHANGELOG.md @@ -1,5 +1,19 @@ # @rrweb/rrweb-plugin-canvas-webrtc-replay +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/plugins/rrweb-plugin-canvas-webrtc-replay/package.json b/packages/plugins/rrweb-plugin-canvas-webrtc-replay/package.json index 901039cf78..f0fc5a72c8 100644 --- a/packages/plugins/rrweb-plugin-canvas-webrtc-replay/package.json +++ b/packages/plugins/rrweb-plugin-canvas-webrtc-replay/package.json @@ -1,6 +1,10 @@ { "name": "@rrweb/rrweb-plugin-canvas-webrtc-replay", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, "description": "", "type": "module", "main": "./dist/rrweb-plugin-canvas-webrtc-replay.umd.cjs", @@ -31,7 +35,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "keywords": [ "rrweb" @@ -39,16 +43,16 @@ "author": "justin@recordonce.com", "license": "MIT", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, - "homepage": "https://github.com/rrweb-io/rrweb#readme", + "homepage": "https://github.com/Midpath-Software/rrweb#readme", "devDependencies": { - "rrweb": "^2.0.0-alpha.18", + "rrweb": "^2.0.1-alpha.20", "typescript": "^5.4.5", "vite": "^5.3.1", "vite-plugin-dts": "^3.9.1" }, "peerDependencies": { - "rrweb": "^2.0.0-alpha.18" + "rrweb": "^2.0.1-alpha.20" } } diff --git a/packages/plugins/rrweb-plugin-console-record/CHANGELOG.md b/packages/plugins/rrweb-plugin-console-record/CHANGELOG.md index 93fa4662bc..79795490fd 100644 --- a/packages/plugins/rrweb-plugin-console-record/CHANGELOG.md +++ b/packages/plugins/rrweb-plugin-console-record/CHANGELOG.md @@ -1,5 +1,19 @@ # @rrweb/rrweb-plugin-console-record +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/plugins/rrweb-plugin-console-record/package.json b/packages/plugins/rrweb-plugin-console-record/package.json index 07897f39dd..5604bc0ed9 100644 --- a/packages/plugins/rrweb-plugin-console-record/package.json +++ b/packages/plugins/rrweb-plugin-console-record/package.json @@ -1,6 +1,10 @@ { "name": "@rrweb/rrweb-plugin-console-record", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, "description": "", "type": "module", "main": "./dist/rrweb-plugin-console-record.umd.cjs", @@ -33,19 +37,19 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "keywords": [ "rrweb" ], - "author": "yanzhen@smartx.com", + "author": "gnpaone@gmail.com", "license": "MIT", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, - "homepage": "https://github.com/rrweb-io/rrweb#readme", + "homepage": "https://github.com/Midpath-Software/rrweb#readme", "devDependencies": { - "rrweb": "^2.0.0-alpha.18", + "rrweb": "^2.0.1-alpha.20", "typescript": "^5.4.5", "vite": "^5.3.1", "vite-plugin-dts": "^3.9.1", @@ -53,7 +57,7 @@ "puppeteer": "^20.9.0" }, "peerDependencies": { - "rrweb": "^2.0.0-alpha.18", - "@rrweb/utils": "^2.0.0-alpha.18" + "rrweb": "^2.0.1-alpha.20", + "@rrweb/utils": "^2.0.1-alpha.20" } } diff --git a/packages/plugins/rrweb-plugin-console-replay/CHANGELOG.md b/packages/plugins/rrweb-plugin-console-replay/CHANGELOG.md index cef5542c47..a2b750987b 100644 --- a/packages/plugins/rrweb-plugin-console-replay/CHANGELOG.md +++ b/packages/plugins/rrweb-plugin-console-replay/CHANGELOG.md @@ -1,5 +1,19 @@ # @rrweb/rrweb-plugin-console-replay +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/plugins/rrweb-plugin-console-replay/package.json b/packages/plugins/rrweb-plugin-console-replay/package.json index 2484fd7eb4..a4fc6b8732 100644 --- a/packages/plugins/rrweb-plugin-console-replay/package.json +++ b/packages/plugins/rrweb-plugin-console-replay/package.json @@ -1,6 +1,10 @@ { "name": "@rrweb/rrweb-plugin-console-replay", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, "description": "", "type": "module", "main": "./dist/rrweb-plugin-console-replay.umd.cjs", @@ -31,25 +35,25 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "keywords": [ "rrweb" ], - "author": "yanzhen@smartx.com", + "author": "gnpaone@gmail.com", "license": "MIT", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, - "homepage": "https://github.com/rrweb-io/rrweb#readme", + "homepage": "https://github.com/Midpath-Software/rrweb#readme", "devDependencies": { - "@rrweb/rrweb-plugin-console-record": "^2.0.0-alpha.18", - "rrweb": "^2.0.0-alpha.18", + "@rrweb/rrweb-plugin-console-record": "^2.0.1-alpha.20", + "rrweb": "^2.0.1-alpha.20", "typescript": "^5.4.5", "vite": "^5.3.1", "vite-plugin-dts": "^3.9.1" }, "peerDependencies": { - "rrweb": "^2.0.0-alpha.18" + "rrweb": "^2.0.1-alpha.20" } } diff --git a/packages/plugins/rrweb-plugin-sequential-id-record/CHANGELOG.md b/packages/plugins/rrweb-plugin-sequential-id-record/CHANGELOG.md index 226f1fb428..b3b8942c1f 100644 --- a/packages/plugins/rrweb-plugin-sequential-id-record/CHANGELOG.md +++ b/packages/plugins/rrweb-plugin-sequential-id-record/CHANGELOG.md @@ -1,5 +1,19 @@ # @rrweb/rrweb-plugin-sequential-id-record +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/plugins/rrweb-plugin-sequential-id-record/package.json b/packages/plugins/rrweb-plugin-sequential-id-record/package.json index dc3fc37a15..7585dc1694 100644 --- a/packages/plugins/rrweb-plugin-sequential-id-record/package.json +++ b/packages/plugins/rrweb-plugin-sequential-id-record/package.json @@ -1,6 +1,10 @@ { "name": "@rrweb/rrweb-plugin-sequential-id-record", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, "description": "", "type": "module", "main": "./dist/rrweb-plugin-sequential-id-record.umd.cjs", @@ -31,24 +35,24 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "keywords": [ "rrweb" ], - "author": "yanzhen@smartx.com", + "author": "gnpaone@gmail.com", "license": "MIT", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, - "homepage": "https://github.com/rrweb-io/rrweb#readme", + "homepage": "https://github.com/Midpath-Software/rrweb#readme", "devDependencies": { - "rrweb": "^2.0.0-alpha.18", + "rrweb": "^2.0.1-alpha.20", "typescript": "^5.4.5", "vite": "^5.3.1", "vite-plugin-dts": "^3.9.1" }, "peerDependencies": { - "rrweb": "^2.0.0-alpha.18" + "rrweb": "^2.0.1-alpha.20" } } diff --git a/packages/plugins/rrweb-plugin-sequential-id-replay/CHANGELOG.md b/packages/plugins/rrweb-plugin-sequential-id-replay/CHANGELOG.md index b9690a1061..8b12c03e62 100644 --- a/packages/plugins/rrweb-plugin-sequential-id-replay/CHANGELOG.md +++ b/packages/plugins/rrweb-plugin-sequential-id-replay/CHANGELOG.md @@ -1,5 +1,19 @@ # @rrweb/rrweb-plugin-sequential-id-replay +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/plugins/rrweb-plugin-sequential-id-replay/package.json b/packages/plugins/rrweb-plugin-sequential-id-replay/package.json index 0538a6db52..551ba5083c 100644 --- a/packages/plugins/rrweb-plugin-sequential-id-replay/package.json +++ b/packages/plugins/rrweb-plugin-sequential-id-replay/package.json @@ -1,6 +1,10 @@ { "name": "@rrweb/rrweb-plugin-sequential-id-replay", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, "description": "", "type": "module", "main": "./dist/rrweb-plugin-sequential-id-replay.umd.cjs", @@ -31,25 +35,25 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "keywords": [ "rrweb" ], - "author": "yanzhen@smartx.com", + "author": "gnpaone@gmail.com", "license": "MIT", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, - "homepage": "https://github.com/rrweb-io/rrweb#readme", + "homepage": "https://github.com/Midpath-Software/rrweb#readme", "devDependencies": { - "@rrweb/rrweb-plugin-sequential-id-record": "^2.0.0-alpha.18", - "rrweb": "^2.0.0-alpha.18", + "@rrweb/rrweb-plugin-sequential-id-record": "^2.0.1-alpha.20", + "rrweb": "^2.0.1-alpha.20", "typescript": "^5.4.5", "vite": "^5.3.1", "vite-plugin-dts": "^3.9.1" }, "peerDependencies": { - "rrweb": "^2.0.0-alpha.18" + "rrweb": "^2.0.1-alpha.20" } } diff --git a/packages/record/CHANGELOG.md b/packages/record/CHANGELOG.md index d6e86de360..f80b5b581e 100644 --- a/packages/record/CHANGELOG.md +++ b/packages/record/CHANGELOG.md @@ -1,5 +1,21 @@ # @rrweb/record +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + - @rrweb/types@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + - @rrweb/types@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/record/package.json b/packages/record/package.json index 6b1d244d6f..2936ba80f5 100644 --- a/packages/record/package.json +++ b/packages/record/package.json @@ -1,8 +1,9 @@ { "name": "@rrweb/record", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", "publishConfig": { - "access": "public" + "access": "public", + "registry": "https://npm.pkg.github.com" }, "keywords": [ "rrweb", @@ -17,13 +18,13 @@ "prepublish": "tsc -noEmit && vite build", "lint": "yarn eslint src/**/*.ts" }, - "homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/@rrweb/record#readme", + "homepage": "https://github.com/Midpath-Software/rrweb/tree/main/packages/@rrweb/record#readme", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "license": "MIT", "type": "module", @@ -55,9 +56,9 @@ "typescript": "^5.4.5" }, "dependencies": { - "@rrweb/types": "^2.0.0-alpha.18", - "rrweb": "^2.0.0-alpha.18", - "@rrweb/utils": "^2.0.0-alpha.18" + "@rrweb/types": "^2.0.1-alpha.20", + "rrweb": "^2.0.1-alpha.20", + "@rrweb/utils": "^2.0.1-alpha.20" }, "browserslist": [ "supports es6-class" diff --git a/packages/replay/CHANGELOG.md b/packages/replay/CHANGELOG.md index 6ca15887b3..3deaff2e0d 100644 --- a/packages/replay/CHANGELOG.md +++ b/packages/replay/CHANGELOG.md @@ -1,5 +1,21 @@ # @rrweb/replay +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies [[`3e6ea35`](https://github.com/rrweb-io/rrweb/commit/3e6ea3574f9e587c5e66967fe62ba63a9a02d5c8)]: + - rrweb@2.0.1-alpha.20 + - @rrweb/types@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48), [`79837ac`](https://github.com/rrweb-io/rrweb/commit/79837ac8f2f459935f6737210890b5c12033a53b)]: + - rrweb@2.0.1-alpha.19 + - @rrweb/types@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/replay/package.json b/packages/replay/package.json index 5c9d3f44e9..e81550ef16 100644 --- a/packages/replay/package.json +++ b/packages/replay/package.json @@ -1,8 +1,9 @@ { "name": "@rrweb/replay", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", "publishConfig": { - "access": "public" + "access": "public", + "registry": "https://npm.pkg.github.com" }, "keywords": [ "rrweb", @@ -17,13 +18,13 @@ "prepublish": "tsc -noEmit && vite build", "lint": "yarn eslint src/**/*.ts" }, - "homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/@rrweb/replay#readme", + "homepage": "https://github.com/Midpath-Software/rrweb/tree/main/packages/@rrweb/replay#readme", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "license": "MIT", "type": "module", @@ -56,8 +57,8 @@ "typescript": "^5.4.5" }, "dependencies": { - "@rrweb/types": "^2.0.0-alpha.18", - "rrweb": "^2.0.0-alpha.18" + "@rrweb/types": "^2.0.1-alpha.20", + "rrweb": "^2.0.1-alpha.20" }, "browserslist": [ "supports es6-class" diff --git a/packages/rrdom-nodejs/CHANGELOG.md b/packages/rrdom-nodejs/CHANGELOG.md index 0ff5d13791..7e03b43dae 100644 --- a/packages/rrdom-nodejs/CHANGELOG.md +++ b/packages/rrdom-nodejs/CHANGELOG.md @@ -1,5 +1,21 @@ # rrdom-nodejs +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies []: + - rrdom@2.0.1-alpha.20 + - @rrweb/types@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies []: + - rrdom@2.0.1-alpha.19 + - @rrweb/types@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/rrdom-nodejs/package.json b/packages/rrdom-nodejs/package.json index 455c317a7c..92fa90578f 100644 --- a/packages/rrdom-nodejs/package.json +++ b/packages/rrdom-nodejs/package.json @@ -1,6 +1,14 @@ { "name": "rrdom-nodejs", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Midpath-Software/rrweb.git" + }, "scripts": { "dev": "vite build --watch", "build": "yarn turbo run prepublish", @@ -55,7 +63,7 @@ "cssom": "^0.5.0", "cssstyle": "^2.3.0", "nwsapi": "2.2.0", - "rrdom": "^2.0.0-alpha.18", - "@rrweb/types": "^2.0.0-alpha.18" + "rrdom": "^2.0.1-alpha.20", + "@rrweb/types": "^2.0.1-alpha.20" } } diff --git a/packages/rrdom/CHANGELOG.md b/packages/rrdom/CHANGELOG.md index eb29d61339..5e93a63f27 100644 --- a/packages/rrdom/CHANGELOG.md +++ b/packages/rrdom/CHANGELOG.md @@ -1,5 +1,19 @@ # rrdom +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies []: + - rrweb-snapshot@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies [[`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48)]: + - rrweb-snapshot@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/rrdom/package.json b/packages/rrdom/package.json index 9657f17209..06d690a5ab 100644 --- a/packages/rrdom/package.json +++ b/packages/rrdom/package.json @@ -1,7 +1,11 @@ { "name": "rrdom", - "version": "2.0.0-alpha.18", - "homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/rrdom#readme", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, + "homepage": "https://github.com/Midpath-Software/rrweb/tree/main/packages/rrdom#readme", "license": "MIT", "type": "module", "main": "./dist/rrdom.cjs", @@ -26,7 +30,7 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "scripts": { "dev": "vite build --watch", @@ -38,10 +42,10 @@ "lint": "yarn eslint src/**/*.ts" }, "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, "devDependencies": { - "@rrweb/types": "^2.0.0-alpha.18", + "@rrweb/types": "^2.0.1-alpha.20", "@types/puppeteer": "^5.4.4", "@typescript-eslint/eslint-plugin": "^5.23.0", "@typescript-eslint/parser": "^5.23.0", @@ -52,6 +56,6 @@ "vite-plugin-dts": "^3.9.1" }, "dependencies": { - "rrweb-snapshot": "^2.0.0-alpha.18" + "rrweb-snapshot": "^2.0.1-alpha.20" } } diff --git a/packages/rrvideo/CHANGELOG.md b/packages/rrvideo/CHANGELOG.md index 120d3406b0..f86f48e509 100644 --- a/packages/rrvideo/CHANGELOG.md +++ b/packages/rrvideo/CHANGELOG.md @@ -1,5 +1,19 @@ # rrvideo +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies []: + - rrweb-player@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies []: + - rrweb-player@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/rrvideo/package.json b/packages/rrvideo/package.json index 996184dee2..a119a41ff9 100644 --- a/packages/rrvideo/package.json +++ b/packages/rrvideo/package.json @@ -1,6 +1,14 @@ { "name": "rrvideo", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Midpath-Software/rrweb.git" + }, "description": "transform rrweb session into video", "main": "build/index.js", "bin": { @@ -18,7 +26,7 @@ "check-types": "tsc -noEmit", "prepublish": "yarn build" }, - "author": "yanzhen@smartx.com", + "author": "gnpaone@gmail.com", "license": "MIT", "devDependencies": { "@types/fs-extra": "11.0.1", @@ -27,13 +35,13 @@ "@types/node": "^18.15.11", "jest": "^27.5.1", "ts-jest": "^27.1.3", - "@rrweb/types": "^2.0.0-alpha.18" + "@rrweb/types": "^2.0.1-alpha.20" }, "dependencies": { "@open-tech-world/cli-progress-bar": "^2.0.2", "fs-extra": "^11.1.1", "minimist": "^1.2.5", "playwright": "^1.32.1", - "rrweb-player": "^2.0.0-alpha.18" + "rrweb-player": "^2.0.1-alpha.20" } } diff --git a/packages/rrweb-player/CHANGELOG.md b/packages/rrweb-player/CHANGELOG.md index 67c3f6df15..7107217d9d 100644 --- a/packages/rrweb-player/CHANGELOG.md +++ b/packages/rrweb-player/CHANGELOG.md @@ -1,5 +1,21 @@ # rrweb-player +## 2.0.1-alpha.20 + +### Patch Changes + +- Updated dependencies []: + - @rrweb/replay@2.0.1-alpha.20 + - @rrweb/packer@2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- Updated dependencies []: + - @rrweb/replay@2.0.1-alpha.19 + - @rrweb/packer@2.0.1-alpha.19 + ## 2.0.0-alpha.18 ### Patch Changes diff --git a/packages/rrweb-player/package.json b/packages/rrweb-player/package.json index e9e7614bea..b3086ca99e 100644 --- a/packages/rrweb-player/package.json +++ b/packages/rrweb-player/package.json @@ -1,8 +1,12 @@ { "name": "rrweb-player", - "version": "2.0.0-alpha.18", + "version": "2.0.1-alpha.20", + "publishConfig": { + "access": "public", + "registry": "https://npm.pkg.github.com" + }, "devDependencies": { - "@rrweb/types": "^2.0.0-alpha.18", + "@rrweb/types": "^2.0.1-alpha.20", "@sveltejs/adapter-auto": "^3.0.0", "@sveltejs/kit": "^2.0.0", "@sveltejs/package": "^2.0.0", @@ -20,8 +24,8 @@ }, "dependencies": { "@tsconfig/svelte": "^1.0.0", - "@rrweb/replay": "^2.0.0-alpha.18", - "@rrweb/packer": "^2.0.0-alpha.18" + "@rrweb/replay": "^2.0.1-alpha.20", + "@rrweb/packer": "^2.0.1-alpha.20" }, "scripts": { "dev": "vite build --watch", @@ -57,15 +61,15 @@ "type": "module", "repository": { "type": "git", - "url": "git+https://github.com/rrweb-io/rrweb.git" + "url": "git+https://github.com/Midpath-Software/rrweb.git" }, "keywords": [ "rrweb" ], - "author": "yanzhen@smartx.com", + "author": "gnpaone@gmail.com", "license": "MIT", "bugs": { - "url": "https://github.com/rrweb-io/rrweb/issues" + "url": "https://github.com/Midpath-Software/rrweb/issues" }, - "homepage": "https://github.com/rrweb-io/rrweb#readme" + "homepage": "https://github.com/Midpath-Software/rrweb#readme" } diff --git a/packages/rrweb-snapshot/CHANGELOG.md b/packages/rrweb-snapshot/CHANGELOG.md index e252ea358d..1a07e1bd5b 100644 --- a/packages/rrweb-snapshot/CHANGELOG.md +++ b/packages/rrweb-snapshot/CHANGELOG.md @@ -1,5 +1,13 @@ # rrweb-snapshot +## 2.0.1-alpha.20 + +## 2.0.1-alpha.19 + +### Patch Changes + +- [#1615](https://github.com/rrweb-io/rrweb/pull/1615) [`dc20cd4`](https://github.com/rrweb-io/rrweb/commit/dc20cd45cc63058325784444af6bd32ed2cace48) Thanks [@eoghanmurray](https://github.com/eoghanmurray)! - Improve performance of splitCssText for