From 42363bcaa0d755e81fb9c4562bf0b073cc05b525 Mon Sep 17 00:00:00 2001 From: chuanqisun Date: Wed, 5 May 2021 07:19:13 +0000 Subject: [PATCH] deploy: 2b402f0918faf71cb166d59399e1b9f49dbe1be1 --- cache.json | 88 ++++++++++++++++++++++++++++++++++++- index.html | 124 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 209 insertions(+), 3 deletions(-) diff --git a/cache.json b/cache.json index 8d2cef2..bbd72b2 100644 --- a/cache.json +++ b/cache.json @@ -1,5 +1,91 @@ { "sources": [ + { + "href": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "articles": [ + { + "description": "Added: Custom CSS and JavaScript via includes folder. See documentation.", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.4.0", + "publishedOn": "2021-05-05T05:27:20.000Z", + "wordCount": 285, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.4.0" + }, + { + "description": "Fixed: Avoid crwalers.\nFixed: Error logging from XML parser.\nFixed: Typo in docs.\nThank you: @dym-sh, @tabokie, @cheese1", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.3.1", + "publishedOn": "2021-05-05T05:19:57.000Z", + "wordCount": 289, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.3.1" + }, + { + "description": "Added: Customize cache lifespan with cacheMaxDays property in osmosfeed.yaml.\nAdded: Documentation for osmosfeed.yaml.\nFixed: More intuitive logging during build.\nChore: Refactored parameter passing for enrich step.", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.3.0", + "publishedOn": "2021-05-05T05:19:26.000Z", + "wordCount": 297, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.3.0" + }, + { + "description": "Changed: favicon update.", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.2.3", + "publishedOn": "2021-05-05T05:19:03.000Z", + "wordCount": 274, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.2.3" + }, + { + "description": "Added: Display CLI version in footer.", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.2.1", + "publishedOn": "2021-05-05T05:18:52.000Z", + "wordCount": 277, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.2.1" + }, + { + "description": "Fixed: The output website didn't have favicon.", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.1.6", + "publishedOn": "2021-05-05T05:18:40.000Z", + "wordCount": 278, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.1.6" + }, + { + "description": "Fixed: Item description didn't use the description property from feed item.", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.1.1", + "publishedOn": "2021-05-05T05:18:27.000Z", + "wordCount": 282, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.1.1" + }, + { + "description": "Added: MIT license\nAdded: cache.json is stamped with the version of the builder. This allows future builder with breaking change to ignore incompatible cache.\nAdded: Feed source retry on fetch error (3 times total, 15 seconds timeout).\nAdded: Item enrichment retry on fetch error (3 times total, 15 seconds timeout).\nAdded: Console log for cache restore and update behavior.\nAdded: npx command: npx osmosfeed\nChanged: Improved console log that breaks down rendered item count into \"new\" and \"cached\".\nFixed: Item…", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.1.0", + "publishedOn": "2021-05-05T05:17:37.000Z", + "wordCount": 357, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.1.0" + }, + { + "description": "Changed: Runtime dependencies are moved out of devDependencies. This is not a breaking change, but to receive performance benefit, you need to make sure @osmoscraft/osmosfeed is listed as dependencies instead of devDependencies in the package.json of your rss reader site.\nChanged: Build target from node12 to node14.\nChanged: Switched to a more robust rss parser: rss-parser\nFixed: RSS 1.0 feed <dc:date> was not parsed as publish date.\nChore: npm dependencies version updates.", + "link": "https://github.com/osmoscraft/osmosfeed/releases/tag/v1.0.1", + "publishedOn": "2021-05-05T05:16:07.000Z", + "wordCount": 343, + "sourceHref": "https://github.com/osmoscraft/osmosfeed/releases.atom", + "sourceTitle": "Release notes from osmosfeed", + "title": "v1.0.1" + } + ] + }, { "href": "https://css-tricks.com/feed/", "articles": [ @@ -457,5 +543,5 @@ ] } ], - "cliVersion": "1.3.1" + "cliVersion": "1.4.0" } \ No newline at end of file diff --git a/index.html b/index.html index 3261d58..7fe8682 100644 --- a/index.html +++ b/index.html @@ -8,9 +8,128 @@ + + +
+

2021-05-05

+ +

Release notes from osmosfeed

+
+ +
+
+ v1.4.0 +
+

Added: Custom CSS and JavaScript via includes folder. See documentation.

+ Read · 1 min +
+
+
+ +
+
+ v1.3.1 +
+

Fixed: Avoid crwalers. +Fixed: Error logging from XML parser. +Fixed: Typo in docs. +Thank you: @dym-sh, @tabokie, @cheese1

+ Read · 1 min +
+
+
+ +
+
+ v1.3.0 +
+

Added: Customize cache lifespan with cacheMaxDays property in osmosfeed.yaml. +Added: Documentation for osmosfeed.yaml. +Fixed: More intuitive logging during build. +Chore: Refactored parameter passing for enrich step.

+ Read · 1 min +
+
+
+ + + +
+
+ v1.2.1 +
+

Added: Display CLI version in footer.

+ Read · 1 min +
+
+
+ +
+
+ v1.1.6 +
+

Fixed: The output website didn't have favicon.

+ Read · 1 min +
+
+
+ +
+
+ v1.1.1 +
+

Fixed: Item description didn't use the description property from feed item.

+ Read · 1 min +
+
+
+ +
+
+ v1.1.0 +
+

Added: MIT license +Added: cache.json is stamped with the version of the builder. This allows future builder with breaking change to ignore incompatible cache. +Added: Feed source retry on fetch error (3 times total, 15 seconds timeout). +Added: Item enrichment retry on fetch error (3 times total, 15 seconds timeout). +Added: Console log for cache restore and update behavior. +Added: npx command: npx osmosfeed +Changed: Improved console log that breaks down rendered item count into "new" and "cached". +Fixed: Item…

+ Read · 1 min +
+
+
+ +
+
+ v1.0.1 +
+

Changed: Runtime dependencies are moved out of devDependencies. This is not a breaking change, but to receive performance benefit, you need to make sure @osmoscraft/osmosfeed is listed as dependencies instead of devDependencies in the package.json of your rss reader site. +Changed: Build target from node12 to node14. +Changed: Switched to a more robust rss parser: rss-parser +Fixed: RSS 1.0 feed <dc:date> was not parsed as publish date. +Chore: npm dependencies version updates.

+ Read · 1 min +
+
+
+
+ +
+ +

2021-05-04

@@ -795,10 +914,11 @@ You can support CSS-Tricks by being an MVP Supporter.

+