Change8

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.run

Breaking 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

  1. 1
    Replace usage of `wandb.beta.workflows.log_model()` with `Run.log_artifact()`.
  2. 2
    Replace usage of `wandb.beta.workflows.use_model()` with `Run.use_artifact()`.
  3. 3
    Replace 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