Skip to content

Commit db24170

Browse files
authored
feat(*): upgrade resources to node18 (#589)
1 parent 3b55561 commit db24170

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

firestore-stripe-invoices/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Version 0.2.5 - 2023-12-21
2+
3+
[fix] - upgraded the resources to node 18 [#583]
4+
15
## Version 0.2.4 - 2023-10-08
26

37
[fix] - updated extension icons

firestore-stripe-invoices/extension.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
name: firestore-stripe-invoices
16-
version: 0.2.4
16+
version: 0.2.5
1717
specVersion: v1beta
1818

1919
displayName: Send Invoices using Stripe
@@ -62,7 +62,7 @@ resources:
6262
in your specified Cloud Firestore collection
6363
properties:
6464
location: ${LOCATION}
65-
runtime: nodejs16
65+
runtime: nodejs18
6666
eventTrigger:
6767
eventType: providers/cloud.firestore/eventTypes/document.create
6868
resource: projects/${PROJECT_ID}/databases/(default)/documents/${INVOICES_COLLECTION}/{id}
@@ -75,7 +75,7 @@ resources:
7575
a new Stripe Event is received.
7676
properties:
7777
location: ${LOCATION}
78-
runtime: nodejs16
78+
runtime: nodejs18
7979
httpsTrigger: {}
8080

8181
params:

firestore-stripe-payments/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Version 0.3.7 - 2023-12-21
2+
3+
[fix] - upgraded the resources to node 18 [#583]
4+
15
## Version 0.3.6 - 2023-10-08
26

37
[feat] - Support `payment_method_collection` parameter

firestore-stripe-payments/extension.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
name: firestore-stripe-payments
16-
version: 0.3.6
16+
version: 0.3.7
1717
specVersion: v1beta
1818

1919
displayName: Run Payments with Stripe
@@ -57,7 +57,7 @@ resources:
5757
Creates a Stripe customer object when a new user signs up.
5858
properties:
5959
location: ${LOCATION}
60-
runtime: nodejs14
60+
runtime: nodejs18
6161
eventTrigger:
6262
eventType: providers/firebase.auth/eventTypes/user.create
6363
resource: projects/${PROJECT_ID}
@@ -68,7 +68,7 @@ resources:
6868
Creates a Checkout session to collect the customer's payment details.
6969
properties:
7070
location: ${LOCATION}
71-
runtime: nodejs14
71+
runtime: nodejs18
7272
eventTrigger:
7373
eventType: providers/cloud.firestore/eventTypes/document.create
7474
resource: projects/${PROJECT_ID}/databases/(default)/documents/${CUSTOMERS_COLLECTION}/{uid}/checkout_sessions/{id}
@@ -79,7 +79,7 @@ resources:
7979
Creates links to the customer portal for the user to manage their payment & subscription details.
8080
properties:
8181
location: ${LOCATION}
82-
runtime: nodejs14
82+
runtime: nodejs18
8383
httpsTrigger: {}
8484

8585
- name: handleWebhookEvents
@@ -88,7 +88,7 @@ resources:
8888
Handles Stripe webhook events to keep subscription statuses in sync and update custom claims.
8989
properties:
9090
location: ${LOCATION}
91-
runtime: nodejs14
91+
runtime: nodejs18
9292
httpsTrigger: {}
9393

9494
- name: onUserDeleted

0 commit comments

Comments
 (0)