Skip to content

chore(deps)(deps): bump the patch-updates group across 1 directory with 15 updates - #284

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/patch-updates-dc2e6cb659
Open

chore(deps)(deps): bump the patch-updates group across 1 directory with 15 updates#284
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/patch-updates-dc2e6cb659

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 9, 2026

Copy link
Copy Markdown
Contributor

Bumps the patch-updates group with 13 updates in the / directory:

Package From To
dio 5.11.0 5.11.1
html 0.15.6 0.15.7
path_provider_platform_interface 2.1.2 2.1.3
riverpod 3.3.2 3.4.3
riverpod_annotation 4.0.3 4.0.7
riverpod_lint 3.1.4 3.1.9
hooks_riverpod 3.3.2 3.4.3
flutter_riverpod 3.3.2 3.4.3
riverpod_generator 4.0.4 4.0.9
mockito 5.6.4 5.8.1
freezed 3.2.6-dev.1 4.0.1
drift_dev 2.34.0 2.35.0
sqlite3 3.5.0 3.5.2

Updates dio from 5.11.0 to 5.11.1

Release notes

Sourced from dio's releases.

dio 5.11.1

What's new

  • Fix response stream not propagating backpressure to the underlying socket. When a consumer paused the stream, the source subscription was never paused, so the network kept buffering response data into memory, risking OOM on constrained platforms.
  • Make the badCertificateCallback pinning test deterministic by pinning a fingerprint that cannot match the served certificate, instead of relying on badssl.com hosts serving different certificates.
  • Fix NoSuchMethodError when using a class that implements Interceptor instead of extends Interceptor. The interceptor pipeline was calling private dispatch methods that only exist on Interceptor subclasses, breaking any class using interface implementation.
Commits
  • 4684e29 🔖 dio v5.11.1
  • 96b10c7 🔖 web_adapter v2.2.2
  • 6d18c7c 🔖 http2_adapter v2.9.0
  • debe58c ✨ Deprecate misspelled handshakeTimout in favor of handshakeTimeout (#2595)
  • 6c1033e 🐛 Expose supportedProtocols on ConnectionManager to fix fallback for RFC-stri...
  • 6d39187 💚 Fail web test runs on the first failing compiler round (#2594)
  • a3238c3 fix(dio): support classes that implement Interceptor (#2591)
  • fd1cca0 fix(web): classify XHR timeout by connection phase (#2593)
  • 83fd107 💚 Adopt CI to Flutter 3.47 (#2592)
  • a553f46 Update README for clarity and remove star history (#2589)
  • Additional commits viewable in compare view

Updates html from 0.15.6 to 0.15.7

Release notes

Sourced from html's releases.

package:html v0.15.7

  • writeTextNodeAsHtml: Escape text inside <script> and <style>-like tags in foreign namespaces.
  • Fix the tokenizer failing to close CDATA blocks when encountering extra brackets
  • Require Dart 3.6
  • Limit "Noah's Ark" clause to avoid degenerate O(N^2) when parsing deeply nested formatting elements with unique attributes.
  • Added new textContent method to Node class that returns the text content of the node.
  • Fix XSS vulnerability in htmlToCodeMarkup() by escaping DOCTYPE, element, and attribute names.
Commits
  • c7f7a63 Prepare to publish packages (#2562)
  • 3b3b22c [extension_discovery] Fixup review comments (#2557)
  • 441ff29 [unified_analytics]Add an 'is_external' const to indicate external builds (#2...
  • 5f02a37 Fix trailing comma when adding to flow collections in yaml_edit (#2533)
  • 7a3be9a [unified_analytics] Prepare for 8.0.18 release (#2559)
  • 59c163c [unified_analytics] Add hostArch parameter to Event.flutterCommandResult (#2558)
  • 8108a7c [extension_discovery] Prevent config.yaml symlinks from escaping package boun...
  • 3de16a5 fix(coverage): reject file: URIs outside known roots in Resolver (#2534)
  • 1723b1e [html]: add minimal differential testing framework (#2554)
  • 7dc3279 fix: reconcile version mismatches in process and stack_trace (#2546)
  • Additional commits viewable in compare view

Updates meta from 1.18.0 to 1.19.0

Changelog

Sourced from meta's changelog.

1.19.0 - 2016-08-26

Language changes

  • The language now allows a trailing comma after the last argument of a call and the last parameter of a function declaration. This can make long argument or parameter lists easier to maintain, as commas can be left as-is when reordering lines. For details, see SDK issue 26644.

Tool Changes

  • dartfmt - upgraded to v0.2.9+1

    • Support trailing commas in argument and parameter lists.
    • Gracefully handle read-only files.
    • About a dozen other bug fixes.
  • Pub

    • Added a --no-packages-dir flag to pub get, pub upgrade, and pub downgrade. When this flag is passed, pub will not generate a packages/ directory, and will remove that directory and any symlinks to it if they exist. Note that this replaces the unsupported --no-package-symlinks flag.

    • Added the ability for packages to declare a constraint on the [Flutter][] SDK:

      environment:
        flutter: ^0.1.2
        sdk: >=1.19.0 <2.0.0

      A Flutter constraint will only be satisfiable when pub is running in the context of the flutter executable, and when the Flutter SDK version matches the constraint.

    • Added sdk as a new package source that fetches packages from a hard-coded SDK. Currently only the flutter SDK is supported:

      dependencies:
        flutter_driver:
          sdk: flutter
          version: ^0.0.1

      A Flutter sdk dependency will only be satisfiable when pub is running in

... (truncated)

Commits
  • c38a8d1 Extend Future.then inference to subclasses
  • 0e12dbf fixes #27113, future.then shouldn't disable upwards block inference
  • 47f1415 Type check field initializers in the correct context.
  • 1c81fe7 Fix calling object methods and properties on function types
  • 3f95c3e Ignore any missing dependencies while linking in PubSummaryManager.
  • 5bfd6e6 Add PubSummaryManager.computeUnlinkedForFolder() for Flutter.
  • efb961c Create a way to find SDK extensions and integrate it
  • e31e775 Move summary inspection code out of pkg/analyzer/lib.
  • b7a0a42 Add --bazel-paths option to dart2js entrypoint.
  • b3a38bd fix #27088, future then upwards inference
  • Additional commits viewable in compare view

Updates path_provider_platform_interface from 2.1.2 to 2.1.3

Commits
  • aa964a3 [path_provider] Document null vs UnsupportedError return semantics (#11793)
  • bd297cf [AGP 9] Migrate Remaining Plugin Example Apps to Built-in Kotlin (#11806)
  • 2e006b2 [path_provider] Create temp dir in tests if needed (#11841)
  • 24a3833 Updated analysis_options line width from flutter/flutter (#11692)
  • 1dfbada [ci] Update repo for 3.44 stable release (#11741)
  • 0ffbde8 Roll Flutter from 707dbc0420a3 to 23f6f5853f50 (149 revisions) (#11700)
  • f52df41 [path_provider] Remove dependency on engine PathUtils (#11467)
  • e37fa8f [various] Convert remaining Groovy files to Kotlin (#11443)
  • 0e0a032 [various] Ignore generated plugin files (#11455)
  • c7d680f [path_provider_android] Changes internal implementation to use JNI (#9770)
  • Additional commits viewable in compare view

Updates riverpod from 3.3.2 to 3.4.3

Commits

Updates riverpod_annotation from 4.0.3 to 4.0.7

Commits

Updates riverpod_lint from 3.1.4 to 3.1.9

Commits

Updates hooks_riverpod from 3.3.2 to 3.4.3

Commits

Updates flutter_riverpod from 3.3.2 to 3.4.3

Commits

Updates riverpod_generator from 4.0.4 to 4.0.9

Commits

Updates mockito from 5.6.4 to 5.8.1

Release notes

Sourced from mockito's releases.

package:mockito v5.8.1

  • Cast dummy values for extension types to the extension type so they satisfy static type checking in generic return types like Future<ExtensionType>. #4590
  • Use canonical asset path in generated header comments so symlink paths are excluded. #4545
  • Deterministically select library to import when multiple libraries export the same type. #4549
  • Prefer importing public entrypoints over /src/ implementation libraries when multiple libraries export the same type. #4551
  • Throw InvalidMockitoAnnotationException with a clear message when @GenerateMocks customMocks or @GenerateNiceMocks mocks is not a list literal, instead of crashing with a type cast exception. #4428
  • Remove redundant per-class // ignore: must_be_immutable comment to prevent duplicate_ignore warnings. #4588
  • Clarify in README.md that generated .mocks.dart filenames are based on the source file name. #4599
  • Suppress experimental_member_use warnings in generated mock files. #4602
  • Document missing stub behavior for void and Future<void>.

package:mockito v5.8.0

  • Add support for JS interop extension type mock generation to mockito.
  • It is now an error to generate mocks for non-JS interop extension types. Instead, mock the representation type and cast to the extension type where needed.
  • Remove Mockito version number from generated output.
  • Allow analyzer 14.0.0.

package:mockito v5.7.0

  • Handle JS interop extension types and provide dummy values for them. #4498

package:mockito v5.6.5

  • Require analyzer 13.0.0.
Commits

Updates freezed from 3.2.6-dev.1 to 4.0.1

Commits

Updates drift_dev from 2.34.0 to 2.35.0

Commits
  • 1e8bb78 Prepare 2.35.0 release
  • fdb7427 Warn when a table has a @DriftDatabase annotation
  • eb68e16 Versioned schema: Remove unused name parameter
  • ccb75b7 Add FTS5 Dart helpers: match, highlight, snippet, bm25 and rank (#3843) (#3855)
  • 9a84d10 Use navigator lock around OPFS check
  • 3cc83f6 Fix typos in docs and contributing guide
  • 5a17dcf Also remove export
  • 546e35a Remove web/channel_legacy.dart as the SDK will soon drop support for dart:html.
  • 70db2cd Fix dependency version in drift3 preview
  • f7d7067 Prepare drift release
  • Additional commits viewable in compare view

Updates riverpod_generator from 4.0.4 to 4.0.9

Commits

Updates riverpod_lint from 3.1.4 to 3.1.9

Commits

Updates sqlite3 from 3.5.0 to 3.5.2

Commits
  • 8adb539 Prepare 3.5.2 release
  • 4e48e7a Update OpenSSL to 3.6.3
  • d12ffac Generate sboms for all builds
  • de3e5ce Update SQLCipher to 4.18.0
  • b197fc6 Re-enable sanitizer tests on dart dev
  • be93d74 Use bigints in OPFS atomics VFS
  • 98f7b63 Replace remaining pnpm mentions
  • 5794e06 Also migrate release process away from pnpm
  • 265b9e1 Install dependencies first
  • 5c039d7 Use plain npm instead of pnpm
  • Additional commits viewable in compare view

Updates test from 1.31.0 to 1.31.1

Release notes

Sourced from test's releases.

package:test v1.31.1

  • Ignore an error locating the SDK directory on platforms where the resolvedExecutable is unexpectedly null.
  • Fix a bug where -c exe tests would hang on exit on windows.
  • Fix a bug where the web test runner would not find custom HTML files when using the dart2wasm compiler.
  • GithubReporter:
    • Group contiguous passing and skipped tests into collapsible groups to reduce log noise in GitHub Actions.
    • Updated skipped icon to ⏭️.
  • Increase SDK constraint to ^3.10.0.
  • Allow analyzer version 13.x.x.
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

…th 15 updates

Bumps the patch-updates group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [dio](https://github.com/cfug/dio) | `5.11.0` | `5.11.1` |
| [html](https://github.com/dart-lang/tools/tree/main/pkgs) | `0.15.6` | `0.15.7` |
| [path_provider_platform_interface](https://github.com/flutter/packages/tree/main/packages/path_provider) | `2.1.2` | `2.1.3` |
| [riverpod](https://github.com/rrousselGit/riverpod) | `3.3.2` | `3.4.3` |
| [riverpod_annotation](https://github.com/rrousselGit/riverpod) | `4.0.3` | `4.0.7` |
| [riverpod_lint](https://github.com/rrousselGit/river_pod) | `3.1.4` | `3.1.9` |
| [hooks_riverpod](https://github.com/rrousselGit/riverpod) | `3.3.2` | `3.4.3` |
| [flutter_riverpod](https://github.com/rrousselGit/riverpod) | `3.3.2` | `3.4.3` |
| [riverpod_generator](https://github.com/rrousselGit/riverpod) | `4.0.4` | `4.0.9` |
| [mockito](https://github.com/dart-lang/build/tree/master/builder_pkgs) | `5.6.4` | `5.8.1` |
| [freezed](https://github.com/rrousselGit/freezed) | `3.2.6-dev.1` | `4.0.1` |
| [drift_dev](https://github.com/simolus3/drift) | `2.34.0` | `2.35.0` |
| [sqlite3](https://github.com/simolus3/sqlite3.dart) | `3.5.0` | `3.5.2` |



Updates `dio` from 5.11.0 to 5.11.1
- [Release notes](https://github.com/cfug/dio/releases)
- [Commits](cfug/dio@dio_v5.11.0...dio_v5.11.1)

Updates `html` from 0.15.6 to 0.15.7
- [Release notes](https://github.com/dart-lang/tools/releases)
- [Commits](https://github.com/dart-lang/tools/commits/html-v0.15.7/pkgs)

Updates `meta` from 1.18.0 to 1.19.0
- [Changelog](https://github.com/dart-lang/sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/sdk/commits/1.19.0/pkg)

Updates `path_provider_platform_interface` from 2.1.2 to 2.1.3
- [Commits](https://github.com/flutter/packages/commits/path_provider_platform_interface-v2.1.3/packages/path_provider)

Updates `riverpod` from 3.3.2 to 3.4.3
- [Commits](rrousselGit/riverpod@riverpod-v3.3.2...riverpod-v3.4.3)

Updates `riverpod_annotation` from 4.0.3 to 4.0.7
- [Commits](rrousselGit/riverpod@riverpod_annotation-v4.0.3...riverpod_annotation-v4.0.7)

Updates `riverpod_lint` from 3.1.4 to 3.1.9
- [Commits](rrousselGit/riverpod@riverpod_lint-v3.1.4...riverpod_lint-v3.1.9)

Updates `hooks_riverpod` from 3.3.2 to 3.4.3
- [Commits](rrousselGit/riverpod@hooks_riverpod-v3.3.2...hooks_riverpod-v3.4.3)

Updates `flutter_riverpod` from 3.3.2 to 3.4.3
- [Commits](rrousselGit/riverpod@flutter_riverpod-v3.3.2...flutter_riverpod-v3.4.3)

Updates `riverpod_generator` from 4.0.4 to 4.0.9
- [Commits](rrousselGit/riverpod@riverpod_generator-v4.0.4...riverpod_generator-v4.0.9)

Updates `mockito` from 5.6.4 to 5.8.1
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](https://github.com/dart-lang/build/commits/mockito-v5.8.1/builder_pkgs)

Updates `freezed` from 3.2.6-dev.1 to 4.0.1
- [Commits](rrousselGit/freezed@freezed-v3.2.6-dev.1...freezed-v4.0.1)

Updates `drift_dev` from 2.34.0 to 2.35.0
- [Release notes](https://github.com/simolus3/drift/releases)
- [Commits](simolus3/drift@drift_dev-2.34.0...drift_dev-2.35.0)

Updates `riverpod_generator` from 4.0.4 to 4.0.9
- [Commits](rrousselGit/riverpod@riverpod_generator-v4.0.4...riverpod_generator-v4.0.9)

Updates `riverpod_lint` from 3.1.4 to 3.1.9
- [Commits](rrousselGit/riverpod@riverpod_lint-v3.1.4...riverpod_lint-v3.1.9)

Updates `sqlite3` from 3.5.0 to 3.5.2
- [Release notes](https://github.com/simolus3/sqlite3.dart/releases)
- [Commits](simolus3/sqlite3.dart@sqlite3-3.5.0...sqlite3-3.5.2)

Updates `test` from 1.31.0 to 1.31.1
- [Release notes](https://github.com/dart-lang/test/releases)
- [Commits](https://github.com/dart-lang/test/commits/test-v1.31.1/pkgs)

---
updated-dependencies:
- dependency-name: dio
  dependency-version: 5.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: html
  dependency-version: 0.15.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: meta
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: path_provider_platform_interface
  dependency-version: 2.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: riverpod
  dependency-version: 3.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: riverpod_annotation
  dependency-version: 4.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: riverpod_lint
  dependency-version: 3.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: hooks_riverpod
  dependency-version: 3.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: flutter_riverpod
  dependency-version: 3.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: riverpod_generator
  dependency-version: 4.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: mockito
  dependency-version: 5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: freezed
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: patch-updates
- dependency-name: drift_dev
  dependency-version: 2.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: riverpod_generator
  dependency-version: 4.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: riverpod_lint
  dependency-version: 3.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: sqlite3
  dependency-version: 3.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: test
  dependency-version: 1.31.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

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 Sep 9, 2026
@coderabbitai

coderabbitai Bot commented Sep 9, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Advanced

Run ID: 7f7e6102-3723-4cf1-a2a4-63dca3b30032

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

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.

0 participants