Skip to content
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

Bump fastlane from 2.221.1 to 2.222.0 #480

Merged
merged 1 commit into from
Jul 29, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 29, 2024

Bumps fastlane from 2.221.1 to 2.222.0.

Release notes

Sourced from fastlane's releases.

2.222.0 Improvements

  • [action][sh] fastlane sh with log set to false should respect a step name (#22151) via Daniel Jankowski (@​mollyIV)
  • [scan][trainer] hotfix for float-type version acquisition of xcresulttool version fails (#22157) via David Dongkyu Kim (@​dokimyj)
  • [gym] fix default result bundle path name (#22154) via Ignacio Calderon (@​kronenthaler)
  • [scan][trainer] hotfix for xcresulttool spec changes >= XC16b3 (#22147) via David Dongkyu Kim (@​dokimyj)
  • [action][ensure_git_status_clean] support empty spaces in ignore_files file paths (#21566) via Daniel Jankowski (@​mollyIV)
  • [spaceship] add visionOS support for Connect API (#22032) via Frederik Seiffert (@​triplef)
  • [spaceship] Add get app availabilities v2 request (#21901) via Lukasz Grabowski (@​lucgrabowski)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [fastlane](https://github.com/fastlane/fastlane) from 2.221.1 to 2.222.0.
- [Release notes](https://github.com/fastlane/fastlane/releases)
- [Changelog](https://github.com/fastlane/fastlane/blob/master/CHANGELOG.latest.md)
- [Commits](fastlane/fastlane@fastlane/2.221.1...fastlane/2.222.0)

---
updated-dependencies:
- dependency-name: fastlane
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the pr:dependencies Pull requests that update a dependency file label Jul 29, 2024
@vegaro vegaro merged commit fba07a0 into main Jul 29, 2024
7 checks passed
@vegaro vegaro deleted the dependabot/bundler/fastlane-2.222.0 branch July 29, 2024 09:34
This was referenced Aug 5, 2024
tonidero added a commit that referenced this pull request Aug 7, 2024
This latest release updates the Android SDK dependency from v7 to
[v8](https://github.com/RevenueCat/purchases-android/releases/tag/6.0.0)
to use BillingClient 7 and updates the iOS SDK dependency from v4 to v5
to use StoreKit 2 by default in the SDK.

### Migration Guides

- See [Android Native - V8 API Migration
Guide](https://github.com/RevenueCat/purchases-android/blob/main/migrations/v8-MIGRATION.md)
for a more thorough explanation of the Android changes.
- See [iOS Native - V5 Migration
Guide](https://github.com/RevenueCat/purchases-ios/blob/main/Sources/DocCDocumentation/DocCDocumentation.docc/V5_API_Migration_guide.md)
for a more thorough explanation of the iOS changes. Notably, this
version uses StoreKit 2 to process purchases by default.

### New Minimum OS Versions

This release raises the minumum required OS versions to the following:

- iOS 13.0
- tvOS 13.0
- watchOS 6.2
- macOS 10.15
- Android: SDK 21 (Android 5.0)

### In-App Purchase Key Required for StoreKit 2

In order to use StoreKit 2, you must configure your In-App Purchase Key
in the RevenueCat dashboard. You can find instructions describing how to
do this
[here](https://www.revenuecat.com/docs/in-app-purchase-key-configuration).

### `usesStoreKit2IfAvailable` is now `storeKitVersion`

When configuring the SDK, the `usesStoreKit2IfAvailable` parameter has
been replaced by an optional `storeKitVersion` parameter. It defaults to
letting the iOS SDK determine the most appropriate version of StoreKit
at runtime. If you'd like to use a specific version of StoreKit, you may
provide a value for `storeKitVersion` like so:

```
Purchases purchases = GetComponent<Purchases>();
Purchases.PurchasesConfiguration purchasesConfiguration =
    Purchases.PurchasesConfiguration.Builder.Init("api_key")
    .SetStoreKitVersion(Purchases.StoreKitVersion.StoreKit2)
    .Build();
purchases.Configure(purchasesConfiguration);
```

### Observer Mode is now PurchasesAreCompletedBy

Version 7.0 of the SDK deprecates the term "Observer Mode" (and the APIs
where this term was used), and replaces it with
`PurchasesAreCompletedBy` (either RevenueCat or your app). When
specifying that your app will complete purchases, you must provide the
StoreKit version that your app is using to make purchases on iOS. If
your app is only available on Android, you may provide any value since
the native Android SDK ignores this value.

You can enable it when configuring the SDK:

```
Purchases purchases = GetComponent<Purchases>();
Purchases.PurchasesConfiguration purchasesConfiguration =
    Purchases.PurchasesConfiguration.Builder.Init("api_key")
    .SetPurchasesAreCompletedBy(Purchases.PurchasesAreCompletedBy.MyApp, Purchases.StoreKitVersion.StoreKit2)
    .Build();
purchases.Configure(purchasesConfiguration);
```

#### ⚠️ Observing Purchases Completed by Your App on macOS

By default, when purchases are completed by your app using StoreKit 2 on
macOS, the SDK does not detect a user's purchase until after the user
foregrounds the app after the purchase has been made. If you'd like
RevenueCat to immediately detect the user's purchase, call
`Purchases.recordPurchase(productID)` for any new purchases, like so:

```
Purchases purchases = GetComponent<Purchases>();
purchases.recordPurchase(productID, (transaction, error) => { ... });
```

#### Observing Purchases Completed by Your App with StoreKit 1

If purchases are completed by your app using StoreKit 1, you will need
to explicitly configure the SDK to use StoreKit 1:

```typescript
Purchases purchases = GetComponent<Purchases>();
Purchases.PurchasesConfiguration purchasesConfiguration =
    Purchases.PurchasesConfiguration.Builder.Init("api_key")
    .SetPurchasesAreCompletedBy(Purchases.PurchasesAreCompletedBy.MyApp, Purchases.StoreKitVersion.StoreKit1)
    .Build();
purchases.Configure(purchasesConfiguration);
```

Full migration guide to V7: [Unity - V7 API Migration
Guide](migrations/v7-MIGRATION.md)

### New Features
* `Amazon`: Add getAmazonLWAConsentStatus method to support Quick
Subscribe (#442) via Mark Villacampa (@MarkVillacampa)
### Dependency Updates
* Bump rexml from 3.2.9 to 3.3.3 (#486) via dependabot[bot]
(@dependabot[bot])
* Bump danger from 9.4.3 to 9.5.0 (#487) via dependabot[bot]
(@dependabot[bot])
* Bump fastlane from 2.221.1 to 2.222.0 (#480) via dependabot[bot]
(@dependabot[bot])
* Update `VERSIONS.md` to include Billing client version and update
fastlane plugin (#476) via Toni Rico (@tonidero)
### Other Changes
* Fix `Gemfile.lock` with new fastlane plugin dependencies (#479) via
Toni Rico (@tonidero)
* Update Unity IAP compatiiblity (#475) via Andy Boedo (@aboedo)
kaushikpaperboat added a commit to Kiddopia/purchases-unity that referenced this pull request Aug 23, 2024
* commit '2ad738987fe4ff8fc27f05cef2bf15395cab67ce':
  Update VERSIONS.md
  Version bump for 7.1.0
  Add SyncPurchases method overload that accepts a callback as parameter (RevenueCat#493)
  [AUTOMATIC BUMP] Updates purchases-hybrid-common to 13.0.1 (RevenueCat#491)
  Release/7.0.0 (RevenueCat#490)
  `Amazon`: Add getAmazonLWAConsentStatus method to support Quick Subscribe (RevenueCat#442)
  Update Deferred proration mode value to match BC7 (RevenueCat#489)
  Add support new native majors (RevenueCat#485)
  Bump rexml from 3.2.9 to 3.3.3 (RevenueCat#486)
  Bump danger from 9.4.3 to 9.5.0 (RevenueCat#487)
  Bump fastlane from 2.221.1 to 2.222.0 (RevenueCat#480)
  Fix `Gemfile.lock` with new fastlane plugin dependencies (RevenueCat#479)
  Update `VERSIONS.md` to include Billing client version and update fastlane plugin (RevenueCat#476)
  Update Unity IAP compatiiblity (RevenueCat#475)
  [AUTOMATIC] Release/6.10.0 (RevenueCat#474)
  Add support for `DEFERRED` upgrades and updates purchases-hybrid-common to 11.1.0 (RevenueCat#472)
  [AUTOMATIC BUMP] Updates purchases-hybrid-common to 11.0.0 (RevenueCat#470)
  Bump fastlane from 2.221.0 to 2.221.1 (RevenueCat#468)
  Bump fastlane from 2.220.0 to 2.221.0 (RevenueCat#466)
  [AUTOMATIC] Release/6.9.7 (RevenueCat#465)

# Conflicts:
#	.version
#	CHANGELOG.latest.md
#	CHANGELOG.md
#	RevenueCat/Plugins/Android/PurchasesWrapper.java
#	RevenueCat/Plugins/iOS/PurchasesUnityHelper.m
#	RevenueCat/package.json
#	VERSIONS.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pr:dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant