Skip to content

Releases: extractus/feed-extractor

v6.0.2

19 Aug 13:18
a04da88
Compare
Choose a tag to compare
  • Update dependencies
  • Add "Deploy to Deta" button

v6.0.1

14 Aug 09:21
af41361
Compare
Choose a tag to compare
  • Fix atom format in some source with summary only
  • Re-add CJS version and evaluation for .cjs

v6.0.0

29 Jul 08:36
c911e49
Compare
Choose a tag to compare

Release v6.0.0:

  • Support JSON Feed
  • No longer build CJS version

v6.0.0rc4

28 Jul 10:54
3c6970f
Compare
Choose a tag to compare
  • Add default value to all keys

v6.0.0rc3

28 Jul 09:48
169981a
Compare
Choose a tag to compare
  • Stop using event driven pattern, keep API simple as before
  • Reorganize package structure
  • Refactor main workflow
  • Implement module to support JSON Feed
  • Export methods to access reader options
  • Rewrite test script & improve test coverage

v6.0.0rc2

16 Jul 03:25
fb75425
Compare
Choose a tag to compare
  • Update parameter order for event callback
  • Add error info to onComplete

Before

onSuccess((data, rssurl) => {

})

onError((error, rssurl) => {

})

onComplete((data, rssurl) => {

})

After

onSuccess((rssurl, data) => {

})

onError((rssurl, error) => {

})

onComplete((rssurl, data, error) => {

})

v6.0.0rc1

12 Jul 14:29
bde2a87
Compare
Choose a tag to compare

Attention

The changes of this RC version may affect to your current code. Please look at the examples in README carefully.

v5.0.2

04 Jul 05:05
29a6a67
Compare
Choose a tag to compare
  • Fix example SaaS link
  • Update dependencies

v5.0.1

03 Jun 06:49
89d009e
Compare
Choose a tag to compare
  • Update dependencies
  • Use GitHub CodeQL instead of SonarCloud service
  • Change default user agent

v5.0.0

08 Apr 07:23
94bdef5
Compare
Choose a tag to compare
  • Change to ES6 Module format
  • Update dependencies
  • Fix some stuff

Thanks to @neizod for pr #30 :)