Skip to content

Commit 8fccbc7

Browse files
committed
feat: version update
1 parent 84518ee commit 8fccbc7

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [v7.1.1](https://github.com/coder-hxl/x-crawl/compare/v7.1.0...v7.1.1) (2023-06-21)
2+
3+
### 🐞 Bug fixes
4+
5+
- Correctly handle the header of the post method configured by the crawlData API.
6+
7+
---
8+
9+
### 🐞 漏洞修复
10+
11+
- 正确处理 crawlData API 配置 post 方法的 header 。
12+
113
# [v7.1.0](https://github.com/coder-hxl/x-crawl/compare/v7.0.1...v7.1.0) (2023-05-15)
214

315
### 🚀 Features

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "x-crawl",
4-
"version": "7.1.0",
4+
"version": "7.1.1",
55
"author": "coderHXL",
66
"description": "x-crawl is a flexible Node.js multifunctional crawler library.",
77
"license": "MIT",

publish/README.md

+19-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ x-crawl is a flexible Node.js multifunctional crawler library. Flexible usage an
2121
- **🧾 Capture Record** - Capture and record crawling, and use colored strings to remind in the terminal.
2222
- **🦾 TypeScript** - Own types, implement complete types through generics.
2323

24-
## Relationship with Puppeteer
24+
## Sponsor
2525

26-
The crawlPage API has built-in [puppeteer](https://github.com/puppeteer/puppeteer), you only need to pass in some configuration options to let x-crawl help you complete some operations, and the result will expose the Brower instance and the Page instance Come out, the Brower instance and Page instance you get will be intact, and x-crawl will not rewrite them.
26+
x-crawl is an open source project under the MIT license, completely free to use. If you benefit from the projects I develop and maintain at work, please consider supporting my work through the [Afdian](https://afdian.net/a/coderhxl) platform.
2727

2828
# Table of Contents
2929

@@ -115,9 +115,12 @@ The crawlPage API has built-in [puppeteer](https://github.com/puppeteer/puppetee
115115
- [CrawlFileSingleResult](#CrawlFileSingleResult)
116116
- [API Other](#API-Other)
117117
- [AnyObject](#AnyObject)
118+
- [FAQ](#FAQ)
119+
- [The relationship between crawlPage API and puppeteer](#The-relationship-between-crawlPage-API-and-puppeteer)
118120
- [More](#More)
119121
- [Community](#Community)
120122
- [Issues](#Issues)
123+
- [Sponsor](#Sponsor-1)
121124

122125
## Install
123126

@@ -187,6 +190,7 @@ running result:
187190
<div align="center">
188191
<img src="https://raw.githubusercontent.com/coder-hxl/x-crawl/main/assets/en/crawler-result.png" />
189192
</div>
193+
190194
**Note:** Do not crawl at will, you can check the **robots.txt** protocol before crawling. This is just to demonstrate how to use x-crawl.
191195

192196
## Core Concepts
@@ -1761,12 +1765,24 @@ export interface AnyObject extends Object {
17611765
}
17621766
```
17631767
1768+
## FAQ
1769+
1770+
### The relationship between crawlPage API and puppeteer
1771+
1772+
The crawlPage API has built-in [puppeteer](https://github.com/puppeteer/puppeteer), you only need to pass in some configuration options to let x-crawl help you simplify the operation and get the intact Brower instance and Page instance , x-crawl does not override it.
1773+
17641774
## More
17651775
17661776
### Community
17671777
1768-
**GitHub Discussions:** May be discussed through [GitHub Discussions](https://github.com/coder-hxl/x-crawl/discussions).
1778+
- **Discord Chat:** Ask questions and discuss live with other x-crawl users via [Discord](https://discord.gg/SF7aaebg4E).
1779+
1780+
- **GitHub Discussions:** Use [GitHub Discussions](https://github.com/coder-hxl/x-crawl/discussions) for message board-style questions and discussions.
17691781
17701782
### Issues
17711783
17721784
If you have questions, needs, or good suggestions, you can raise them at [GitHub Issues](https://github.com/coder-hxl/x-crawl/issues).
1785+
1786+
### Sponsor
1787+
1788+
x-crawl is an open source project under the MIT license, completely free to use. If you benefit from the projects I develop and maintain at work, please consider supporting my work through the [Afdian](https://afdian.net/a/coderhxl) platform.

publish/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "x-crawl",
3-
"version": "7.1.0",
3+
"version": "7.1.1",
44
"author": "coderHXL",
55
"description": "x-crawl is a flexible Node.js multifunctional crawler library.",
66
"license": "MIT",

0 commit comments

Comments
 (0)