Skip to content

Update dart analyzer toolchain#634

Closed
renovate[bot] wants to merge 6 commits into
mainfrom
renovate/dart-analyzer-toolchain
Closed

Update dart analyzer toolchain#634
renovate[bot] wants to merge 6 commits into
mainfrom
renovate/dart-analyzer-toolchain

Conversation

@renovate

@renovate renovate Bot commented Jul 8, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
built_value_generator (source) dev_dependencies patch 8.12.18.12.5
flutter_riverpod (source) dependencies patch 3.3.13.3.2
hooks_riverpod (source) dependencies patch 3.3.13.3.2
json_annotation (source) dependencies minor 4.11.04.12.0
json_serializable (source) dev_dependencies minor 6.13.06.14.0
mockito (source) dev_dependencies minor 5.6.35.7.0
riverpod_annotation dependencies patch 4.0.24.0.3
riverpod_generator dev_dependencies patch 4.0.34.0.4
test (source) dev_dependencies patch 1.31.01.31.2

Release Notes

google/built_value.dart (built_value_generator)

v8.12.5

Compare Source

  • Allow analyzer 11.0.0 and analyzer 12.0.0.

v8.12.4

Compare Source

  • Reduce use of dynamic calls in generated operator== when there are
    functions: only use dynamic calls if the class also has type parameters.

v8.12.3

Compare Source

  • Require analyzer ^10.0.0, stop using removed and deprecated methods from
    earlier versions.

v8.12.2

Compare Source

  • Allow analyzer 10.0.0.
rrousselGit/riverpod (flutter_riverpod)

v3.3.2

Compare Source

google/json_serializable.dart (json_annotation)

v4.12.0

Compare Source

  • Add JsonKey.explicitJsonNullWhenNonNullField for PATCH-style tri-state JSON
    fields (omit key vs explicit null vs value).
google/json_serializable.dart (json_serializable)

v6.14.0

Compare Source

  • Support JsonKey.explicitJsonNullWhenNonNullField for PATCH-style tri-state
    JSON fields: distinguish omitted keys from explicit null in fromJson and
    emit explicit JSON null in toJson when the Dart field is non-null.
  • Require json_annotation: '>=4.12.0 <4.13.0'

v6.13.2

Compare Source

  • Require analyzer: '>=10.0.0 <14.0.0'

v6.13.1

Compare Source

  • Improve error message when generating code for Record types with unsupported
    fields.
    (#​1559)
  • Require analyzer: '>=10.0.0 <13.0.0'
  • Require build: ^4.0.4
  • Require dart_style: ^3.1.4
  • Require source_gen: ^4.1.2
  • Require source_helper: ^1.3.10
dart-lang/build (mockito)

v5.7.0

Compare Source

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

v5.6.5

Compare Source

  • Require analyzer 13.0.0.

v5.6.4

  • Allow analyzer 11.0.0 and 12.0.0.
  • Move to dart-lang/build monorepo.
dart-lang/test (test)

v1.31.2

Compare Source

  • Add support for running tests as native CLI bundles (vm platform only).
    • You can run tests this way with --compiler cli.
  • Impacts Configuration Support using the OS platform selector to configure
    browser tests.
    Previously tests loaded for the browser would have an operating system of
    "none", now they will have an operating system matching the system the browser
    is running on. This allows more specific configuration, such as skipping a
    particular browser test on a particular platform. This may impact existing
    configuration which relied on the configuration for browser tests being
    independent from any OS specific configuration. For instance a wide skip of
    all tests with OS 'windows' would previously still run browser tests on
    windows, but will now skip all tests including browser tests.
  • Use a DevTools URL instead of a defunct observatory URL.
  • Disable throttling in chrome launch arguments.
  • Allow package_config 3.x.x.
  • Require analyzer: '>=13.0.0 <15.0.0'
  • Use the compact or failures-only reporters by default for tests run directly
    instead of through the test runner.

v1.31.1

Compare Source

  • 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.

Configuration

📅 Schedule: (in timezone Asia/Tokyo)

  • Branch creation
    • "before 4:00am on Monday,before 4:00am on Wednesday,before 4:00am on Friday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/dart-analyzer-toolchain branch from b8913cf to 1346337 Compare July 10, 2026 15:11
@renovate

renovate Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

kantacky and others added 4 commits July 11, 2026 00:32
test >=1.31.2 は analyzer >=13 を要求し、保留中の
built_value_generator <8.12.6 (analyzer <13) と競合して
pub get が解決不能になるため、test を <1.31.2 に保留する。

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
built_value_generator 8.12.5 (analyzer <13) と test 1.31.2
(analyzer >=13) の制約が競合し依存解決に失敗するため。

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
mockito >=5.6.5 は analyzer ^13 を要求し、riverpod_generator
4.0.4 (analyzer ^12) と競合して依存解決に失敗するため、
mockito を <5.6.5 に保留する。

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
mockito 5.6.3 は analyzer <11 のため riverpod_generator 4.0.4
(analyzer ^12) と競合する。5.6.4 は analyzer <13 まで許容する。

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@kantacky kantacky closed this Jul 10, 2026
@kantacky kantacky deleted the renovate/dart-analyzer-toolchain branch July 10, 2026 15:48
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.

1 participant