Skip to content

Commit 5b67e97

Browse files
authored
Merge pull request #923 from ScrapeGraphAI/pre/beta
Pre/beta
2 parents 8472481 + 83be82a commit 5b67e97

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [1.38.1-beta.1](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.38.0...v1.38.1-beta.1) (2025-02-13)
2+
3+
4+
### Bug Fixes
5+
6+
* filter links ([04b9197](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/04b91972e88b69b722454d54c8635dfb49b38b44))
7+
8+
9+
### Test
10+
11+
* Add coverage improvement test for tests/test_scrape_do.py ([4ce6d1b](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/4ce6d1b94306d0ae94a74748726468a5132b7969))
12+
113
## [1.38.0](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.37.1...v1.38.0) (2025-02-09)
214

315

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "scrapegraphai"
33

4-
version = "1.38.0"
4+
version = "1.38.1b1"
55

66

77
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."

scrapegraphai/graphs/search_link_graph.py

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ def _create_graph(self) -> BaseGraph:
7777
output=["parsed_doc"],
7878
node_config={
7979
"chunk_size": self.model_token,
80+
"filter_links": True,
81+
"filter_config": self.config.get("filter_config", {}),
8082
},
8183
)
8284

0 commit comments

Comments
 (0)