Skip to content

Commit a5b8f0b

Browse files
committed
Merge branch 'master' into next
2 parents f6d573d + b38f98e commit a5b8f0b

File tree

7 files changed

+18
-4
lines changed

7 files changed

+18
-4
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ coverage
1616

1717
# extension install md files
1818
# - excluded as prettier escapes variables e.g. `${PROJECT_ID}` becomes `\${PROJECT_ID}`
19+
CHANGELOG.md
1920
POSTINSTALL.md
2021
PREINSTALL.md

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.0 - 2022-04-26
2+
3+
[feat] - Add `invoice.paid`, `invoice.updated` to permitted webhook events list. #356
4+
15
## Version 0.1.6 - 2021-02-11
26

37
[feat] - Add `stripeInvoiceUrl` to the invoice object in Cloud Firestore. #132

firestore-stripe-invoices/extension.yaml

Lines changed: 1 addition & 1 deletion
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.1.6
16+
version: 0.2.0
1717
specVersion: v1beta
1818

1919
displayName: Send Invoices using Stripe

firestore-stripe-invoices/functions/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const stripe = new Stripe(config.stripeSecretKey, {
2828
// https://stripe.com/docs/building-plugins#setappinfo
2929
appInfo: {
3030
name: 'Firebase firestore-stripe-invoices',
31-
version: '0.1.6',
31+
version: '0.2.0',
3232
},
3333
});
3434

firestore-stripe-payments/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Version 0.2.5 - 2022-04-20
2+
[feat] Add parameter to enable phone number collection.
3+
4+
[feat] Add parameters to enable expired Checkout Session recovery.
5+
6+
[feat] Add `setup_future_usage` parameter for one-time payment flows.
7+
8+
[feat] Use dynamic parameter reference in README.
9+
110
## Version 0.2.4 - 2021-12-22
211

312
[feat] Add support to bring phone numbers saved on Firebase users into Stripe when creating a checkout session for a subscription. (#251)

firestore-stripe-payments/extension.yaml

Lines changed: 1 addition & 1 deletion
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.2.4
16+
version: 0.2.5
1717
specVersion: v1beta
1818

1919
displayName: Run Payments with Stripe

firestore-stripe-payments/functions/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const stripe = new Stripe(config.stripeSecretKey, {
3535
// https://stripe.com/docs/building-plugins#setappinfo
3636
appInfo: {
3737
name: 'Firebase firestore-stripe-payments',
38-
version: '0.2.4',
38+
version: '0.2.5',
3939
},
4040
});
4141

0 commit comments

Comments
 (0)