Skip to content

Commit 4a1cd0b

Browse files
authored
Merge pull request #117 from extractus/dev
v7.0.7
2 parents 105496d + 7abcabc commit 4a1cd0b

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"imports": {
33
"cross-fetch": "./src/deno/cross-fetch.js",
44
"html-entities": "https://esm.sh/[email protected]",
5-
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.2.5",
5+
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.3.2",
66
"bellajs": "https://esm.sh/[email protected]"
77
}
88
}

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.0.6",
2+
"version": "7.0.7",
33
"name": "@extractus/feed-extractor",
44
"description": "To read and normalize RSS/ATOM/JSON feed data",
55
"homepage": "https://extractor-demos.pages.dev",
@@ -31,14 +31,14 @@
3131
"dependencies": {
3232
"bellajs": "^11.1.2",
3333
"cross-fetch": "^4.0.0",
34-
"fast-xml-parser": "^4.2.7",
34+
"fast-xml-parser": "^4.3.2",
3535
"html-entities": "^2.4.0"
3636
},
3737
"devDependencies": {
38-
"eslint": "^8.47.0",
39-
"https-proxy-agent": "^7.0.1",
40-
"jest": "^29.6.3",
41-
"nock": "^13.3.3"
38+
"eslint": "^8.53.0",
39+
"https-proxy-agent": "^7.0.2",
40+
"jest": "^29.7.0",
41+
"nock": "^13.3.8"
4242
},
4343
"keywords": [
4444
"extractor",

src/utils/parseAtomFeed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const transform = (item, options) => {
4040
title: getText(title),
4141
link: getPureUrl(link, id, baseUrl),
4242
published: useISODateFormat ? toISODateString(pubDate) : pubDate,
43-
description: buildDescription(summary || htmlContent, descriptionMaxLen),
43+
description: buildDescription(htmlContent, descriptionMaxLen),
4444
}
4545

4646
const extraFields = getExtraEntryFields(item)

src/utils/parseRdfFeed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const transform = (item, options) => {
3636
title: getText(title),
3737
link: getPureUrl(link, guid, baseUrl),
3838
published,
39-
description: buildDescription(description || htmlContent, descriptionMaxLen),
39+
description: buildDescription(htmlContent, descriptionMaxLen),
4040
}
4141

4242
const extraFields = getExtraEntryFields(item)

src/utils/parseRssFeed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const transform = (item, options) => {
3737
title: getText(title),
3838
link: getPureUrl(link, guid, baseUrl),
3939
published,
40-
description: buildDescription(description || htmlContent, descriptionMaxLen),
40+
description: buildDescription(htmlContent, descriptionMaxLen),
4141
}
4242

4343
const extraFields = getExtraEntryFields(item)

0 commit comments

Comments
 (0)