Skip to content

Bump cocoapods from 1.13.0 to 1.14.0#839

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/cocoapods-1.14.0
Closed

Bump cocoapods from 1.13.0 to 1.14.0#839
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/cocoapods-1.14.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Oct 26, 2023

Copy link
Copy Markdown
Contributor

Bumps cocoapods from 1.13.0 to 1.14.0.

Release notes

Sourced from cocoapods's releases.

1.14.0

Enhancements
  • None.
Bug Fixes
Other
  • Drop support for bazaar SCM.
Changelog

Sourced from cocoapods's changelog.

1.14.0 (2023-10-26)

Enhancements
  • None.
Bug Fixes
Other
  • Drop support for bazaar SCM
Commits
  • df6a13c Release 1.14.0
  • 794f75b Fix integration specs by improving output replacement logic for cocoapods-dow...
  • bad449a Bump cocoapods-downloader to 2.0, bump Gemfile deps
  • 603eb91 Remove check for bazaar
  • fdf8634 Fixup CHANGELOG
  • 00b92c8 Merge pull request #12091 from careem/further-activesupport-7.1.0-fixes
  • 6f82923 Changelog
  • ee5acbe Require active_support/core_ext in cocoapods.rb to fix #12089
  • 2164788 Merge pull request #12082 from MCanhisares/fix/active_support_require
  • ba350b3 Add CHANGELOG entry
  • Additional commits viewable in compare view

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 [cocoapods](https://github.com/CocoaPods/CocoaPods) from 1.13.0 to 1.14.0.
- [Release notes](https://github.com/CocoaPods/CocoaPods/releases)
- [Changelog](https://github.com/CocoaPods/CocoaPods/blob/master/CHANGELOG.md)
- [Commits](CocoaPods/CocoaPods@1.13.0...1.14.0)

---
updated-dependencies:
- dependency-name: cocoapods
  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 Oct 26, 2023
@NachoSoto

Copy link
Copy Markdown
Contributor

@joshdholtz can we revert 889c648 now?

@dependabot @github

dependabot Bot commented on behalf of github Oct 27, 2023

Copy link
Copy Markdown
Contributor Author

Superseded by #843.

@dependabot dependabot Bot closed this Oct 27, 2023
@dependabot dependabot Bot deleted the dependabot/bundler/cocoapods-1.14.0 branch October 27, 2023 16:55
facumenzella added a commit that referenced this pull request Mar 3, 2026
…resentation control

Replace hardcoded full-screen presentation with an explicit opt-in API,
matching the approach in purchases-unity PR #839. Developers can now
choose full-screen or sheet presentation per platform instead of having
it forced.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
facumenzella added a commit that referenced this pull request Mar 20, 2026
…tation style (#1623)

## Summary

Fixes landscape white-area issue (PW-148) by adding an explicit opt-in
API for controlling paywall presentation style, matching the approach in
[purchases-unity PR
#839](RevenueCat/purchases-unity#839).

- Adds \`PaywallPresentationConfiguration\` with per-platform style
types (\`IOSPaywallPresentationStyle\`,
\`AndroidPaywallPresentationStyle\`)
- Adds optional \`presentationConfiguration\` parameter to
\`presentPaywall()\` and \`presentPaywallIfNeeded()\`
- iOS plugin passes \`useFullScreenPresentation\` only when explicitly
set — default behavior unchanged (sheet on iOS)
- No device filtering — if the dev passes \`fullScreen\`, it applies on
any device (iPhone or iPad)
- Purchase tester shows a \`CupertinoActionSheet\` to choose Sheet or
Full Screen before presenting

### Usage

```dart
// Full screen on iOS (fixes landscape white-area bug PW-148)
final result = await RevenueCatUI.presentPaywall(
  presentationConfiguration: PaywallPresentationConfiguration(
    ios: IOSPaywallPresentationStyle.fullScreen,
  ),
);

// Default behavior (sheet on iOS)
final result = await RevenueCatUI.presentPaywall();
```

### Related

- Unity: RevenueCat/purchases-unity#839
- Linear: PW-148, PW-956

## Test plan

- [x] All unit tests pass
- [x] API tester (\`flutter analyze\`) clean — no breaking changes
- [x] Tests cover \`fullScreen\` and \`sheet\` configurations
- [x] Tests verify \`useFullScreenPresentation\` is not sent when no
config is passed
- [x] Purchase tester builds on iOS
- [x] Manual test: present paywall without config → sheet on iOS
- [x] Manual test: present paywall with \`ios: fullScreen\` → full
screen on iOS

<!-- CURSOR_SUMMARY -->
---

> [!NOTE]
> **Medium Risk**
> Adds a new public API knob that changes iOS paywall presentation
behavior and updates the iOS plugin call path; incorrect wiring could
affect paywall UX on iOS. Changes are scoped and covered by new unit/API
tests, reducing regression risk.
> 
> **Overview**
> Adds an opt-in `PaywallPresentationConfiguration` API (with
`IOSPaywallPresentationStyle`/`AndroidPaywallPresentationStyle`) and
exports it from `purchases_ui_flutter`.
> 
> `RevenueCatUI.presentPaywall()` and `presentPaywallIfNeeded()` now
accept an optional `presentationConfiguration` and only send the native
`useFullScreenPresentation` flag when iOS full-screen is explicitly
requested (omitting the key preserves the native default sheet
behavior).
> 
> Updates the iOS plugin to accept/pass through
`useFullScreenPresentation` instead of always forcing full-screen on
iPhone, expands unit tests/API tester coverage for the new argument
behavior, and updates the purchase tester example UI to let users choose
sheet vs full-screen before presenting a paywall.
> 
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit
35fb97d. This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot).</sup>
<!-- /CURSOR_SUMMARY -->

---------

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: Cesar de la Vega <664544+vegaro@users.noreply.github.com>
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