From 18d5a78fee75e0a466355e6edfb634d8f7a7565a Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 8 May 2026 23:40:37 +0900 Subject: fix(require): align with Composer's RequireCommand pipeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add mozart-registry::version_selector::VersionSelector mirroring Composer\Package\Version\VersionSelector; wraps find_best_candidate and find_recommended_require_version_string for per-arg resolution - Decompose execute() into named helpers matching Composer's structure: CommandState, revert_composer_file, get_inconsistent_require_keys, get_packages_by_require_key, update_file, update_file_cleanly (stub for PR 3), do_update, update_requirements_after_resolution (stub for PR 2) - Fix firstRequire gating: compute first_require from the original file before applying changes; apply setUpdateAllowList only when !first_require and lock exists (prevents over-pinning on fresh projects) - Add --fixed gate: bail when fixed && !dev && type != "project", matching Composer L173-189 wording verbatim - Wire --no-security-blocking + COMPOSER_NO_SECURITY_BLOCKING env var into block_insecure in ResolveRequest (was always false) - Wire COMPOSER_NO_AUDIT env var to skip audit step (tracked) - Match Composer's revertComposerFile messaging: "deleting " for newly-created, "reverting and to their" / "to its" for existing files; also removes lock file on newly-created revert - Auto-create "{\n}\n" when composer.json is missing or empty, mirroring Composer L138-152; delete file on dry-run cleanup (finally block) - Add resolution-failure hint: "You can also try re-running mozart require with an explicit version constraint…" for unversioned packages - Update deprecated-flag warnings to stderr (write_error) with Composer-matching wording for --no-suggest Co-Authored-By: Claude Sonnet 4.6 --- crates/mozart-registry/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/mozart-registry/src/lib.rs') diff --git a/crates/mozart-registry/src/lib.rs b/crates/mozart-registry/src/lib.rs index 8f9af91..e35056c 100644 --- a/crates/mozart-registry/src/lib.rs +++ b/crates/mozart-registry/src/lib.rs @@ -15,3 +15,4 @@ pub mod repository_filter; pub mod resolver; pub mod vcs_bridge; pub mod version; +pub mod version_selector; -- cgit v1.3.1