Browse Source
Merge branch 'main' into bugfix/improve-creation-of-stripe-checkout-session
pull/7220/head
Thomas Kaul
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
10 additions and
6 deletions
-
CHANGELOG.md
-
apps/api/src/app/subscription/subscription.service.ts
-
package-lock.json
-
package.json
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Upgraded `stripe` from version `21.0.1` to `22.2.3` |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the creation of the _Stripe_ checkout session for languages not supported by _Stripe_ (`ca` and `uk`) |
|
|
|
|
|
|
|
@ -38,7 +38,7 @@ export class SubscriptionService { |
|
|
|
this.stripe = new Stripe( |
|
|
|
this.configurationService.get('STRIPE_SECRET_KEY'), |
|
|
|
{ |
|
|
|
apiVersion: '2026-03-25.dahlia' |
|
|
|
apiVersion: '2026-05-27.dahlia' |
|
|
|
} |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
@ -90,7 +90,7 @@ |
|
|
|
"passport-openidconnect": "0.1.2", |
|
|
|
"reflect-metadata": "0.2.2", |
|
|
|
"rxjs": "7.8.1", |
|
|
|
"stripe": "21.0.1", |
|
|
|
"stripe": "22.2.3", |
|
|
|
"svgmap": "2.21.0", |
|
|
|
"tablemark": "4.1.0", |
|
|
|
"twitter-api-v2": "1.29.0", |
|
|
|
@ -32298,9 +32298,9 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
"node_modules/stripe": { |
|
|
|
"version": "21.0.1", |
|
|
|
"resolved": "https://registry.npmjs.org/stripe/-/stripe-21.0.1.tgz", |
|
|
|
"integrity": "sha512-ocv0j7dWttswDWV2XL/kb6+yiLpDXNXL3RQAOB5OB2kr49z0cEatdQc12+zP/j5nrXk6rAsT4N3y/NUvBbK7Pw==", |
|
|
|
"version": "22.2.3", |
|
|
|
"resolved": "https://registry.npmjs.org/stripe/-/stripe-22.2.3.tgz", |
|
|
|
"integrity": "sha512-9lrggvLtjO4Ef5WXH4t50ckHJcJgTD72xFB+KJgZCSszAH9zMV1BqU6PwmWbRLdcdX7LK6PbErBapiGK7pIb+g==", |
|
|
|
"license": "MIT", |
|
|
|
"engines": { |
|
|
|
"node": ">=18" |
|
|
|
|
|
|
|
@ -134,7 +134,7 @@ |
|
|
|
"passport-openidconnect": "0.1.2", |
|
|
|
"reflect-metadata": "0.2.2", |
|
|
|
"rxjs": "7.8.1", |
|
|
|
"stripe": "21.0.1", |
|
|
|
"stripe": "22.2.3", |
|
|
|
"svgmap": "2.21.0", |
|
|
|
"tablemark": "4.1.0", |
|
|
|
"twitter-api-v2": "1.29.0", |
|
|
|
|