chore: remove runtime_ci_tooling dev_dependency#23
Conversation
…n CI) runtime_ci_tooling is globally activated via dart pub global activate in CI pipelines — it should not be a dev_dependency. Having it as a git dep causes workspace resolution conflicts when the package is also a workspace member in the monorepo. Made-with: Cursor
PR SummaryLow Risk Overview Adds comments documenting that Written by Cursor Bugbot for commit 2298571. Configure here. |
There was a problem hiding this comment.
Pull request overview
Removes the runtime_ci_tooling Git dev dependency from pubspec.yaml to avoid workspace resolution conflicts, since the tool is already globally activated in CI.
Changes:
- Deleted the
runtime_ci_toolingentry fromdev_dependencies. - Added inline documentation in
pubspec.yamlshowing how to useruntime_ci_toolingviadart pub global activate/run.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
## Changelog ## [1.0.7] - 2026-03-26 ### Changed - Removed runtime_ci_tooling dev_dependency to prevent workspace resolution conflicts, deferring to global activation in CI instead (#23) ## Files Modified ``` .../audit/v1.0.7/explore/breaking_changes.json | 4 + .../audit/v1.0.7/explore/commit_analysis.json | 22 ++ .runtime_ci/audit/v1.0.7/explore/pr_data.json | 15 + .runtime_ci/audit/v1.0.7/meta.json | 82 ++++++ .../v1.0.7/version_analysis/version_bump.json | 1 + .../version_analysis/version_bump_rationale.md | 21 ++ .../release_notes/v1.0.7/changelog_entry.md | 4 + .runtime_ci/release_notes/v1.0.7/contributors.json | 5 + .../release_notes/v1.0.7/linked_issues.json | 1 + .runtime_ci/release_notes/v1.0.7/release_notes.md | 34 +++ .../release_notes/v1.0.7/release_notes_body.md | 34 +++ .runtime_ci/version_bumps/v1.0.7.md | 21 ++ CHANGELOG.md | 6 + README.md | 2 +- docs/API_REFERENCE.md | 311 +++------------------ docs/QUICKSTART.md | 121 +++----- pubspec.yaml | 2 +- 17 files changed, 324 insertions(+), 362 deletions(-) ``` ## Version Bump Rationale # Version Bump Rationale - **Decision**: `patch` The only change in this release is a maintenance update to remove `runtime_ci_tooling` from `dev_dependencies` in `pubspec.yaml`. Since the dependency is activated globally in CI, it does not need to be listed in `pubspec.yaml`, which avoids workspace resolution conflicts. Because this is a chore/maintenance task that only affects the build and CI configuration (not the public API or runtime behavior), a patch version bump is appropriate. - **Key Changes**: - Removed `runtime_ci_tooling` from `dev_dependencies` in `pubspec.yaml`. - **Breaking Changes**: - None. - **New Features**: - None. - **References**: - Pull Request #23 - commit `chore: remove runtime_ci_tooling dev_dependency` ## Contributors - @tsavo-at-pieces --- Automated release by CI/CD pipeline (Gemini CLI + GitHub Actions) Commits since v1.0.6: 2 Generated: 2026-03-26T21:20:42.478361Z
runtime_ci_tooling is globally activated in CI — not a dev_dependency. Removes workspace resolution conflict.
Made with Cursor