New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mailgun.js

Package Overview
Dependencies
Maintainers
13
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mailgun.js - npm Package Versions

23
11

12.0.0

Diff

Changelog

Source

12.0.0 (2025-02-24)

Breaking changes

  • Move types, interfaces, enums into submodule (dba1dd9)
  • Exports of TypeScript types, interfaces, and enums have been moved to the mailgun.js/definitions submodule. In case you need them, starting from version 12, please use

    import { MailgunClientOptions, MessagesSendResult } from 'mailgun.js/definitions';
    

    instead of

    import { MailgunClientOptions, MessagesSendResult } from 'mailgun.js';
    
  • AMD import no longer requires using the .default property. So now this is

    <script>
    require('./dist/AMD/mailgun.amd.js', function(Mailgun) {
     const mailgun = new Mailgun(FormData); // default property is not needed anymore
    }
    </script>
    

    Instead of

    <script>
    require('./dist/AMD/mailgun.amd.js', function(Mailgun) {
     const mailgun = new Mailgun.default(FormData);  // default property was required previously
    });
    </script>
    

Other changes

oleksandr-mazepa
published 11.1.0 •

Changelog

Source

11.1.0 (2025-01-09)

Features

  • Adding Secure Tracking API support (b5ff1e0)
oleksandr-mazepa
published 11.0.0 •

Changelog

Source

11.0.0 (2025-01-09)

Other changes

  • Update readme by domain templates (8e12c86)

Breaking changes

  • Update domains client to use v4 of API (a2efc8c)
oleksandr-mazepa
published 10.4.0 •

Changelog

Source

10.4.0 (2024-12-30)

Features

Other changes

oleksandr-mazepa
published 10.3.0 •

Changelog

Source

10.3.0 (2024-12-23)

Features

  • Add support for Inbox Placements (5450a4b)
oleksandr-mazepa
published 10.2.4 •

Changelog

Source

10.2.4 (2024-11-21)

Bug Fixes

  • deps-dev: bump webpack from 5.76.0 to 5.94.0 (166f27c)
  • deps: bump axios from 1.7.2 to 1.7.4 (22ae183)
  • Fix vulnarable dependency (039866b)

Other changes

  • Add tests coverage thresholds (bfca371)
oleksandr-mazepa
published 10.2.3 •

Changelog

Source

10.2.3 (2024-07-18)

oleksandr-mazepa
published 10.2.2 •

Changelog

Source

10.2.2 (2024-07-17)

Bug Fixes

oleksandr-mazepa
published 10.2.1 •

Changelog

Source

10.2.1 (2024-02-16)

Bug Fixes

  • Source.on is not a function for t:variables (e647143)
oleksandr-mazepa
published 10.2.0 •

Changelog

Source

10.2.0 (2024-02-15)

Features

  • Better types and handling for different FormData implementations (c547be9)
23
11
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc