Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Stripe product link type for link custom fields #26

Merged
merged 9 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG-WIP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Release Notes for Stripe 1.2 (WIP)

## Unreleased

> [!NOTE]
> Stripe plugin now requires additional webhook events to be registered. Re-register the webhook handler in the plugin settings, or add the new events below to the webhook registration in Stripe.
- Webhook handler now listens for `customer.updated` events.
- It’s now possible to manually sync Stripe customer data on Edit User pages.
- Added support for selecting products in Link fields.
- Added `craft\stripe\events\StripeEvent`.
- Added `craft\stripe\services\Webhooks::EVENT_STRIPE_EVENT`.
- Added `craft\stripe\linktypes\Product`.
- Fixed a SQL error that occurred when syncing subscriptions that were missing a `latest_invoice` value.
- Fixed links to Stripe dashboard when in live mode.
- Stripe now requires Craft CMS 5.3.0 or later.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prefer-stable": true,
"require": {
"php": "^8.2",
"craftcms/cms": "^5.1.0",
"craftcms/cms": "^5.3.0",
"stripe/stripe-php": "^13|^14"
},
"require-dev": {
Expand Down
Loading
Loading