Skip to content

Commit

Permalink
feat(*): upgrade resources to node18 (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
pr-Mais committed Dec 21, 2023
1 parent 456cca4 commit b42931b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 4 additions & 0 deletions firestore-stripe-invoices/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 0.2.5 - 2023-12-21

[fix] - upgraded the resources to node 18 [#583]

## Version 0.2.4 - 2023-10-08

[fix] - updated extension icons
Expand Down
6 changes: 3 additions & 3 deletions firestore-stripe-invoices/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: firestore-stripe-invoices
version: 0.2.4
version: 0.2.5
specVersion: v1beta

displayName: Send Invoices using Stripe
Expand Down Expand Up @@ -62,7 +62,7 @@ resources:
in your specified Cloud Firestore collection
properties:
location: ${LOCATION}
runtime: nodejs16
runtime: nodejs18
eventTrigger:
eventType: providers/cloud.firestore/eventTypes/document.create
resource: projects/${PROJECT_ID}/databases/(default)/documents/${INVOICES_COLLECTION}/{id}
Expand All @@ -75,7 +75,7 @@ resources:
a new Stripe Event is received.
properties:
location: ${LOCATION}
runtime: nodejs16
runtime: nodejs18
httpsTrigger: {}

params:
Expand Down
4 changes: 4 additions & 0 deletions firestore-stripe-payments/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 0.3.7 - 2023-12-21

[fix] - upgraded the resources to node 18 [#583]

## Version 0.3.6 - 2023-10-08

[feat] - Support `payment_method_collection` parameter
Expand Down
10 changes: 5 additions & 5 deletions firestore-stripe-payments/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: firestore-stripe-payments
version: 0.3.6
version: 0.3.7
specVersion: v1beta

displayName: Run Payments with Stripe
Expand Down Expand Up @@ -57,7 +57,7 @@ resources:
Creates a Stripe customer object when a new user signs up.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
eventTrigger:
eventType: providers/firebase.auth/eventTypes/user.create
resource: projects/${PROJECT_ID}
Expand All @@ -68,7 +68,7 @@ resources:
Creates a Checkout session to collect the customer's payment details.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
eventTrigger:
eventType: providers/cloud.firestore/eventTypes/document.create
resource: projects/${PROJECT_ID}/databases/(default)/documents/${CUSTOMERS_COLLECTION}/{uid}/checkout_sessions/{id}
Expand All @@ -79,7 +79,7 @@ resources:
Creates links to the customer portal for the user to manage their payment & subscription details.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
httpsTrigger: {}

- name: handleWebhookEvents
Expand All @@ -88,7 +88,7 @@ resources:
Handles Stripe webhook events to keep subscription statuses in sync and update custom claims.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
httpsTrigger: {}

- name: onUserDeleted
Expand Down

0 comments on commit b42931b

Please sign in to comment.