Skip to content

Commit 38a50fe

Browse files
authored
Merge pull request #126 from extractus/7.1.0
v7.1.0
2 parents 581818f + 056b4a9 commit 38a50fe

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"imports": {
33
"cross-fetch": "./src/deno/cross-fetch.js",
4-
"html-entities": "https://esm.sh/html-entities@2.4.0",
5-
"fast-xml-parser": "https://esm.sh/[email protected].3",
6-
"bellajs": "https://esm.sh/[email protected].2"
4+
"html-entities": "https://esm.sh/html-entities@2.5.2",
5+
"fast-xml-parser": "https://esm.sh/[email protected].6",
6+
"bellajs": "https://esm.sh/[email protected].3"
77
}
88
}

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface FeedEntry {
88
link?: string;
99
title?: string;
1010
description?: string;
11-
published?: Date;
11+
published?: string;
1212
}
1313

1414
export interface FeedData {
@@ -17,7 +17,7 @@ export interface FeedData {
1717
description?: string;
1818
generator?: string;
1919
language?: string;
20-
published?: Date;
20+
published?: string;
2121
entries?: Array<FeedEntry>;
2222
}
2323

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.0.9",
2+
"version": "7.1.0",
33
"name": "@extractus/feed-extractor",
44
"description": "To read and normalize RSS/ATOM/JSON feed data",
55
"homepage": "https://extractor-demos.pages.dev",
@@ -39,17 +39,17 @@
3939
"reset": "node reset"
4040
},
4141
"dependencies": {
42-
"bellajs": "^11.1.2",
42+
"bellajs": "^11.1.3",
4343
"cross-fetch": "^4.0.0",
44-
"fast-xml-parser": "^4.3.3",
45-
"html-entities": "^2.4.0"
44+
"fast-xml-parser": "^4.3.6",
45+
"html-entities": "^2.5.2"
4646
},
4747
"devDependencies": {
48-
"esbuild": "^0.19.11",
49-
"eslint": "^8.56.0",
50-
"https-proxy-agent": "^7.0.2",
48+
"esbuild": "^0.20.2",
49+
"eslint": "^8.57.0",
50+
"https-proxy-agent": "^7.0.4",
5151
"jest": "^29.7.0",
52-
"nock": "^13.5.0"
52+
"nock": "^13.5.4"
5353
},
5454
"keywords": [
5555
"extractor",

0 commit comments

Comments
 (0)