Skip to content

Commit a7b3339

Browse files
committed
Update RSS component versions and add User-Agent header
- Bump @pipedream/rss version to 0.5.9 - Update merge-rss-feeds action version to 1.2.9 - Add User-Agent header in rss.app.ts - Bump new-item-from-multiple-feeds source version to 1.2.8 - Bump new-item-in-feed source version to 1.2.8
1 parent c888bba commit a7b3339

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

components/rss/actions/merge-rss-feeds/merge-rss-feeds.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import rss from "../../app/rss.app";
21
import { defineAction } from "@pipedream/types";
2+
import rss from "../../app/rss.app";
33

44
export default defineAction({
55
name: "Merge RSS Feeds",
66
description: "Retrieve multiple RSS feeds and return a merged array of items sorted by date [See documentation](https://www.rssboard.org/rss-specification)",
77
key: "rss-merge-rss-feeds",
8-
version: "1.2.8",
8+
version: "1.2.9",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/rss/app/rss.app.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export default defineApp({
5959
method: "GET",
6060
headers: {
6161
"accept": "text/html, application/xhtml+xml, application/xml;q=0.9, */*;q=0.8, application/json, application/feed+json",
62+
"User-Agent": "@PipedreamHQ/pipedream v1.0",
6263
},
6364
validateStatus: () => true, // does not throw on any bad status code
6465
responseType: "stream", // stream is required for feedparser

components/rss/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/rss",
3-
"version": "0.5.8",
3+
"version": "0.5.9",
44
"description": "Pipedream RSS Components",
55
"main": "dist/app/rss.app.mjs",
66
"types": "dist/app/rss.app.d.ts",

components/rss/sources/new-item-from-multiple-feeds/new-item-from-multiple-feeds.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import rss from "../../app/rss.app";
21
import { defineSource } from "@pipedream/types";
2+
import rss from "../../app/rss.app";
33
import rssCommon from "../common/common";
44

55
export default defineSource({
@@ -8,7 +8,7 @@ export default defineSource({
88
name: "New Item From Multiple RSS Feeds",
99
type: "source",
1010
description: "Emit new items from multiple RSS feeds",
11-
version: "1.2.7",
11+
version: "1.2.8",
1212
props: {
1313
...rssCommon.props,
1414
urls: {

components/rss/sources/new-item-in-feed/new-item-in-feed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineSource({
77
key: "rss-new-item-in-feed",
88
name: "New Item in Feed",
99
description: "Emit new items from an RSS feed",
10-
version: "1.2.7",
10+
version: "1.2.8",
1111
type: "source",
1212
dedupe: "unique",
1313
props: {

0 commit comments

Comments
 (0)