Skip to content

Latest commit

 

History

History
192 lines (119 loc) · 9.17 KB

CHANGELOG.md

File metadata and controls

192 lines (119 loc) · 9.17 KB

rrdom-nodejs

2.0.0-alpha.26

Patch Changes

2.0.0-alpha.25

Major Changes

  • #43 0749d4c Thanks @jxiwang! - Important: If you don't reference distributed files directly, for example you run import rrweb from 'rrweb' you won't notice a difference. If you include rrweb in a script tag and referred to a .js file, you'll now have to update that path to include a .umd.cjs file. Distributed files have new paths, filenames and extensions. All packages now no longer include a .js files, instead they include .cjs, .umd.cjs and .mjs files. The .umd.cjs files are CommonJS modules that bundle all files together to make it easy to ship one file to browser environments. The .mjs files are ES modules that can be used in modern browsers, node.js and bundlers that support ES modules. The .cjs files are CommonJS modules that can be used in older Node.js environments.

Patch Changes

2.0.0-alpha.24

Patch Changes

2.0.0-alpha.23

Patch Changes

2.0.0-alpha.22

Patch Changes

2.0.0-alpha.21

Patch Changes

2.0.0-alpha.20

Patch Changes

2.0.0-alpha.19

Patch Changes

2.0.0-alpha.18

Patch Changes

2.0.0-alpha.17

Patch Changes

2.0.0-alpha.16

Patch Changes

2.0.0-alpha.15

Patch Changes

2.0.0-alpha.14

Patch Changes

2.0.0-alpha.13

Patch Changes

2.0.0-alpha.12

Patch Changes

2.0.0-alpha.11

Patch Changes

2.0.0-alpha.10

Patch Changes

2.0.0-alpha.9

Patch Changes

2.0.0-alpha.8

Patch Changes

2.0.0-alpha.7

Patch Changes

2.0.0-alpha.6

Patch Changes

2.0.0-alpha.5

Major Changes

  • #1127 3cc4323 Thanks @YunFeng0817! - Refactor: Improve performance by 80% in a super large benchmark case.

    1. Refactor: change the data structure of childNodes from array to linked list
    2. Improve the performance of the "contains" function. New algorithm will reduce the complexity from O(n) to O(logn)

Patch Changes