-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not consume IAPs when backend returns 4xx errors #1699
Do not consume IAPs when backend returns 4xx errors #1699
Conversation
Generated by 🚫 Danger |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1699 +/- ##
==========================================
+ Coverage 83.07% 83.12% +0.05%
==========================================
Files 222 222
Lines 7581 7574 -7
Branches 1073 1070 -3
==========================================
- Hits 6298 6296 -2
+ Misses 857 854 -3
+ Partials 426 424 -2 ☔ View full report in Codecov by Sentry. |
ff8be45
to
24be329
Compare
**This is an automatic release.** ### New Features * Support non consumable products (#1697) via Toni Rico (@tonidero) ### Bugfixes * Fix non-consumables not getting acknowledged (#1709) via Cesar de la Vega (@vegaro) * Fix bad copy in log message (#1702) via Andy Boedo (@aboedo) ### Dependency Updates * Bump amazon SDK version to 3.0.5 (#1713) via Mark Villacampa (@MarkVillacampa) * Bump rexml from 3.2.6 to 3.2.8 (#1701) via dependabot[bot] (@dependabot[bot]) * Bump fastlane-plugin-revenuecat_internal from `dd5e21f` to `8ec0072` (#1696) via dependabot[bot] (@dependabot[bot]) ### Other Changes * Fix offline integration tests (#1704) via Toni Rico (@tonidero) * Do not consume IAPs when backend returns 4xx errors (#1699) via Toni Rico (@tonidero) * Update fastlane plugin and fix docs index path (#1695) via Toni Rico (@tonidero) * Add trigger_bump lane (#1692) via Cesar de la Vega (@vegaro) Co-authored-by: revenuecat-ops <ops@revenuecat.com>
Description
As part of the efforts to support non-consumables in android, we talked about not consuming IAPs when the backend returns a 4xx error. This should be an uncommon case but we don't want to miss the data in that case.
This depends on the changes to support non-consumables in #1697