Skip to content
Prev Previous commit
Next Next commit
Add .pluginToolsConfig.yaml to exempt packages for CHANGELOG
  • Loading branch information
reidbaker committed May 1, 2023
commit db4aac5442c1c8f8eebe6fda41ff6fba5033e67f
2 changes: 2 additions & 0 deletions script/tool/lib/src/common/package_state_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ Future<bool> _isDevChange(List<String> pathComponents,
pathComponents.contains('lint-baseline.xml') ||
// Example build files are very unlikely to be interesting to clients.
_isExampleBuildFile(pathComponents) ||
// Build flags are very unlikely to be interesting to clients.
pathComponents.contains('.pluginToolsConfig.yaml') ||
// Test-only gradle depenedencies don't affect clients.
await _isGradleTestDependencyChange(pathComponents,
git: git, repoPath: repoPath);
Expand Down
1 change: 1 addition & 0 deletions script/tool/test/version_check_command_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,7 @@ tool/plugin/lib/plugin.dart
processRunner.mockProcessesForExecutable['git-diff'] =
<FakeProcessInfo>[
FakeProcessInfo(MockProcess(stdout: '''
packages/plugin/example/android/.pluginToolsConfig.yaml
packages/plugin/example/android/lint-baseline.xml
packages/plugin/example/android/src/androidTest/foo/bar/FooTest.java
packages/plugin/example/ios/RunnerTests/Foo.m
Expand Down