Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .craft.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github:
owner: getsentry
repo: rrweb
changelogPolicy: none
changelogPolicy: auto
preReleaseCommand: bash scripts/craft-pre-release.sh
requireNames:
- /^sentry-internal-rrweb-snapshot-.*\.tgz$/
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- Revert "fix: isCheckout is not included in fullsnapshot event (#1141)"

## 2.4.0

- revert: feat: Remove plugins related code, which is not used [#123](https://github.com/getsentry/rrweb/pull/123)
Expand Down
4 changes: 3 additions & 1 deletion packages/rrdom/test/diff.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,9 @@ describe('diff algorithm for rrdom', () => {
warn.mockRestore();
});

it('selectors should be case-sensitive for matching in iframe dom', async () => {
// XXX: This fails frequently in GHA due to caching (in `compileTSCode()`)
// ENOENT: no such file or directory, open '/home/runner/work/rrweb/rrweb/packages/rrdom/node_modules/.cache/rollup-plugin-typescript2/rpt2_63b53bcefb703a361889e909184eab6d1d585390/code/cache_/b2cbb4fcc9b1d34215bac12e22f86314e38adc84'
it.skip('selectors should be case-sensitive for matching in iframe dom', async () => {
/**
* If the selector match is case insensitive, it will cause some CSS style problems in the replayer.
* This test result executed in JSDom is different from that in real browser so we use puppeteer as test environment.
Expand Down
1 change: 1 addition & 0 deletions packages/rrdom/test/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const _typescript = typescript as unknown as typeof typescript.default;
*/
export async function compileTSCode(inputFilePath: string) {
const bundle = await rollup.rollup({
cache: false, // caching causes failures on github actions
input: inputFilePath,
plugins: [
resolve() as unknown as rollup.Plugin,
Expand Down