Skip to content

Releases: a11rew/medusa-payment-paystack

medusa-payment-paystack@1.3.0

07 Apr 20:41
acaa307
Compare
Choose a tag to compare

Minor Changes

  • 235282e: Adds support for Paystack webhooks

Patch Changes

  • ee5a111: Updates orderCapturer subscriber implementation to remove deprecation warning

medusa-payment-paystack@1.2.3

19 Mar 16:51
938fe54
Compare
Choose a tag to compare

Patch Changes

  • ac65bde: Fixes initialization errors related to "msw/node" requires

medusa-payment-paystack@1.2.2

19 Mar 07:53
9125ea0
Compare
Choose a tag to compare

Patch Changes

  • c77bb51: Adds support for automatically retrying network and 5xx errors in requests sent to Paystack.

medusa-payment-paystack@1.2.1

15 Jan 09:57
c5415d6
Compare
Choose a tag to compare

Patch Changes

  • cc7407a: Removes hardcoded currency restrictions
    Improves logging of Paystack API errors

medusa-payment-paystack@1.2.0

02 Nov 23:47
94d05bc
Compare
Choose a tag to compare

Minor Changes

  • 1524578: Payments are now automatically marked as captured. You do not have to go into the admin dashboard after every order to mark the payment as captured.

medusa-payment-paystack@1.1.4

21 Oct 18:04
9939626
Compare
Choose a tag to compare

Patch Changes

  • a27dbfe: Use Axios for Paystack API requests to resolve header issues on some platforms.

    Credits: JaeKralj

medusa-payment-paystack@1.1.3

07 Oct 12:52
ca7e8b7
Compare
Choose a tag to compare

Patch Changes

  • 47af03f: Upgrade dependencies
    Include README in published package

medusa-payment-paystack@1.1.2

30 Aug 12:41
5297078
Compare
Choose a tag to compare

Patch Changes

  • 731da1d: Re-adds amount and currency checks

    Adds new debug mode for testing

medusa-payment-paystack@1.1.1

27 Aug 10:10
5055547
Compare
Choose a tag to compare

Patch Changes

  • e8cf256: Removes outdated Paystack API wrapper package we were using prior fixing deprecated dependency warnings.

    Also changes how we generate references. Transactions are initialized with Paystack and the returned reference used instead of an arbitrary cuid.

medusa-payment-paystack@1.1.0

18 Aug 17:52
1430481
Compare
Choose a tag to compare

Minor Changes

  • Updates plugin to support new Payment Processor standard.

  • Plugin now exports PluginOptions type helpful for configuring the plugin in medusa-config.js:

    const plugins = [
      // other plugins
      {
        resolve: `medusa-payment-paystack`,
        /** @type {import("medusa-payment-paystack").PluginOptions} */
        options: {
          secret_key: "<PAYSTACK_SECRET_KEY>",
        },
      },
    ];
  • Removes unnecessary deps and updates outdated ones, results in smaller bundle size.

  • Plugin does not attempt to verify amount and currency of transaction anymore.