Skip to content

Commit 31c6d86

Browse files
committed
chore(release): 5.1.0
1 parent 34f1595 commit 31c6d86

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [5.1.0](https://github.com/taoqf/node-fast-html-parser/compare/v4.1.5...v5.1.0) (2021-10-28)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* Add esm named export support (closes #160 closes #139)
11+
12+
### Features
13+
14+
* Add esm named export support (closes [#160](https://github.com/taoqf/node-fast-html-parser/issues/160) closes [#139](https://github.com/taoqf/node-fast-html-parser/issues/139)) ([0d4b922](https://github.com/taoqf/node-fast-html-parser/commit/0d4b922eefd6210fe802991e464b21b0c69d5f63))
15+
* Added HTMLElement#getElementsByTagName ([d462e44](https://github.com/taoqf/node-fast-html-parser/commit/d462e449e7ebb00a5a43fb574133681ad5a62475))
16+
* Expose `HTMLElement#rawAttrs` (make public) ([34f1595](https://github.com/taoqf/node-fast-html-parser/commit/34f1595756c0974b6ae7ef5755a615f09e421f32))
17+
* Improved parsing performance + matching (closes [#164](https://github.com/taoqf/node-fast-html-parser/issues/164)) ([3c5b8e2](https://github.com/taoqf/node-fast-html-parser/commit/3c5b8e2a9104b01a8ca899a7970507463e42adaf))
18+
19+
20+
### Bug Fixes
21+
22+
* Add null to return type for HTMLElement#querySelector (closes [#157](https://github.com/taoqf/node-fast-html-parser/issues/157)) ([2b65583](https://github.com/taoqf/node-fast-html-parser/commit/2b655839bd3868c41fb19cae5786ca097565bc7f))
23+
* blockTextElements incorrectly matching partial tag (detail) (fixes [#156](https://github.com/taoqf/node-fast-html-parser/issues/156) fixes [#124](https://github.com/taoqf/node-fast-html-parser/issues/124)) ([6823349](https://github.com/taoqf/node-fast-html-parser/commit/6823349fdf1809c7484c70d948aa24930ef4983f))
24+
525
## [5.0.0](https://github.com/taoqf/node-fast-html-parser/compare/v4.1.5...v5.0.0) (2021-10-10)
626

727

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-html-parser",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "A very fast HTML parser, generating a simplified DOM, with basic element query support.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -20,8 +20,8 @@
2020
"clean:global": "yarn run clean && npx rimraf yarn.lock test/yarn.lock test/node_modules node_modules",
2121
"reset": "yarn run clean:global && yarn install && yarn build",
2222
"--------------- ": "",
23-
"test:target": "mocha --recursive \"./test/tests\"",
24-
"test:ci": "cross-env TEST_TARGET=dist yarn run test:target",
23+
"test:target": "mocha --recursive \"./test/tests\"",
24+
"test:ci": "cross-env TEST_TARGET=dist yarn run test:target",
2525
"posttest": "yarn run benchmark",
2626
"prepare": "cd test && yarn install"
2727
},

0 commit comments

Comments
 (0)