Skip to content

Bump the flutter-deps group across 1 directory with 6 updates#12

Merged
MabelMoncy merged 1 commit into
mainfrom
dependabot/pub/transcriberapp/flutter-deps-942c430fcc
May 27, 2026
Merged

Bump the flutter-deps group across 1 directory with 6 updates#12
MabelMoncy merged 1 commit into
mainfrom
dependabot/pub/transcriberapp/flutter-deps-942c430fcc

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 25, 2026

Bumps the flutter-deps group with 6 updates in the /transcriberapp directory:

Package From To
chewie 1.13.1 1.14.1
share_plus 12.0.2 13.1.0
flutter_dotenv 6.0.0 6.0.1
flutter_secure_storage 10.0.0 10.3.0
google_fonts 8.0.2 8.1.0
record 6.2.0 6.2.1

Updates chewie from 1.13.1 to 1.14.1

Changelog

Sourced from chewie's changelog.

[1.14.1]

  • 🛠️ #945: Flutter 3.38 downgrade. Thanks diegotori.
  • Library now supports Flutter and Dart versions 3.38.0 and 3.10 or higher respectively, restoring previous compatibility.

[1.14.0]

  • 🛠️ #944: Flutter 3.41 Upgrade. Thanks diegotori.
  • BREAKING CHANGE: Library now requires at least Flutter version 3.41.0 or higher due to wakelock_plus's upgrade to version 1.6.0, which now requires this minimum Flutter version.
Commits
  • 1bc03f4 chewie, version 1.14.1. Addresses PR #945.
  • acb0552 Merge pull request #945 from diegotori/flutter_3.38_downgrade
  • 69a8fc7 Downgraded the minimum Flutter version to 3.38.
  • b981427 chewie, version 1.14.0. Addresses PR #944.
  • d3c7b20 Merge pull request #944 from diegotori/flutter_3.41_upgrade
  • 3e503fd Upgraded codebase to Flutter 3.41.
  • See full diff in compare view

Updates share_plus from 12.0.2 to 13.1.0

Commits

Updates flutter_dotenv from 6.0.0 to 6.0.1

Changelog

Sourced from flutter_dotenv's changelog.

6.0.1

  • [fix] isEveryDefined() now throws NotInitializedError before load(), consistent with all other read APIs
  • [fix] Replace assert() with explicit if/throw in getInt(), getDouble(), and getBool() so null-safety checks are enforced in release builds
  • Error messages now include the variable name for easier debugging
  • [fix] load(isOptional: true) no longer discards successfully loaded base file when an override file is missing or empty (fixes #70, #93, #101, #125)
  • [fix] clean() now resets isInitialized to false, so accessing env after clean() correctly throws NotInitializedError
  • [fix] Error classes (NotInitializedError, FileNotFoundError, EmptyEnvFileError) now include informative messages in toString() instead of the unhelpful Instance of 'ClassName' (fixes #72, #127; improves diagnostics for #59, #89)
  • FileNotFoundError and EmptyEnvFileError now carry the filename when available

Note on error message improvements

NotInitializedError, FileNotFoundError, and EmptyEnvFileError now override toString() with actionable messages (e.g., FileNotFoundError: Environment file ".env" not found. Ensure the file exists and is listed under assets in pubspec.yaml.). This is not a breaking change — the class names and hierarchy are unchanged, so existing on FileNotFoundError catch clauses continue to work. FileNotFoundError now accepts an optional positional filename parameter, and EmptyEnvFileError accepts an optional named filename parameter; both default to null for backward compatibility.

Note on release-build behavior change

In debug mode, behavior is unchanged — AssertionError was thrown before, AssertionError is thrown now.

In release mode, calling getInt(), getDouble(), or getBool() with a missing variable and no fallback previously threw a TypeError (from the null-check operator !) because assert() was stripped. It now correctly throws AssertionError with a descriptive message. If your release-mode code catches on TypeError around these methods, update it to catch on AssertionError (or on Error) instead.

Breaking change: clean() now resets initialization state

Previously, calling clean() only cleared the env map but left isInitialized == true. Now it also sets isInitialized = false. Code that calls clean() and then immediately accesses dotenv.env without reloading will now throw NotInitializedError. The fix is to call load() or loadFromString() again after clean().

Commits
  • 4f80495 chore(release): publish 6.0.1
  • eafce27 fix: isEveryDefined() now throws NotInitializedError before load()
  • 8cae9e7 chore: update readme
  • 83bcbd8 chore: update readme
  • 94f3922 chore: update readme
  • 30ecced chore: correct test name
  • 2d15c7d fix: add informative messages to error classes (#144)
  • 833fcba fix: preserve base env when optional override fails and reset init state on c...
  • 3c782c9 chore: update changelog
  • b536c85 fix: typed getters without fallback silently fail in release (#142)
  • Additional commits viewable in compare view

Updates flutter_secure_storage from 10.0.0 to 10.3.0

Release notes

Sourced from flutter_secure_storage's releases.

v10.3.0

Android

  • Added AndroidBiometricType enum and biometricType option to AndroidOptions to control which authentication methods are accepted during biometric prompts (requires KeyCipherAlgorithm.AES_GCM_NoPadding).
    • AndroidBiometricType.biometricOrDeviceCredential (default) accepts Class 3 biometrics or device credentials (PIN/pattern/password), preserving previous behaviour.
    • AndroidBiometricType.strongBiometricOnly restricts authentication to Class 3 (strong) biometrics only; device credentials are explicitly rejected.
  • Fully enforced on Android 11+ (API 30+) via setAllowedAuthenticators on BiometricPrompt and setUserAuthenticationParameters on the KeyStore key. On earlier API levels the system may still permit device credentials.
  • Added biometricPromptNegativeButton option to AndroidOptions to customise the dismiss button label on the biometric prompt. Required when using strongBiometricOnly or on Android 10 and lower.

iOS / macOS

  • Fixed secStoreAvailabilitySink not being called when protected data availability changes.
  • Fixed kSecUseDataProtectionKeychain being added to Keychain queries unconditionally; it is now only set when useDataProtectionKeychain is explicitly enabled.

Windows

  • Fixed deleteAll and containsKey not acquiring the mutex lock, which could cause data races under concurrent access. If you are on Dart >=3.10.0, this fix is applied automatically. Otherwise, pin flutter_secure_storage_windows: ^4.2.2 in your pubspec.yaml to opt in and make sure your constraint is set for minimum of Dart >=3.10.0.

Linux

  • Fixed deleteKeyring storing the string "null" instead of an empty JSON object {}.
  • Fixed non-UTF-8 error messages from libsecret causing a FormatException on the Dart side; messages are now sanitised before being sent through the method channel.
  • Fixed locked or unavailable keyring now surfacing as a catchable PlatformException with code KeyringLocked.
  • Fixed JSON parse errors and other C++ exceptions now surfacing as a PlatformException with code StorageError instead of sending malformed bytes through the channel.

v10.2.0

Android

  • Deprecated KeyCipherAlgorithm.RSA_ECB_PKCS1Padding. Existing data is automatically migrated to the default RSA_ECB_OAEPwithSHA_256andMGF1Padding when migrateOnAlgorithmChange is true.
  • Deprecated StorageCipherAlgorithm.AES_CBC_PKCS7Padding. Existing data is automatically migrated to the default AES_GCM_NoPadding when migrateOnAlgorithmChange is true.
  • Fixed Gradle space-assignment warnings in build.gradle.

iOS / macOS

  • Fixed iOS build by updating availability annotation for Secure Enclave methods from iOS 11.3 to iOS 13.0.

Windows

  • Fixed compatibility with win32 6.0.0 in flutter_secure_storage_windows 4.2.0. If you are on Dart >=3.10.0, this fix is applied automatically. Otherwise, pin flutter_secure_storage_windows: ^4.2.0 in your pubspec.yaml to opt in and make sure your constraint is set for minimum of Dart >=3.10.0.

v10.1.0

Android

  • Added storageNamespace option to AndroidOptions for full namespace isolation across storage instances (SharedPreferences, KeyStore aliases, config/key storage). Use this instead of sharedPreferencesName when running multiple FlutterSecureStorage instances with different cipher configurations.
  • Deprecated sharedPreferencesName in favor of storageNamespace, which provides complete isolation rather than data-only isolation.
  • Added migrateWithBackup option to AndroidOptions for crash-resistant migration. When enabled, backup copies of encrypted data are created before migration starts, allowing recovery if migration fails or the app crashes mid-migration. Works in conjunction with migrateOnAlgorithmChange.
  • Made KeyCipherAlgorithm and StorageCipherAlgorithm public enums.

Fixes:

  • Fixed crash on biometric failure (not error).
  • Fixed null safety issue in MethodRunner that could cause a crash on Android.
  • Fixed config being overwritten on initialization.
  • Fixed default Android key cipher not aligning with the Flutter default.

iOS / macOS

  • Added useSecureEnclave option to IOSOptions and MacOsOptions to store keys in the device's Secure Enclave for hardware-backed security.

... (truncated)

Commits
  • a86a1ef release of v10.3.0
  • 9d09d99 release of v0.3.2
  • 57f83b4 release of v3.0.1
  • 8a6e759 release of v4.2.2
  • 25ac868 Merge pull request #1146 from juliansteenbakker/doc/linux
  • 0061a48 fix: typo, add more details section,
  • ff3004b doc: re-add note about libsecret availability
  • d5ab2cb Merge pull request #1132 from juliansteenbakker/fix/linux-locked-keyring
  • 6959bfd Merge branch 'develop' into fix/linux-locked-keyring
  • 301194f Merge pull request #1143 from CORDEA/feature/android-biometric-type
  • Additional commits viewable in compare view

Updates google_fonts from 8.0.2 to 8.1.0

Commits
  • f347612 [google_font] Move the httpClient from a package level variable to the Config...
  • 8400f71 [Animations] Add support for custom shadows to OpenContainer (#62475) (#11401)
  • 6351fa4 Revert "[webview_flutter_wkwebview] Tear down ProxyAPIRegistrar in `applicati...
  • 4a2091d [go_router] Fix assertion failure on URLs with hash fragments missing leading...
  • 9391572 [webview_flutter_wkwebview] Tear down ProxyAPIRegistrar in `applicationWillTe...
  • 3888c6f Sync release-go_router to main (#11545)
  • 8b09614 [dependabot]: Bump cameraxVersion from 1.5.3 to 1.6.0 in /packages/camera/cam...
  • 810faf6 [go_router_builder] Support custom types (#11068)
  • ac617c1 [google_maps_fluter] Switch to Kotlin Pigeon (#11522)
  • 934ba21 [google_maps_flutter] Fix various Java warnings (#11516)
  • Additional commits viewable in compare view

Updates record from 6.2.0 to 6.2.1

Commits
  • 0cbcc3b chore: Update change logs.
  • 7ceb324 fix: race condition at initialization phase with onStateChanged().
  • 0125a4b feat(iOS): Add allowHapticsAndSystemSoundsDuringRecording option.
  • 9d3fc30 feat(iOS): Add allowHapticsAndSystemSoundsDuringRecording option.
  • 0c7f4cd chore: Update change logs & specs.
  • e21203b fix: Stop requesting for amplitude updates when recording is paused or stoppe...
  • 3b5b2e9 chore: Code cleanup.
  • fb08cd6 chore(Android): Code improvements and cleanups.
  • 2c3e1f0 chore(macOs): Code cleanup.
  • 4329b35 chore(iOs): Code cleanup.
  • Additional commits viewable in compare view

Updates share_plus from 12.0.2 to 13.1.0

Commits

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

Bumps the flutter-deps group with 6 updates in the /transcriberapp directory:

| Package | From | To |
| --- | --- | --- |
| [chewie](https://github.com/fluttercommunity/chewie) | `1.13.1` | `1.14.1` |
| [share_plus](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/share_plus) | `12.0.2` | `13.1.0` |
| [flutter_dotenv](https://github.com/java-james/flutter_dotenv) | `6.0.0` | `6.0.1` |
| [flutter_secure_storage](https://github.com/mogol/flutter_secure_storage) | `10.0.0` | `10.3.0` |
| [google_fonts](https://github.com/flutter/packages/tree/main/packages) | `8.0.2` | `8.1.0` |
| [record](https://github.com/llfbandit/record) | `6.2.0` | `6.2.1` |



Updates `chewie` from 1.13.1 to 1.14.1
- [Changelog](https://github.com/fluttercommunity/chewie/blob/master/CHANGELOG.md)
- [Commits](fluttercommunity/chewie@v1.13.1...v1.14.1)

Updates `share_plus` from 12.0.2 to 13.1.0
- [Release notes](https://github.com/fluttercommunity/plus_plugins/releases)
- [Commits](https://github.com/fluttercommunity/plus_plugins/commits/share_plus-v13.1.0/packages/share_plus)

Updates `flutter_dotenv` from 6.0.0 to 6.0.1
- [Changelog](https://github.com/java-james/flutter_dotenv/blob/master/CHANGELOG.md)
- [Commits](java-james/flutter_dotenv@6.0.0...6.0.1)

Updates `flutter_secure_storage` from 10.0.0 to 10.3.0
- [Release notes](https://github.com/mogol/flutter_secure_storage/releases)
- [Commits](juliansteenbakker/flutter_secure_storage@v10.0.0...v10.3.0)

Updates `google_fonts` from 8.0.2 to 8.1.0
- [Commits](https://github.com/flutter/packages/commits/google_fonts-v8.1.0/packages)

Updates `record` from 6.2.0 to 6.2.1
- [Commits](llfbandit/record@6.2.0...6.2.1)

Updates `share_plus` from 12.0.2 to 13.1.0
- [Release notes](https://github.com/fluttercommunity/plus_plugins/releases)
- [Commits](https://github.com/fluttercommunity/plus_plugins/commits/share_plus-v13.1.0/packages/share_plus)

---
updated-dependencies:
- dependency-name: chewie
  dependency-version: 1.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-deps
- dependency-name: share_plus
  dependency-version: 13.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: flutter-deps
- dependency-name: flutter_dotenv
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: flutter-deps
- dependency-name: flutter_secure_storage
  dependency-version: 10.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-deps
- dependency-name: google_fonts
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-deps
- dependency-name: record
  dependency-version: 6.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: flutter-deps
- dependency-name: share_plus
  dependency-version: 13.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: flutter-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dart Pull requests that update dart code dependencies Pull requests that update a dependency file labels May 25, 2026
@MabelMoncy MabelMoncy merged commit 1c2bbb9 into main May 27, 2026
1 check failed
@dependabot dependabot Bot deleted the dependabot/pub/transcriberapp/flutter-deps-942c430fcc branch May 27, 2026 17:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dart Pull requests that update dart code dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant