Skip to content

Commit ef8efcb

Browse files
authored
Merge pull request #145 from extractus/7.1.6
v7.1.6
2 parents 028e977 + 1950722 commit ef8efcb

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node_version: [20.x, 22.x, 23.x]
15+
node_version: [20.x, 22.x, 24.x]
1616

1717
steps:
1818
- uses: actions/checkout@v4

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.1.5",
2+
"version": "7.1.6",
33
"name": "@extractus/feed-extractor",
44
"description": "To read and normalize RSS/ATOM/JSON feed data",
55
"homepage": "https://github.com/extractus/feed-extractor",
@@ -39,16 +39,16 @@
3939
"reset": "node reset"
4040
},
4141
"dependencies": {
42-
"bellajs": "^11.2.0",
42+
"@ndaidong/bellajs": "^12.0.1",
4343
"cross-fetch": "^4.1.0",
44-
"fast-xml-parser": "^5.2.1",
44+
"fast-xml-parser": "^5.2.3",
4545
"html-entities": "^2.6.0"
4646
},
4747
"devDependencies": {
4848
"@eslint/js": "^9.26.0",
49-
"esbuild": "^0.25.3",
49+
"esbuild": "^0.25.4",
5050
"eslint": "^9.26.0",
51-
"globals": "^16.0.0",
51+
"globals": "^16.1.0",
5252
"https-proxy-agent": "^7.0.6",
5353
"jest": "^29.7.0",
5454
"nock": "^14.0.4"

src/main.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// main.test
22
/* eslint-env jest */
33

4-
import { readFileSync } from 'fs'
4+
import { readFileSync } from 'node:fs'
55

66
import nock from 'nock'
77
import { HttpsProxyAgent } from 'https-proxy-agent'
88

9-
import { hasProperty, isString } from 'bellajs'
9+
import { hasProperty, isString } from '@ndaidong/bellajs'
1010

1111
import { extract, extractFromXml, extractFromJson, read } from './main.js'
1212
import { isValid as isValidUrl } from './utils/linker.js'

src/utils/normalizer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
hasProperty,
88
stripTags,
99
truncate
10-
} from 'bellajs'
10+
} from '@ndaidong/bellajs'
1111

1212
import { decode } from 'html-entities'
1313

src/utils/parseAtomFeed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// specs: https://datatracker.ietf.org/doc/html/rfc5023
44
// refer: https://validator.w3.org/feed/docs/atom.html
55

6-
import { isArray, hasProperty } from 'bellajs'
6+
import { isArray, hasProperty } from '@ndaidong/bellajs'
77

88
import {
99
getText,

src/utils/parseJsonFeed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// specs: https://www.jsonfeed.org/version/1.1/
44

5-
import { isArray } from 'bellajs'
5+
import { isArray } from '@ndaidong/bellajs'
66

77
import {
88
toISODateString,

src/utils/parseRdfFeed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// specs: https://www.rssboard.org/rss-specification
44

5-
import { isArray } from 'bellajs'
5+
import { isArray } from '@ndaidong/bellajs'
66

77
import {
88
getText,

src/utils/parseRssFeed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// specs: https://www.rssboard.org/rss-specification
44

5-
import { isArray, hasProperty } from 'bellajs'
5+
import { isArray, hasProperty } from '@ndaidong/bellajs'
66

77
import {
88
getText,

src/utils/xmlparser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// utils / xmlparser
22

3-
import { hasProperty, isString } from 'bellajs'
3+
import { hasProperty, isString } from '@ndaidong/bellajs'
44

55
import { XMLValidator, XMLParser } from 'fast-xml-parser'
66

src/utils/xmlparser.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// xmlparser.test
22
/* eslint-env jest */
33

4-
import { readFileSync } from 'fs'
4+
import { readFileSync } from 'node:fs'
55

66
import { validate, isRSS, isAtom, xml2obj } from './xmlparser.js'
77

0 commit comments

Comments
 (0)