Upgrade mlflow to 3.12.0#160
Open
brentsea wants to merge 1 commit into
Open
Conversation
Bump the mlflow[auth] pin, the Dockerfile.mlflow base image, and its pip install to 3.12.0, and regenerate uv.lock (adds prettytable and skops, moves starlette to 0.52.1). Raise the Dependabot mlflow ignore floor from >= 3.8 to >= 3.13 to stay on the pre-RBAC side of MLflow; 3.13 overhauls auth into a new RBAC model, so hold there until that upgrade is deliberately planned.
|
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the MLflow client and tracking-server image from 3.7.0 to 3.12.0, keeping the
client pin, the server base image, and the lockfile coordinated. 3.12.0 is the last
release before the 3.13.0 RBAC overhaul, so this picks up several minor releases of
fixes without taking on the server-side permission-model migration that 3.13 requires.
Changes:
pyproject.toml,Dockerfile.mlflow(base image +pip install), anduv.lockall move to 3.12.0 together (these pins must move in lockstep - see the comment in
pyproject.toml)..github/dependabot.yml: tightened the mlflow ignore rule from>= 3.8to>= 3.13so Dependabot can now propose 3.12.x patch bumps but still holds back the breaking
3.13 RBAC release.
uv.lockregenerated for 3.12.0's transitive deps: addsprettytableandskops,and pins
starlettedown from 1.3.1 to 0.52.1. No first-party code changes needed.Testing (local, full CI parity):
scripts/check_mlflow_versions.sh+uv lock --checkpass, andpytestis green(35 passed) against a fresh Postgres-backed 3.12 server.
flightpaths/notebooks execute successfully.Notes:
change is authorization-only and would be a separate server-side task.
revisit the NaN/inf metric workaround in
src/modelplane/runways/scorer.py(upstream MLflow issue #16555, fixed server-side in 3.2.0+).