better_auth-stripe 0.5.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50cbd34a0653ee11f468c468680cab8488c7c9237222988a5081d3f4a9360854
4
- data.tar.gz: 96a160c8321fd680d82836be2757dbbc3db3836d454151e5a48f864221d1e7c5
3
+ metadata.gz: 1858dc05175fb2101ce2afb5f74a3e7de80a9b88c96a7980fbd7b6bfcac6afcc
4
+ data.tar.gz: f3f683695cb0f73a2f8d5aca655f9cd8b040fa97e26fadac1300096488cc783f
5
5
  SHA512:
6
- metadata.gz: 6bf99b4001607d42cf0622868dac3f53e02b8116a65f6dd6cb8018b092c20ac6dda31359cc6ed3ae267461576a78c56ffc43ff9b494ca33d05e95dcd1313fc35
7
- data.tar.gz: 1eac1624ebfedeedfd0cc57b7a1f29d5011580bf7ee0ad6c4d87e6555fe24572838946066afb9bf9c60df4b954191de0b8e1b498f86154c22271ffeb449f299b
6
+ metadata.gz: fbb99518f0ad2849d066462f0fa1cbfb0a6451c741eac7aa45d86a6176b03c03543eccd58dc60ecd5df25898c10739d9ce8b033446fc8264822c1754450b4ff1
7
+ data.tar.gz: f876d15cc9690af96b0b864665a767bd6dddeac4ed8508bede47b78e874a9917e0d032bbc43f77980cc2d27bab89f5f1ea726f60ab97d13cb4ed6734bd170006
data/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.7.0] - 2026-05-05
6
+
7
+ - Changed Stripe webhooks to reject requests when the configured Stripe client does not expose `webhooks.construct_event_async` or `webhooks.construct_event`, preventing unverified payload processing.
8
+ - Hardened Stripe subscription route middleware and webhook origin handling with regression coverage.
9
+
10
+ ## [0.6.0] - 2026-05-02
11
+
12
+ - Modularized the Stripe plugin into upstream-aligned client, schema, middleware, hooks, route, metadata, type, and utility modules while keeping the existing public facade.
13
+ - Added high-value parity coverage for schema merging, plugin version metadata, reference authorization, subscription routes, webhook edge cases, and seat-based billing.
14
+ - Preserved custom schema field names and exposed plugin version metadata for closer upstream Better Auth parity.
15
+
5
16
  ## [0.2.1] - 2026-04-30
6
17
 
7
18
  - Fixed Stripe checkout and subscription parity edge cases for reused customer IDs, plugin-owned schedule releases, missing checkout sessions, plan limits, and organization reference validation.