Migrating to Weights & Biases v0.24.0
Version v0.24.0 introduces 1 breaking change. This guide details how to update your code.
Released: 1/13/2026
1
Breaking Changes
3
Migration Steps
6
Affected Symbols
⚠️ Check Your Code
If you use any of these symbols, you need to read this guide:
wandb.beta.workflowswandb.beta.workflows.log_modelwandb.beta.workflows.use_modelwandb.beta.workflows.link_modelRun.__exit__wandb.Api.runBreaking Changes
●Issue #1
The legacy, deprecated `wandb.beta.workflows` module, including its `log_model()`, `use_model()`, and `link_model()` functions, has been removed. Users should migrate to `Run.log_artifact`, `Run.use_artifact`, and `Run.link_artifact` respectively.
Migration Steps
- 1Replace usage of `wandb.beta.workflows.log_model()` with `Run.log_artifact()`.
- 2Replace usage of `wandb.beta.workflows.use_model()` with `Run.use_artifact()`.
- 3Replace usage of `wandb.beta.workflows.link_model()` with `Run.link_artifact()`.
Release Summary
This release removes the deprecated `wandb.beta.workflows` module, introduces signal forwarding for agents, and includes several fixes related to artifact ID generation, API calls, and run logging presentation.
Need More Details?
View the full release notes and all changes for Weights & Biases v0.24.0.
View Full Changelog