Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2026

Bumps resend from 6.7.0 to 6.9.1.

Release notes

Sourced from resend's releases.

v6.9.1

What's Changed

Full Changelog: resend/resend-node@v6.9.0...v6.9.1

v6.9.0

What's Changed

New Contributors

Full Changelog: resend/resend-node@v6.8.0...v6.9.0

v6.8.0

What's Changed

Full Changelog: resend/resend-node@v6.7.0...v6.8.0

Commits
  • e015620 chore: bump to 6.9.1 (#816)
  • 6f0195a fix(deps): update dependency next to v16.1.5 (#810)
  • aec5a72 chore: add react and react-dom as devDependencies (#814)
  • e97db88 fix(deps): update react monorepo (#811)
  • fe07bd1 chore(deps): update dependency @​biomejs/biome to v2.3.13 (#806)
  • f1baaec chore(deps): update pnpm to v10.28.2 (#807)
  • 8a8ebcc fix(deps): update dependency mailparser to v3.9.1 (#809)
  • 2a48341 chore: bump to 6.9.0 (#808)
  • 0d97792 feat: add method to help with forwarding inbound emails (#797)
  • f0dfcb0 feat: export all interfaces from main index (#802)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by cubic

Upgrade Resend SDK from 6.7.0 to 6.9.1 to pick up fixes and minor features like the inbound email forwarding helper and contact/broadcast improvements. No app code changes; only dependency updates.

  • Dependencies
    • resend: 6.7.0 → 6.9.1
    • Adds transitive mailparser 3.9.1 and related packages (e.g., html-to-text, nodemailer) via Resend

Written for commit 0f9bd91. Summary will update on new commits.

Bumps [resend](https://github.com/resend/resend-node) from 6.7.0 to 6.9.1.
- [Release notes](https://github.com/resend/resend-node/releases)
- [Commits](resend/resend-node@v6.7.0...v6.9.1)

---
updated-dependencies:
- dependency-name: resend
  dependency-version: 6.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 10, 2026
Copy link

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 3 files

Confidence score: 5/5

  • Automated review surfaced no issues in the provided summaries.
  • No files require special attention.
Architecture diagram
sequenceDiagram
    participant App as Application Logic
    participant SDK as Resend SDK (v6.9.1)
    participant API as Resend API
    
    Note over App,API: NEW/CHANGED: Runtime Flow Capabilities (SDK v6.7.0 -> v6.9.1)

    alt NEW: Simplified Broadcast Sending
        App->>SDK: broadcasts.create({ ..., send: true })
        SDK->>API: POST /broadcasts (single request for create + send)
        API-->>App: Return Broadcast Details
    end

    alt NEW: Inbound Email Forwarding
        Note right of App: Process raw inbound webhook data
        App->>SDK: emails.forward(inboundEmailData)
        SDK->>SDK: internal: Parse via mailparser (v3.9.1)
        SDK->>API: POST /emails (forwarded payload)
        API-->>App: Email Tracking ID
    end

    alt CHANGED: Enhanced Contact Management
        App->>SDK: contacts.create({ segments: [...], topics: [...] })
        Note right of SDK: NEW: Support for audience segmentation
        SDK->>API: POST /contacts (with segment/topic metadata)
        API-->>App: Contact Record
    end

    Note over SDK: NEW: All TypeScript interfaces<br/>exported from main index
Loading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants