Skip to content

Commit f3cc89f

Browse files
committed
feat: bump to Node.js 20 runtimes
1 parent 665e247 commit f3cc89f

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

firestore-stripe-invoices/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 0.2.7 - 2025-03-24
2+
3+
[fix] - upgrade resources to node 20
4+
15
### Version 0.2.6 - 2024-02-14
26

37
[feat] - Added `payments` tag to the extension to allow for easier discovery in the marketplace.

firestore-stripe-invoices/extension.yaml

+3-3
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.6
16+
version: 0.2.7
1717
specVersion: v1beta
1818

1919
displayName: Send Invoices using Stripe
@@ -63,7 +63,7 @@ resources:
6363
in your specified Cloud Firestore collection
6464
properties:
6565
location: ${LOCATION}
66-
runtime: nodejs18
66+
runtime: nodejs20
6767
eventTrigger:
6868
eventType: providers/cloud.firestore/eventTypes/document.create
6969
resource: projects/${PROJECT_ID}/databases/(default)/documents/${INVOICES_COLLECTION}/{id}
@@ -76,7 +76,7 @@ resources:
7676
a new Stripe Event is received.
7777
properties:
7878
location: ${LOCATION}
79-
runtime: nodejs18
79+
runtime: nodejs20
8080
httpsTrigger: {}
8181

8282
params:

firestore-stripe-payments/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 0.3.10 - 2025-03-24
2+
3+
[fix] - upgrade resources to node 20
4+
15
### Version 0.3.9 - 2024-02-14
26

37
[feat] - Allows to specify number of trial period days before initiating checkout flow. Does not depend on the now-legacy trial_from_plan parameter.

firestore-stripe-payments/extension.yaml

+7-7
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.9
16+
version: 0.3.10
1717
specVersion: v1beta
1818

1919
displayName: Run Payments with Stripe
@@ -61,7 +61,7 @@ resources:
6161
Creates a Stripe customer object when a new user signs up.
6262
properties:
6363
location: ${LOCATION}
64-
runtime: nodejs18
64+
runtime: nodejs20
6565
eventTrigger:
6666
eventType: providers/firebase.auth/eventTypes/user.create
6767
resource: projects/${PROJECT_ID}
@@ -72,7 +72,7 @@ resources:
7272
Creates a Checkout session to collect the customer's payment details.
7373
properties:
7474
location: ${LOCATION}
75-
runtime: nodejs18
75+
runtime: nodejs20
7676
eventTrigger:
7777
eventType: providers/cloud.firestore/eventTypes/document.create
7878
resource: projects/${PROJECT_ID}/databases/(default)/documents/${CUSTOMERS_COLLECTION}/{uid}/checkout_sessions/{id}
@@ -84,7 +84,7 @@ resources:
8484
& subscription details.
8585
properties:
8686
location: ${LOCATION}
87-
runtime: nodejs18
87+
runtime: nodejs20
8888
httpsTrigger: {}
8989

9090
- name: handleWebhookEvents
@@ -94,7 +94,7 @@ resources:
9494
update custom claims.
9595
properties:
9696
location: ${LOCATION}
97-
runtime: nodejs18
97+
runtime: nodejs20
9898
httpsTrigger: {}
9999

100100
- name: onUserDeleted
@@ -104,7 +104,7 @@ resources:
104104
when the user is deleted in Firebase Authentication.
105105
properties:
106106
location: ${LOCATION}
107-
runtime: nodejs18
107+
runtime: nodejs20
108108
eventTrigger:
109109
eventType: providers/firebase.auth/eventTypes/user.delete
110110
resource: projects/${PROJECT_ID}
@@ -116,7 +116,7 @@ resources:
116116
when the customer doc in Cloud Firestore is deleted.
117117
properties:
118118
location: ${LOCATION}
119-
runtime: nodejs18
119+
runtime: nodejs20
120120
eventTrigger:
121121
eventType: providers/cloud.firestore/eventTypes/document.delete
122122
resource: projects/${PROJECT_ID}/databases/(default)/documents/${CUSTOMERS_COLLECTION}/{uid}

0 commit comments

Comments
 (0)