Skip to content

Releases: bormando/gmail-getter

2.3.1

29 Jul 21:51

Choose a tag to compare

Resolved audit issues caused by these:

2.3.0

30 May 19:32
df9aff1

Choose a tag to compare

Previously, checkInbox returned a union type - Email | Email[] | null and it has to be then casted into preferable type (f.e., Email).

From now on, this function returns either Email or Email[], depending on all option.

Also updated packages and resolved audit issues.

2.2.0

01 Nov 10:03
7a8ab76

Choose a tag to compare

We're getting rid of some logs noise in this update.

Now you can use logs param in checkInbox function to control whether you want unsuccessful email fetch attempts to be logged or not.

Previously, these logs appeared almost all the time, because it usually takes some time for email to appear in your inbox.

2.1.0

27 Jul 21:14
558bdf8

Choose a tag to compare

A couple of things to highlight:

  1. Removed findElementByRegexp as it did what parseHtmlFromEmail does plus regex search. Basically, end user can simply use parseHtmlFromEmail and find what they need from its output by regex.
  2. Updated README and jsdoc.
  3. Updated dependencies - resolved all npm audit issues.
  4. Adjusted error tracing - the errors now are more descriptive. More logs added as well.

Bumping version to 2.1.0, instead of 3.0.0, as it's a maintenance update mostly (though a breaking chance introduced -- removed one of the helpers).

2.0.0

23 Jan 09:25
5b28b63

Choose a tag to compare

This is a quality update mostly.

It provides:

  • updated function names for better comprehension
  • eslint integration
  • improved error tracing
  • up-to-date README
  • ability to select if you want to fetch a single email or multiple emails.

It is a major release, which will break existing integrations of this package.

1.1.0

26 Apr 17:35

Choose a tag to compare

Added parseHtml function that gets HTML content from an email

1.0.2

19 Feb 11:02

Choose a tag to compare

Updated script use cases in README

1.0.1

17 Feb 19:20

Choose a tag to compare

Updated jsdoc

1.0.0

17 Feb 18:58

Choose a tag to compare

Hello, world!