Releases: extractus/feed-extractor
Releases · extractus/feed-extractor
v6.1.0
- Refactor to run with deno/bun/typescript
- Remove global config method, use options on request
- allow to keep original feed data
- allow to include optional elements in RSS Feed 2.0 (related issue: #51)
- Create sample microservices with feed-reader on Node.js, Deno and Bun
v6.0.2
v6.0.1
v6.0.0
v6.0.0rc4
v6.0.0rc3
- 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
- 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
- Implement event-driven pattern
- Simplify core logic
Attention
The changes of this RC version may affect to your current code. Please look at the examples in README carefully.