Wandb

Latest version: v0.19.9

Safety actively analyzes 723685 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 32

0.19.3

Fixed

- Fix `wandb.Settings` update regression in `wandb.integration.metaflow` (kptkin in https://github.com/wandb/wandb/pull/9211)

0.19.2

Added

- Support JWT authentication in wandb-core (elainaRenee in https://github.com/wandb/wandb/pull/8431)
- Add support for logging nested custom charts. (jacobromero in https://github.com/wandb/wandb/pull/8789)

Changed

- Calling `wandb.init(mode="disabled")` no longer disables all later runs by default. Use `wandb.setup(settings=wandb.Settings(mode="disabled"))` for this instead, or set `mode="disabled"` explicitly in each call to `wandb.init()`. (timoffex in https://github.com/wandb/wandb/pull/9172)

Fixed

- The stop button correctly interrupts runs whose main Python thread is running C code, sleeping, etc. (timoffex in https://github.com/wandb/wandb/pull/9094)
- Remove unintentional print that occurs when inspecting `wandb.Api().runs()` (tomtseng in https://github.com/wandb/wandb/pull/9101)
- Fix uploading large artifacts when using Azure Blob Storage. (amulya-musipatla in https://github.com/wandb/wandb/pull/8946)
- The `wandb offline` command no longer adds an unsupported setting to `wandb.Settings`, resolving `ValidationError`. (kptkin in https://github.com/wandb/wandb/pull/9135)
- Fix error when reinitializing a run, caused by accessing a removed attribute. (MathisTLD in https://github.com/wandb/wandb/pull/8912)
- Fixed occasional deadlock when using `multiprocessing` to update a single run from multiple processes (timoffex in https://github.com/wandb/wandb/pull/9126)
- Prevent errors from bugs in older versions of `botocore < 1.5.76` (amusipatla-wandb, tonyyli-wandb in https://github.com/wandb/wandb/pull/9015)
- Fixed various checks against invalid `anonymous` settings value. (jacobromero in https://github.com/wandb/wandb/pull/9193)

Removed

- The `wandb.wandb_sdk.wandb_setup._setup()` function's `reset` parameter has been removed. Note that this is a private function, even though there appear to be usages outside of the repo. Please `wandb.teardown()` instead of `_setup(reset=True)`. (timoffex in https://github.com/wandb/wandb/pull/9165)
- In the private `wandb.wandb_sdk.wandb_setup` module, the `logger` and `_set_logger` symbols have been removed (timoffex in https://github.com/wandb/wandb/pull/9195)

Security

- Bump `github.com/go-git/go-git` version to 5.13.0 to address CVE-2025-21613. (kptkin in https://github.com/wandb/wandb/pull/9192)
- Bump `golang.org/x/net` version to 0.33.0 to address CVE-2024-45338. (kptkin in https://github.com/wandb/wandb/pull/9115)

0.19.1

Fixed

- Fixed bug where setting WANDB__SERVICE_WAIT led to an exception during wandb.init (TimSchneider42 in https://github.com/wandb/wandb/pull/9050)

Changed

- `run.finish()` displays more detailed information in the terminal and in Jupyter notebooks (by timoffex, enabled in https://github.com/wandb/wandb/pull/9070)
- Improved error message for failing tensorboard.patch() calls to show the option to call tensorboard.unpatch() first (daniel-bogdoll in https://github.com/wandb/wandb/pull/8938)
- Add projectId to deleteFiles mutation if the server supports it. (jacobromero in https://github.com/wandb/wandb/pull/8837)

Security

- Bump `golang.org/x/crypto` version to 0.31.0 to address CVE-2024-45337. (kptkin in https://github.com/wandb/wandb/pull/9069)

0.19.0

Notable Changes

This version drops Python 3.7 and removes the `wandb.Run.plot_table` method.
This version adds pydantic>=2.6,<3 as a dependency.

Changed

- Set default behavior to not create a W&B Job (KyleGoyette in https://github.com/wandb/wandb/pull/8907)
- Add pydantic>=2.6,<3 as a dependency (dmitryduev in https://github.com/wandb/wandb/pull/8649 & estellazx
in https://github.com/wandb/wandb/pull/8905)

Removed

- Remove `wandb.Run.plot_table` method. The functionality is still available and should be accessed using `wandb.plot_table`, which is now the recommended way to use this feature. (kptkin in https://github.com/wandb/wandb/pull/8686)
- Drop support for Python 3.7. (kptkin in https://github.com/wandb/wandb/pull/8858)

Fixed

- Fix `ultralytics` reporting if there are no positive examples in a validation batch. (Jamil in https://github.com/wandb/wandb/pull/8870)
- Debug printing for hyperband stopping algorithm printed one char per line (temporaer in https://github.com/wandb/wandb/pull/8955)
- Include the missing `log_params` argument when calling lightgbm's `wandb_callback` function. (i-aki-y https://github.com/wandb/wandb/pull/8943)

0.18.7

Added

- Added `create_and_run_agent` to `__all__` in `wandb/sdk/launch/__init__.py` to expose it as a public API (marijncv in https://github.com/wandb/wandb/pull/8621)

Changed

- Tables logged in offline mode now have updated keys to artifact paths when syncing. To revert to old behavior, use setting `allow_offline_artifacts = False`. (domphan-wandb in https://github.com/wandb/wandb/pull/8792)

Deprecated

- The `quiet` argument to `wandb.run.finish()` is deprecated, use `wandb.Settings(quiet=...)` to set this instead. (kptkin in https://github.com/wandb/wandb/pull/8794)

Fixed

- Fix `api.artifact()` to correctly pass the `enable_tracking` argument to the `Artifact._from_name()` method (ibindlish in https://github.com/wandb/wandb/pull/8803)

0.18.6

Added

- Add a boolean `overwrite` param to `Artifact.add()`/`Artifact.add_file()` to allow overwrite of previously-added artifact files (tonyyli-wandb in https://github.com/wandb/wandb/pull/8553)

Fixed

- Add missing type hints of the `wandb.plot` module in the package stub (kptkin in https://github.com/wandb/wandb/pull/8667)
- Fix limiting azure reference artifact uploads to `max_objects` (amusipatla-wandb in https://github.com/wandb/wandb/pull/8703)
- Fix downloading azure reference artifacts with `skip_cache=True` (amusipatla-wandb in https://github.com/wandb/wandb/pull/8706)
- Fix multipart uploads for files with no content type defined in headers (amusipatla-wandb in https://github.com/wandb/wandb/pull/8716)
- Fixed tensorboard failing to sync when logging batches of images. (jacobromero in https://github.com/wandb/wandb/pull/8641)
- Fixed behavior of `mode='x'`/`mode='w'` in `Artifact.new_file()` to conform to Python's built-in file modes (tonyyli-wandb in https://github.com/wandb/wandb/pull/8553)
- Do not ignore parameter `distribution` when configuring sweep parameters from SDK. (temporaer in https://github.com/wandb/wandb/pull/8737)

Changed

- Added internal method, `api._artifact()`, to fetch artifacts so that usage events are not created if not called by an external user. (ibindlish in https://github.com/wandb/wandb/pull/8674)
- Changed default `mode` in `Artifact.new_file()` from `'w'` to `'x'` to accurately reflect existing default behavior (tonyyli-wandb in https://github.com/wandb/wandb/pull/8553)

Page 2 of 32

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.