Skip to content

chore(deps): bump mppx from 0.4.12 to 0.8.1 in /web#191

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web/mppx-0.8.1
Open

chore(deps): bump mppx from 0.4.12 to 0.8.1 in /web#191
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web/mppx-0.8.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 30, 2026

Copy link
Copy Markdown
Contributor

Bumps mppx from 0.4.12 to 0.8.1.

Release notes

Sourced from mppx's releases.

mppx@0.8.1

Patch Changes

  • 2c4086f: Disabled automatic CLI configuration discovery from local directories.
  • 2158a40: Enforced sponsor fee policies before hosted fee-payer signing.
  • ca8687b: Validated session open deposit and voucher amounts before sponsored broadcast.

mppx@0.8.0

Minor Changes

  • daab9b8: Breaking: Collapsed McpClient.wrap and the in-place wrapClient variant into a single McpClient.wrap API on the mppx/mcp/client entrypoint.

    McpClient.wrap now adds payment handling to an MCP SDK client in place: the client is mutated and the same reference is returned, so surfaces that keep using the original client become payment-aware (e.g. when another SDK owns the client reference, like Cloudflare Agents). The MCP SDK callTool(params, resultSchema?, options?) signature is preserved, payment challenges are handled whether they arrive as payment-required errors or as tool results carrying org.paymentauth/payment-required metadata, and the config accepts orderChallenges and paymentPreferences alongside methods and onPaymentRequired. Calling wrap on the same client again replaces its payment configuration.

    Migration: move per-call options from the second argument to the third — mcp.callTool(params, undefined, { context, timeout }) — and replace the approval-first overload mcp.callTool(onPaymentRequired, params, options) with the onPaymentRequired option: mcp.callTool(params, undefined, { onPaymentRequired }) (pass null to bypass a configured hook). The MCP entrypoints moved to mppx/mcp/client and mppx/mcp/server; the mppx/mcp-sdk/* specifiers remain as aliases.

  • e755222: Settled MCP-over-HTTP payment challenges in the same payment-aware fetch as HTTP 402s, so Transport.http() can extract JSON-RPC -32042 challenges and retry with credentials in MCP metadata.

  • 18b57cc: Added a pluggable channelStore for persisting reusable payer session channels and removed the client-side authorizedSigner override so voucher authority is derived from the selected account.

Patch Changes

  • 4c79a78: Rejected empty Payment challenge IDs during construction and deserialization.
  • 7c38c17: Deprecated uppercase asset and chain aliases in favor of lowercase exports.
  • 0e88d07: Corrected PaymentRequest documentation examples to use the exported namespace name.
  • 8da60b5: Documented explicit server secret key configuration in README examples.
  • 7ab4e00: Fixed legacy session manager close amounts when receipts reported per-request spent deltas.
  • b5d8657: Updated Hono dependencies to patched versions.
  • 5e27ef2: Fixed SSE session accounting so voucher management posts no longer consumed stream charges.
  • ec1ad50: Hardened server secret-key validation and capped oversized WWW-Authenticate request parameters.
  • 11db0bd: Removed now-unused wallet_authorizeChallenge support.
  • a1199b0: Added credential-required Tempo subscription reuse and signed-source lookup support so active subscriptions could be bound to the recovered payer instead of request metadata alone.
  • e80feeb: The Tempo fee-payer (sponsor) pre-broadcast simulation now simulates the co-signed transaction the sponsor actually broadcasts — with the concrete fee payer and chosen fee token — instead of the pre-cosign 0x78 envelope, for both local and hosted (feePayerUrl) fee payers. This catches reverts in the exact transaction the sponsor pays gas for, and fails closed (no broadcast) when the simulation reverts.
  • c2611f6: Added tempo.common() as an explicit alias for the Tempo charge and session method bundle.
  • b84cc06: Added generic Tempo account resolution for charge/session credentials and primitive session voucher signatures.
  • 034315e: Updated proxy route examples to use current route handler APIs.
  • 4e5abf4: Hardened confirmed Tempo subscription settlement against T6 (TIP-1028) receive policies. Activation and renewal payments that wait for confirmation now verify that a TIP-20 TransferWithMemo log credits the intended recipient for the expected amount with the generated settlement memo, instead of trusting transaction success alone. Transfers held by a receiver's receive policy (redirected to ReceivePolicyGuard) are now rejected rather than treated as paid, and the memo binding excludes unrelated transfer effects in the same receipt. Documented that the optimistic waitForConfirmation: false mode cannot prove recipient credit under T6.
  • c15be54: Added wallet_authorizeChallenge support. JSON-RPC accounts now delegate Tempo charge and session challenges to wallets that advertise MPP support via wallet_getCapabilities, falling back to local signing otherwise.
  • d14d933: Bound Tempo zero-amount proof credentials to the payer wallet. The EIP-712 Proof typed-data now includes an account field (domain version bumped to 3), so a proof signature commits to a specific payer address and can no longer be replayed against a different account — including across an access key authorized for multiple accounts. Exposed the canonical proof contract via tempo.Proof (types, domain, primaryType, message, typedData, hash) and added deterministic conformance vectors covering the wallet-binding property.

mppx@0.7.0

Minor Changes

  • 6ae92c4: Added TIP-1034-backed Tempo sessions as the default tempo.session interface and moved the previous session flow to tempo.sessionLegacy.

Patch Changes

  • da6383e: Defaulted account faucet funding to testnet unless a network or RPC URL was specified.
  • 64e9d5f: Fixed hosted Tempo fee-payer fills for sender-signed sponsored charge transactions and validated sponsored fee tokens against pathUSD and chain default currencies.
  • eaac057: Added MCP client payment approval callbacks before credential creation.
  • 77520fa: Changed the Tempo session client API so tempo.session() created the low-level Mppx client method and tempo.session.manager() created the managed session lifecycle client.

... (truncated)

Changelog

Sourced from mppx's changelog.

0.8.1

Patch Changes

  • 2c4086f: Disabled automatic CLI configuration discovery from local directories.
  • 2158a40: Enforced sponsor fee policies before hosted fee-payer signing.
  • ca8687b: Validated session open deposit and voucher amounts before sponsored broadcast.

0.8.0

Minor Changes

  • daab9b8: Breaking: Collapsed McpClient.wrap and the in-place wrapClient variant into a single McpClient.wrap API on the mppx/mcp/client entrypoint.

    McpClient.wrap now adds payment handling to an MCP SDK client in place: the client is mutated and the same reference is returned, so surfaces that keep using the original client become payment-aware (e.g. when another SDK owns the client reference, like Cloudflare Agents). The MCP SDK callTool(params, resultSchema?, options?) signature is preserved, payment challenges are handled whether they arrive as payment-required errors or as tool results carrying org.paymentauth/payment-required metadata, and the config accepts orderChallenges and paymentPreferences alongside methods and onPaymentRequired. Calling wrap on the same client again replaces its payment configuration.

    Migration: move per-call options from the second argument to the third — mcp.callTool(params, undefined, { context, timeout }) — and replace the approval-first overload mcp.callTool(onPaymentRequired, params, options) with the onPaymentRequired option: mcp.callTool(params, undefined, { onPaymentRequired }) (pass null to bypass a configured hook). The MCP entrypoints moved to mppx/mcp/client and mppx/mcp/server; the mppx/mcp-sdk/* specifiers remain as aliases.

  • e755222: Settled MCP-over-HTTP payment challenges in the same payment-aware fetch as HTTP 402s, so Transport.http() can extract JSON-RPC -32042 challenges and retry with credentials in MCP metadata.

  • 18b57cc: Added a pluggable channelStore for persisting reusable payer session channels and removed the client-side authorizedSigner override so voucher authority is derived from the selected account.

Patch Changes

  • 4c79a78: Rejected empty Payment challenge IDs during construction and deserialization.
  • 7c38c17: Deprecated uppercase asset and chain aliases in favor of lowercase exports.
  • 0e88d07: Corrected PaymentRequest documentation examples to use the exported namespace name.
  • 8da60b5: Documented explicit server secret key configuration in README examples.
  • 7ab4e00: Fixed legacy session manager close amounts when receipts reported per-request spent deltas.
  • b5d8657: Updated Hono dependencies to patched versions.
  • 5e27ef2: Fixed SSE session accounting so voucher management posts no longer consumed stream charges.
  • ec1ad50: Hardened server secret-key validation and capped oversized WWW-Authenticate request parameters.
  • 11db0bd: Removed now-unused wallet_authorizeChallenge support.
  • a1199b0: Added credential-required Tempo subscription reuse and signed-source lookup support so active subscriptions could be bound to the recovered payer instead of request metadata alone.
  • e80feeb: The Tempo fee-payer (sponsor) pre-broadcast simulation now simulates the co-signed transaction the sponsor actually broadcasts — with the concrete fee payer and chosen fee token — instead of the pre-cosign 0x78 envelope, for both local and hosted (feePayerUrl) fee payers. This catches reverts in the exact transaction the sponsor pays gas for, and fails closed (no broadcast) when the simulation reverts.
  • c2611f6: Added tempo.common() as an explicit alias for the Tempo charge and session method bundle.
  • b84cc06: Added generic Tempo account resolution for charge/session credentials and primitive session voucher signatures.
  • 034315e: Updated proxy route examples to use current route handler APIs.
  • 4e5abf4: Hardened confirmed Tempo subscription settlement against T6 (TIP-1028) receive policies. Activation and renewal payments that wait for confirmation now verify that a TIP-20 TransferWithMemo log credits the intended recipient for the expected amount with the generated settlement memo, instead of trusting transaction success alone. Transfers held by a receiver's receive policy (redirected to ReceivePolicyGuard) are now rejected rather than treated as paid, and the memo binding excludes unrelated transfer effects in the same receipt. Documented that the optimistic waitForConfirmation: false mode cannot prove recipient credit under T6.
  • c15be54: Added wallet_authorizeChallenge support. JSON-RPC accounts now delegate Tempo charge and session challenges to wallets that advertise MPP support via wallet_getCapabilities, falling back to local signing otherwise.
  • d14d933: Bound Tempo zero-amount proof credentials to the payer wallet. The EIP-712 Proof typed-data now includes an account field (domain version bumped to 3), so a proof signature commits to a specific payer address and can no longer be replayed against a different account — including across an access key authorized for multiple accounts. Exposed the canonical proof contract via tempo.Proof (types, domain, primaryType, message, typedData, hash) and added deterministic conformance vectors covering the wallet-binding property.

0.7.0

Minor Changes

  • 6ae92c4: Added TIP-1034-backed Tempo sessions as the default tempo.session interface and moved the previous session flow to tempo.sessionLegacy.

Patch Changes

  • da6383e: Defaulted account faucet funding to testnet unless a network or RPC URL was specified.

... (truncated)

Commits

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)

Bumps [mppx](https://github.com/wevm/mppx) from 0.4.12 to 0.8.1.
- [Release notes](https://github.com/wevm/mppx/releases)
- [Changelog](https://github.com/wevm/mppx/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wevm/mppx/compare/mppx@0.4.12...mppx@0.8.1)

---
updated-dependencies:
- dependency-name: mppx
  dependency-version: 0.8.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 Jun 30, 2026
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