Skip to content

upgrade: update dependency analyzer_testing to v0.2.4#440

Open
renovate[bot] wants to merge 1 commit intomainfrom
upgrade-renovate-analyzer_testing-0.x
Open

upgrade: update dependency analyzer_testing to v0.2.4#440
renovate[bot] wants to merge 1 commit intomainfrom
upgrade-renovate-analyzer_testing-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 30, 2025

This PR contains the following updates:

Package Type Update Change
analyzer_testing (source) dev_dependencies minor 0.1.70.2.4

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

dart-lang/sdk (analyzer_testing)

v0.2.4

Compare Source

  • Require version 12.0.0 of the analyzer package.

v0.2.2

Compare Source

  • Require version ^11.0.0-0 of the analyzer package.

v0.2.1

Compare Source

  • Require version 10.3.0-dev of the analyzer package.

v0.2.0

  • Remove deprecated mock APIs: MockPackagesMixin.addAngularMeta
    MockPackagesMixin.addFlutterTest MockPackagesMixin.addJs
    MockPackagesMixin.addKernel MockPackagesMixin.pedantic and
    MockPackagesMixin.addUI.
  • Require version 10.1.0 of the analyzer package.

v0.1.10

  • A stub Flutter package can be added in tests by overriding the
    addFlutterPackageDep getter to return true. This API existed before but is
    now functional; same with addFixnumPackageDep, addMetaPackageDep, and
    addTestReflectiveLoaderPackageDep.
  • Require version 10.0.2 of the analyzer package.

v0.1.9

  • Deprecate MockPackagesMixin.addUI; This is replaced by addSkyEngine.
  • Deprecate MockPackagesMixin.addFlutterTest. A mock flutter_test package
    can still be written with PubPackageResolutionTest.newPackage.
  • Require version 10.0.1 of the analyzer package.

v0.1.8

  • Require version 10.0.0 of the analyzer package.
  • Change the behavior of analysisOptionsContent so that by default, the
    analysis options file used in testing specifies a true value for
    propagate-linter-exceptions. This ensures that when tests are run,
    exceptions that occur while processing lint rules will cause the test to fail.
  • Deprecate MockPackagesMixin.addAngularMeta. A mock angular_meta package
    can still be written with PubPackageResolutionTest.newPackage.
  • Deprecate MockPackagesMixin.addJs and
    PubPackageResolutionTest.addJsPackageDep. A mock js package can still be
    written with PubPackageResolutionTest.newPackage.
  • Deprecate MockPackagesMixin.addKernel and
    PubPackageResolutionTest.addKernelPackageDep. A mock kernel
    package can still be written with PubPackageResolutionTest.newPackage.
  • Deprecate MockPackagesMixin.addPedantic. A mock pedantic package can still
    be written with PubPackageResolutionTest.newPackage.

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) in timezone Asia/Tokyo, 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 added the dep Dependency updates or problems label Nov 30, 2025
@renovate renovate bot requested a review from ronnnnn as a code owner November 30, 2025 15:33
@renovate renovate bot force-pushed the upgrade-renovate-analyzer_testing-0.x branch from e007279 to 3542dcb Compare January 9, 2026 21:52
@renovate renovate bot changed the title upgrade: update dependency analyzer_testing to v0.1.7 upgrade: update dependency analyzer_testing to v0.1.8 Jan 9, 2026
@renovate renovate bot force-pushed the upgrade-renovate-analyzer_testing-0.x branch from 3542dcb to f4c9b7e Compare January 19, 2026 02:11
@renovate renovate bot changed the title upgrade: update dependency analyzer_testing to v0.1.8 upgrade: update dependency analyzer_testing to v0.1.9 Jan 19, 2026
@renovate renovate bot force-pushed the upgrade-renovate-analyzer_testing-0.x branch from f4c9b7e to 6f03766 Compare February 1, 2026 20:54
@renovate renovate bot changed the title upgrade: update dependency analyzer_testing to v0.1.9 upgrade: update dependency analyzer_testing to v0.1.10 Feb 1, 2026
Copy link

@devin-ai-integration devin-ai-integration bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no potential bugs to report.

View in Devin Review to see 2 additional flags.

Open in Devin Review

@renovate renovate bot force-pushed the upgrade-renovate-analyzer_testing-0.x branch from 6f03766 to 8fddd1b Compare February 20, 2026 18:12
@renovate renovate bot changed the title upgrade: update dependency analyzer_testing to v0.1.10 upgrade: update dependency analyzer_testing to v0.2.0 Feb 20, 2026
Copy link

@devin-ai-integration devin-ai-integration bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Devin Review found 3 new potential issues.

Open in Devin Review

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: Deprecated API pattern in use - analysisRule getter

The release notes for analyzer_testing v0.1.7 state: "Deprecate AnalysisRuleTest.analysisRule; instead of implementing this getter, set the rule field in the setUp method, before calling super.setUp."

All test files in this project use the deprecated pattern, for example in packages/nilts/test/unstable_enum_name_test.dart:114:

@override
String get analysisRule => UnstableEnumName.ruleName;

This is found in 19 test files. While deprecated APIs typically continue to work, upgrading to 0.1.10 will likely produce deprecation warnings during test runs. Consider updating to the new pattern (rule = MyRule() in setUp before super.setUp()) to stay current with the library's conventions.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

@renovate renovate bot force-pushed the upgrade-renovate-analyzer_testing-0.x branch from 8fddd1b to 5bb4980 Compare February 24, 2026 17:59
@renovate renovate bot changed the title upgrade: update dependency analyzer_testing to v0.2.0 upgrade: update dependency analyzer_testing to v0.2.1 Feb 24, 2026
Copy link

@devin-ai-integration devin-ai-integration bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Devin Review found 2 new potential issues.

Open in Devin Review


test: 1.26.3
analyzer_testing: 0.1.5
analyzer_testing: 0.2.1

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: All three packages updated consistently

I verified that all three packages (nilts, nilts_clock, nilts_flutter_hooks) were updated from 0.1.5 to 0.2.1 consistently. The fourth workspace member (nilts_core at packages/nilts_core/pubspec.yaml) does not depend on analyzer_testing and is not affected. The workspace root pubspec.yaml also does not list analyzer_testing. So the change is consistent across the repo — this is not a bug, just confirmation that no package was missed.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

@renovate renovate bot force-pushed the upgrade-renovate-analyzer_testing-0.x branch from 5bb4980 to 4678fa1 Compare March 2, 2026 21:46
@renovate renovate bot changed the title upgrade: update dependency analyzer_testing to v0.2.1 upgrade: update dependency analyzer_testing to v0.2.2 Mar 2, 2026
@renovate renovate bot force-pushed the upgrade-renovate-analyzer_testing-0.x branch from 4678fa1 to 4738ab6 Compare March 14, 2026 07:24
@renovate renovate bot force-pushed the upgrade-renovate-analyzer_testing-0.x branch from 4738ab6 to c89b49a Compare March 20, 2026 05:00
@renovate renovate bot changed the title upgrade: update dependency analyzer_testing to v0.2.2 upgrade: update dependency analyzer_testing to v0.2.4 Mar 20, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dep Dependency updates or problems

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant