From 021471436165bfa73c13fb5d76dc07d2e9cdd0f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Jul 2026 05:05:32 +0000 Subject: [PATCH] chore(release): version packages --- .changeset/bright-walls-echo.md | 5 ----- .changeset/modern-mppx-receipts.md | 8 -------- .changeset/quiet-aep-mpp-example.md | 4 ---- .changeset/tidy-pens-listen.md | 6 ------ packages/mpp-buyer/CHANGELOG.md | 13 +++++++++++++ packages/mpp-buyer/package.json | 2 +- packages/mpp-seller/CHANGELOG.md | 18 ++++++++++++++++++ packages/mpp-seller/package.json | 2 +- packages/mpp/CHANGELOG.md | 15 +++++++++++++++ packages/mpp/package.json | 2 +- 10 files changed, 49 insertions(+), 26 deletions(-) delete mode 100644 .changeset/bright-walls-echo.md delete mode 100644 .changeset/modern-mppx-receipts.md delete mode 100644 .changeset/quiet-aep-mpp-example.md delete mode 100644 .changeset/tidy-pens-listen.md diff --git a/.changeset/bright-walls-echo.md b/.changeset/bright-walls-echo.md deleted file mode 100644 index 78bc248..0000000 --- a/.changeset/bright-walls-echo.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@inflowpayai/mpp-seller': patch ---- - -Preserve the challenge `opaque` value when forwarding verified credentials for redemption. diff --git a/.changeset/modern-mppx-receipts.md b/.changeset/modern-mppx-receipts.md deleted file mode 100644 index 8285d86..0000000 --- a/.changeset/modern-mppx-receipts.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@inflowpayai/mpp': patch -'@inflowpayai/mpp-buyer': patch -'@inflowpayai/mpp-seller': patch ---- - -Require mppx 0.8.12 or newer and emit MPP receipts with `challengeId` and nested `settlement.amount` and -`settlement.currency` fields. diff --git a/.changeset/quiet-aep-mpp-example.md b/.changeset/quiet-aep-mpp-example.md deleted file mode 100644 index 226a308..0000000 --- a/.changeset/quiet-aep-mpp-example.md +++ /dev/null @@ -1,4 +0,0 @@ ---- ---- - -Add an Express example that applies AEP API-key authentication before MPP payment enforcement. diff --git a/.changeset/tidy-pens-listen.md b/.changeset/tidy-pens-listen.md deleted file mode 100644 index ff538fa..0000000 --- a/.changeset/tidy-pens-listen.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@inflowpayai/mpp': patch ---- - -Validate credential structure during decoding, accept core MPP receipts while preserving method-specific extensions, and -reject empty required fields and duplicate parameters when parsing payment challenges. diff --git a/packages/mpp-buyer/CHANGELOG.md b/packages/mpp-buyer/CHANGELOG.md index 5e91190..b67b515 100644 --- a/packages/mpp-buyer/CHANGELOG.md +++ b/packages/mpp-buyer/CHANGELOG.md @@ -1,5 +1,18 @@ # @inflowpayai/mpp-buyer +## 0.6.2 + +### Patch Changes + +- [#31](https://github.com/inflowpayai/inflow-node/pull/31) + [`fcf912e`](https://github.com/inflowpayai/inflow-node/commit/fcf912e9163db0779186684a86326df025bd414e) Thanks + [@nkavian](https://github.com/nkavian)! - Require mppx 0.8.12 or newer and emit MPP receipts with `challengeId` and + nested `settlement.amount` and `settlement.currency` fields. +- Updated dependencies + [[`fcf912e`](https://github.com/inflowpayai/inflow-node/commit/fcf912e9163db0779186684a86326df025bd414e), + [`56f6c8b`](https://github.com/inflowpayai/inflow-node/commit/56f6c8b9e9ad169f6bc3ee45d387dc4575946682)]: + - @inflowpayai/mpp@0.7.1 + ## 0.6.1 ### Patch Changes diff --git a/packages/mpp-buyer/package.json b/packages/mpp-buyer/package.json index 340d95f..cccc95d 100644 --- a/packages/mpp-buyer/package.json +++ b/packages/mpp-buyer/package.json @@ -1,6 +1,6 @@ { "name": "@inflowpayai/mpp-buyer", - "version": "0.6.1", + "version": "0.6.2", "description": "InFlow MPP SDK: buyer-side `inflow` method that drives the InFlow buyer endpoints (prepare → poll → cancel) and returns the server-produced credential, composed with the mppx foundation client.", "type": "module", "main": "./dist/index.cjs", diff --git a/packages/mpp-seller/CHANGELOG.md b/packages/mpp-seller/CHANGELOG.md index aa4dc6e..1f499d1 100644 --- a/packages/mpp-seller/CHANGELOG.md +++ b/packages/mpp-seller/CHANGELOG.md @@ -1,5 +1,23 @@ # @inflowpayai/mpp-seller +## 0.6.2 + +### Patch Changes + +- [#31](https://github.com/inflowpayai/inflow-node/pull/31) + [`2e041a1`](https://github.com/inflowpayai/inflow-node/commit/2e041a13818b67ea95605926c9360aa07079b47e) Thanks + [@nkavian](https://github.com/nkavian)! - Preserve the challenge `opaque` value when forwarding verified credentials + for redemption. + +- [#31](https://github.com/inflowpayai/inflow-node/pull/31) + [`fcf912e`](https://github.com/inflowpayai/inflow-node/commit/fcf912e9163db0779186684a86326df025bd414e) Thanks + [@nkavian](https://github.com/nkavian)! - Require mppx 0.8.12 or newer and emit MPP receipts with `challengeId` and + nested `settlement.amount` and `settlement.currency` fields. +- Updated dependencies + [[`fcf912e`](https://github.com/inflowpayai/inflow-node/commit/fcf912e9163db0779186684a86326df025bd414e), + [`56f6c8b`](https://github.com/inflowpayai/inflow-node/commit/56f6c8b9e9ad169f6bc3ee45d387dc4575946682)]: + - @inflowpayai/mpp@0.7.1 + ## 0.6.1 ### Patch Changes diff --git a/packages/mpp-seller/package.json b/packages/mpp-seller/package.json index 26eda56..af79782 100644 --- a/packages/mpp-seller/package.json +++ b/packages/mpp-seller/package.json @@ -1,6 +1,6 @@ { "name": "@inflowpayai/mpp-seller", - "version": "0.6.1", + "version": "0.6.2", "description": "InFlow MPP SDK: seller-side `inflow` method built as a native mppx server method — challenges are minted and HMAC-bound locally by mppx, while verify delegates settlement to the InFlow PSP (POST /v1/mpp/redeem).", "type": "module", "main": "./dist/index.cjs", diff --git a/packages/mpp/CHANGELOG.md b/packages/mpp/CHANGELOG.md index 4c7232b..8028845 100644 --- a/packages/mpp/CHANGELOG.md +++ b/packages/mpp/CHANGELOG.md @@ -1,5 +1,20 @@ # @inflowpayai/mpp +## 0.7.1 + +### Patch Changes + +- [#31](https://github.com/inflowpayai/inflow-node/pull/31) + [`fcf912e`](https://github.com/inflowpayai/inflow-node/commit/fcf912e9163db0779186684a86326df025bd414e) Thanks + [@nkavian](https://github.com/nkavian)! - Require mppx 0.8.12 or newer and emit MPP receipts with `challengeId` and + nested `settlement.amount` and `settlement.currency` fields. + +- [#31](https://github.com/inflowpayai/inflow-node/pull/31) + [`56f6c8b`](https://github.com/inflowpayai/inflow-node/commit/56f6c8b9e9ad169f6bc3ee45d387dc4575946682) Thanks + [@nkavian](https://github.com/nkavian)! - Validate credential structure during decoding, accept core MPP receipts + while preserving method-specific extensions, and reject empty required fields and duplicate parameters when parsing + payment challenges. + ## 0.7.0 ### Minor Changes diff --git a/packages/mpp/package.json b/packages/mpp/package.json index 5926422..18b5368 100644 --- a/packages/mpp/package.json +++ b/packages/mpp/package.json @@ -1,6 +1,6 @@ { "name": "@inflowpayai/mpp", - "version": "0.7.0", + "version": "0.7.1", "description": "InFlow MPP SDK core: the inflow Method definition, protocol types, codec, and HTTP client.", "type": "module", "main": "./dist/index.cjs",