Releases: IonicaBizau/scrape-it
Releases ยท IonicaBizau/scrape-it
5.0.4
5.0.3
5.0.2
Fix travis, test on node 8
5.0.1
Breaking Changes:
Before:
scrapeIt(...).then(data => doSomethingWith(data))
Now:
scrapeIt(...).then(({ data }) => doSomethingWith(data))
scrapeIt(...).then(({ data, response }) => doSomethingWithBoth(data, and, response)
The scrapeIt
method resolves with an object containing:
data
$
response
body
Fixes #90
5.0.0
Breaking Changes:
Before:
scrapeIt(...).then(data => doSomethingWith(data))
Now:
scrapeIt(...).then(({ data }) => doSomethingWith(data))
scrapeIt(...).then(({ data, response }) => doSomethingWithBoth(data, and, response)
The scrapeIt
method resolves with an object containing:
data
$
response
body
Fixes #90
4.1.2
Rerender documentation. Add yarn
commands.
4.1.1
Add TypeScript definitions, thanks @andrewneo! /cc #80
4.1.0
4.0.0
- Support for gzipped responses! ๐ /cc #73 Thanks, @coltaemanuela! ๐ฐ Fixes #72.
- Refactor the
closest
option. Simplify the logic and fix a bug causingclosest
to not be executed at all. Fixes #66 - Minor changes in the example, /cc #37
- Upgrade dependencies โฌ๏ธ
Like always, happy hacking, crawling and scraping! ๐
๐
3.3.3
Rerender documentation.