Skip to content

Releases: resend/resend-node

v2.0.0

01 Nov 15:57
3d5058c
Compare
Choose a tag to compare

Major

  • Fix Request types #250

Before

const data = resend.emails.send({ ... })

return data.id

After

const { data, error } = resend.emails.send({ ... })

if (error || !data) {
  throw new Error(error.message)
}

return data.id

Minor

  • Add batch methods #199

Patch

  • Upgrade render #252

v1.1.0

24 Oct 01:30
Compare
Choose a tag to compare
  • Drop node-fetch in favor of native fetch for Node

v1.0.0

15 Aug 23:22
e9a1186
Compare
Choose a tag to compare

Major

  • Replace axios with node-fetch #149

Minor

  • Add JSdoc for create email types #132
  • Add missing fields to the GetEmailResponse type #146

Patch

  • Use eslint #159
  • Add GitHub actions #158
  • Add node engine #157
  • Dependabot ecosystem #166
  • Remove tslint file #170
  • Update prettier to v3.0.1 #148
  • Update jest to v29.6.2 #145
  • Update @types/node to v18.17.5 #120
  • Update @types/react to v18.2.20 #113
  • Update prettier to v3.0.2 #160
  • Update node-fetch to v2.6.12 #161
  • Update node.js to v18.17.1 #114

v0.17.1

11 Jul 20:51
Compare
Choose a tag to compare

Patches

v0.17.0

11 Jul 20:49
5922ace
Compare
Choose a tag to compare

Minor

  • Add custom headers support #131

Patches

  • Fix React types #136
  • Ensure either text or html is a required field #130
  • Bump semver from 5.7.1 to 5.7.2 #135
  • Bump @types/jest to v29.5.3 #134
  • Bump json5 from 2.2.1 to 2.2.3 #127
  • Bump cookiejar from 2.1.3 to 2.1.4 #126
  • Bump prettier to v3 #123
  • Bump jest to v29.6.1 #121
  • Bump ts-jest to v29.1.1 #119
  • Bump typescript to v5.1.6 #117

v0.16.0

26 Jun 21:20
Compare
Choose a tag to compare

Minor

v0.15.3

16 Jun 13:59
Compare
Choose a tag to compare

Patches

  • Fix list API keys returning types #111
  • Fix list domains returning types #112

v0.15.2

16 Jun 13:43
cce3dd0
Compare
Choose a tag to compare

Patches

  • Fix domain list types #108
  • Update dependency axios-mock-adapter to v1.21.5 #106
  • Update dependency typescript to v5.1.3 #103
  • Update dependency @types/jest to v29.5.2 #102

Misc

  • Move examples to separate repos
  • Standardize README

v0.15.1

25 May 15:43
97491e8
Compare
Choose a tag to compare

Patch

  • Fix resend.emails.send() method missing React #98

v0.15.0

25 May 15:36
Compare
Choose a tag to compare

Minor

  • Add URL file attachment support #97