Skip to content

Releases: IonicaBizau/scrape-it

5.0.4

26 Apr 05:08
Compare
Choose a tag to compare

Fix the TS types. Thanks @edorivai! ๐Ÿฐ /cc #101 #96

5.0.3

03 Apr 12:42
Compare
Choose a tag to compare

5.0.2

29 Jan 17:00
Compare
Choose a tag to compare

Fix travis, test on node 8

5.0.1

29 Jan 16:57
Compare
Choose a tag to compare

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

29 Jan 16:56
Compare
Choose a tag to compare

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

25 Dec 02:19
Compare
Choose a tag to compare

Rerender documentation. Add yarn commands.

4.1.1

23 Dec 18:53
Compare
Choose a tag to compare

Add TypeScript definitions, thanks @andrewneo! /cc #80

4.1.0

06 Dec 05:20
Compare
Choose a tag to compare

Add support for selecting text nodes. Thanks, @ComFreek! ๐Ÿฐ /cc #45 76

4.0.0

26 Oct 15:08
Compare
Choose a tag to compare
  • Support for gzipped responses! ๐ŸŽ‰ /cc #73 Thanks, @coltaemanuela! ๐Ÿฐ Fixes #72.
  • Refactor the closest option. Simplify the logic and fix a bug causing closest 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

08 Sep 13:36
Compare
Choose a tag to compare

Rerender documentation.