Skip to content

chore(deps,flutter)(deps): bump the minor-and-patch group across 1 directory with 2 updates#46

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/apps/mobile/minor-and-patch-f4d2445fef
Open

chore(deps,flutter)(deps): bump the minor-and-patch group across 1 directory with 2 updates#46
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/apps/mobile/minor-and-patch-f4d2445fef

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown

Bumps the minor-and-patch group with 2 updates in the /apps/mobile directory: intl and receive_sharing_intent.

Updates intl from 0.19.0 to 0.20.3

Release notes

Sourced from intl's releases.

package:intl v0.20.3

  • Updated the Turkish Lira (TRY) currency symbol in simpleCurrencySymbols from "TL" to "₺" (U+20BA). This ensures accuracy and alignment with the official symbol introduced in 2012.
  • Fix parsing of locale strings containing script codes in verifiedLocale. For example, zh-Hans-CN would have been previously parsed as zh, but is now parsed as zh_CN.
  • Update the Ghanaian Cedis (GHS) currency symbol in simpleCurrencySymbols from "GHS" to "GH₵(U+20B5)".
  • Update to CLDR v48.
  • Add @pragma('wasm:prefer-inline') to Intl methods that already have @pragma('vm:prefer-inline'), for the same reason: to help omit message descriptions from compiled output.
  • Update analysis to newest package:lints.

package:intl v0.20.2

  • Remove the dependency on package:http.
  • Remove the dependency on package:web.

package:intl v0.20.1

  • Upgrade package:web dependency constraint to 1.1.0, fixes issue #916.
  • Update to CLDR v46.

package:intl v0.20.0

  • Fix caching of messages in CompositeMessageLookup.
  • Type numberFormatSymbols as a Map<String, NumberSymbols>.
  • Type dateTimeSymbolMap as a Map<String, DateSymbols>.
  • Add example for pub.dev.
  • Fix issues with AM/PM markers.
  • Update to CLDR v44.1.
  • Require Dart ^3.3
  • Require package:web ^0.5.0.
  • Support compiling to WASM.
  • Update to and account for package:lints ^4.0.0.
  • rtl Detection fix in bidi.dart for Kordi Sorani "ckb".
  • Update to CLDR v45.

package:intl_translation v0.20.1

  • Add topics to pubspec.yaml
  • Update to dart_style 2.3.7. bin/make_examples_const.dartand rewrite_intl_messages.dartwill now look for a surrounding .dart_tool/package_config.json` file to infer the language version of the files updated by the script.
  • Upgrade dep on package:intl.

package:intl_translation v0.20.0

  • Throw if the Intl.select arg is not in the list of args.
  • Support package:intl 0.19.0.
  • Require Dart 3.0.
Commits

Updates receive_sharing_intent from 1.8.1 to 1.9.0

Release notes

Sourced from receive_sharing_intent's releases.

receive_sharing_intent-v1.9.0

Breaking changes

  • Requires Flutter 3.38 or newer.
  • iOS: Apps must now adopt a SceneDelegate for the new UIScene lifecycle — see the README and the official guide.
  • iOS: Now uses Swift Package Manager only (the CocoaPods podspec was removed). Enable it with flutter config --enable-swift-package-manager and link the receive-sharing-intent product in your Share Extension.
  • iOS: The Share Extension compose UI was rebuilt (see below). presentationAnimationDidFinish(), navigationTitle and characterLimit were removed — use the new override hooks instead.
  • iOS: Minimum deployment target raised to iOS 13.0.

iOS — new Share Extension compose UI

  • RSIShareViewController no longer subclasses the deprecated SLComposeServiceViewController; it's now a plain UIViewController following Apple's modern model.
  • shouldAutoRedirect() == true (default): no UI is shown — the old flash of the dimmed white system sheet is gone and the extension redirects straight into the host app.
  • shouldAutoRedirect() == false: a built-in compose sheet (RSIComposeView) is shown — a bottom card with a grabber, circular close button, "Send" button, an auto-focused message field and a thumbnail preview of the first shared item. Tapping the dimmed backdrop cancels.
  • Customise it by overriding placeholder, sendButtonTitle, contentText, isContentValid(), didSelectPost(), didSelectCancel(), cancel() or saveAndRedirect(message:).

iOS — other

  • Adopted Apple's UIScene lifecycle: the plugin conforms to FlutterSceneLifeCycleDelegate, registers via addSceneDelegate, and handles shared URLs through the scene delegate.
  • Consolidated into a single ReceiveSharingIntentPlugin Swift class (the Objective-C bridge is gone). SwiftReceiveSharingIntentPlugin remains as a backward-compatible type alias.

Android

  • Migrated to Flutter's Built-in Kotlin: the plugin no longer applies the Kotlin Gradle Plugin (KGP) itself — Flutter's Gradle plugin applies kotlin-android automatically. This silences the upcoming KGP deprecation warning and keeps the plugin building on future Flutter versions.
  • Upgraded Android Gradle Plugin to 9.2.1, Gradle to 9.4.1 and Kotlin to 2.4.0.
  • Bumped compileSdk to 37, raised minSdk to 21 and migrated to the modern Kotlin compilerOptions DSL (JVM target 17).

Full Changelog: KasemJaffer/receive_sharing_intent@1.8.1...1.9.0

What's Changed

New Contributors

Full Changelog: KasemJaffer/receive_sharing_intent@1.8.1...1.9.0

Changelog

Sourced from receive_sharing_intent's changelog.

1.9.0

Breaking changes

  • Requires Flutter 3.38 or newer.
  • iOS: Apps must now adopt a SceneDelegate for the new UIScene lifecycle — see the README and the official guide.
  • iOS: Now uses Swift Package Manager only (the CocoaPods podspec was removed). Enable it with flutter config --enable-swift-package-manager and link the receive-sharing-intent product in your Share Extension.
  • iOS: The Share Extension compose UI was rebuilt (see below). presentationAnimationDidFinish(), navigationTitle and characterLimit were removed — use the new override hooks instead.
  • iOS: Minimum deployment target raised to iOS 13.0.

iOS — new Share Extension compose UI

  • RSIShareViewController no longer subclasses the deprecated SLComposeServiceViewController; it's now a plain UIViewController following Apple's modern model.
  • shouldAutoRedirect() == true (default): no UI is shown — the old flash of the dimmed white system sheet is gone and the extension redirects straight into the host app.
  • shouldAutoRedirect() == false: a built-in compose sheet (RSIComposeView) is shown — a bottom card with a grabber, circular close button, "Send" button, an auto-focused message field and a thumbnail preview of the first shared item. Tapping the dimmed backdrop cancels.
  • Customise it by overriding placeholder, sendButtonTitle, contentText, isContentValid(), didSelectPost(), didSelectCancel(), cancel() or saveAndRedirect(message:).

iOS — other

  • Adopted Apple's UIScene lifecycle: the plugin conforms to FlutterSceneLifeCycleDelegate, registers via addSceneDelegate, and handles shared URLs through the scene delegate.
  • Consolidated into a single ReceiveSharingIntentPlugin Swift class (the Objective-C bridge is gone). SwiftReceiveSharingIntentPlugin remains as a backward-compatible type alias.

Android

  • Migrated to Flutter's Built-in Kotlin: the plugin no longer applies the Kotlin Gradle Plugin (KGP) itself — Flutter's Gradle plugin applies kotlin-android automatically. This silences the upcoming KGP deprecation warning and keeps the plugin building on future Flutter versions.
  • Upgraded Android Gradle Plugin to 9.2.1, Gradle to 9.4.1 and Kotlin to 2.4.0.
  • Bumped compileSdk to 37, raised minSdk to 21 and migrated to the modern Kotlin compilerOptions DSL (JVM target 17).
Commits
  • 3b5789d Update readme and changelog
  • f3ab031 Remove apply plugin: "kotlin-android"
  • fe38236 Remove alias activity from example app.
  • 27940c6 Replace the deprecated SLComposeServiceViewController with custom UIViewContr...
  • f3a78cf Migrate to SPM and add UIScene support
  • 7a2705e Upgraded Android Gradle Plugin to 9.2.1
  • 2cea396 Fix Inconsistent JVM-target compatibility (#333)
  • c82cc15 Update README.md
  • See full diff in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…rectory with 2 updates

Bumps the minor-and-patch group with 2 updates in the /apps/mobile directory: [intl](https://github.com/dart-lang/i18n/tree/main/pkgs) and [receive_sharing_intent](https://github.com/KasemJaffer/receive_sharing_intent).


Updates `intl` from 0.19.0 to 0.20.3
- [Release notes](https://github.com/dart-lang/i18n/releases)
- [Commits](https://github.com/dart-lang/i18n/commits/intl-v0.20.3/pkgs)

Updates `receive_sharing_intent` from 1.8.1 to 1.9.0
- [Release notes](https://github.com/KasemJaffer/receive_sharing_intent/releases)
- [Changelog](https://github.com/KasemJaffer/receive_sharing_intent/blob/master/CHANGELOG.md)
- [Commits](KasemJaffer/receive_sharing_intent@1.8.1...1.9.0)

---
updated-dependencies:
- dependency-name: intl
  dependency-version: 0.20.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: receive_sharing_intent
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies, flutter, mobile. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants