Skip to content

Bump wandb from 0.19.10 to 0.20.1#72

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/wandb-0.20.1
Closed

Bump wandb from 0.19.10 to 0.20.1#72
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/wandb-0.20.1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 23, 2025

Bumps wandb from 0.19.10 to 0.20.1.

Release notes

Sourced from wandb's releases.

v0.20.1

What's Changed

Fixed

v0.20.0

What's Changed

  • wandb.Table: Added new constructor param, log_mode, with options "IMMUTABLE" and "MUTABLE". IMMUTABLE log mode (default) is existing behavior that only allows a table to be logged once. MUTABLE log mode allows the table to be logged again if it has been mutated. (@​domphan-wandb in wandb/wandb#9758)
  • wandb.Table: Added a new log_mode, "INCREMENTAL", which logs newly added table data incrementally. (@​domphan-wandb in wandb/wandb#9810)

Notable Changes

This version removes the ability to disable the service process. This is a breaking change.

Added

  • Added merge parameter to Artifact.add_dir to allow overwrite of previously-added artifact files (@​pingleiwandb in wandb/wandb#9907)
  • Support for pytorch.tensor for masks and boxes parameters when creating a wandb.Image object. (@​jacobromero in wandb/wandb#9802)
  • sync_tensorboard now supports syncing tfevents files stored in S3, GCS and Azure (@​timoffex in wandb/wandb#9849)
    • GCS paths use the format gs://bucket/path/to/log/dir and rely on application-default credentials, which can be configured using gcloud auth application-default login
    • S3 paths use the format s3://bucket/path/to/log/dir and rely on the default credentials set through aws configure
    • Azure paths use the format az://account/container/path/to/log/dir and the az login credentials, but also require the AZURE_STORAGE_ACCOUNT and AZURE_STORAGE_KEY environment variables to be set. Some other environment variables are supported as well, see here.
  • Added support for initializing some Media objects with pathlib.Path (@​jacobromero in wandb/wandb#9692)
  • New setting x_skip_transaction_log that allows to skip the transaction log. Note: Should be used with caution, as it removes the gurantees about recoverability. (@​kptkin in wandb/wandb#9064)
  • normalize parameter to wandb.Image initialization to normalize pixel values for Images initialized with a numpy array or pytorch tensor. (@​jacobromero in wandb/wandb#9883)

Changed

  • Various APIs now raise TypeError instead of ValueError or other generic errors when given an argument of the wrong type. (@​timoffex in wandb/wandb#9902)
  • Various Artifacts and Automations APIs now raise CommError instead of ValueError upon encountering server errors, so as to surface the server error message. (@​ibindlish in wandb/wandb#9933)
  • wandb.sdk.wandb_run.Run::save method now requires the glob_str argument (@​dmitryduev in wandb/wandb#9962)

Removed

  • Removed support for disabling the service process. The x_disable_service/_disable_service setting and the WANDB_DISABLE_SERVICE/WANDB_X_DISABLE_SERVICE environment variable have been deprecated and will now raise an error if used (@​kptkin in wandb/wandb#9829)
  • Removed ability to use wandb.docker after only importing wandb (@​timoffex in wandb/wandb#9941)
    • wandb.docker is not part of wandb's public interface and is subject to breaking changes. Please do not use it.
  • Removed no-op sync argument from wandb.Run::log function (@​kptkin in wandb/wandb#9940)
  • Removed deprecated wandb.sdk.wandb_run.Run.mode property (@​dmitryduev in wandb/wandb#9958)
  • Removed deprecated wandb.sdk.wandb_run.Run::join method (@​dmitryduev in wandb/wandb#9960)

Deprecated

  • The start_method setting is deprecated and has no effect; it is safely ignored (@​kptkin in wandb/wandb#9837)
  • The property Artifact.use_as and parameter use_as for run.use_artifact() are deprecated since these have not been in use for W&B Launch (@​ibindlish in wandb/wandb#9760)

... (truncated)

Changelog

Sourced from wandb's changelog.

[0.20.1] - 2025-06-04

Fixed

[0.20.0] - 2025-06-03

  • wandb.Table: Added new constructor param, log_mode, with options "IMMUTABLE" and "MUTABLE". IMMUTABLE log mode (default) is existing behavior that only allows a table to be logged once. MUTABLE log mode allows the table to be logged again if it has been mutated. (@​domphan-wandb in wandb/wandb#9758)
  • wandb.Table: Added a new log_mode, "INCREMENTAL", which logs newly added table data incrementally. (@​domphan-wandb in wandb/wandb#9810)

Notable Changes

This version removes the ability to disable the service process. This is a breaking change.

Added

  • Added merge parameter to Artifact.add_dir to allow overwrite of previously-added artifact files (@​pingleiwandb in wandb/wandb#9907)
  • Support for pytorch.tensor for masks and boxes parameters when creating a wandb.Image object. (@​jacobromero in wandb/wandb#9802)
  • sync_tensorboard now supports syncing tfevents files stored in S3, GCS and Azure (@​timoffex in wandb/wandb#9849)
    • GCS paths use the format gs://bucket/path/to/log/dir and rely on application-default credentials, which can be configured using gcloud auth application-default login
    • S3 paths use the format s3://bucket/path/to/log/dir and rely on the default credentials set through aws configure
    • Azure paths use the format az://account/container/path/to/log/dir and the az login credentials, but also require the AZURE_STORAGE_ACCOUNT and AZURE_STORAGE_KEY environment variables to be set. Some other environment variables are supported as well, see here.
  • Added support for initializing some Media objects with pathlib.Path (@​jacobromero in wandb/wandb#9692)
  • New setting x_skip_transaction_log that allows to skip the transaction log. Note: Should be used with caution, as it removes the gurantees about recoverability. (@​kptkin in wandb/wandb#9064)
  • normalize parameter to wandb.Image initialization to normalize pixel values for Images initialized with a numpy array or pytorch tensor. (@​jacobromero in wandb/wandb#9883)

Changed

  • Various APIs now raise TypeError instead of ValueError or other generic errors when given an argument of the wrong type. (@​timoffex in wandb/wandb#9902)
  • Various Artifacts and Automations APIs now raise CommError instead of ValueError upon encountering server errors, so as to surface the server error message. (@​ibindlish in wandb/wandb#9933)
  • wandb.sdk.wandb_run.Run::save method now requires the glob_str argument (@​dmitryduev in wandb/wandb#9962)

Removed

  • Removed support for disabling the service process. The x_disable_service/_disable_service setting and the WANDB_DISABLE_SERVICE/WANDB_X_DISABLE_SERVICE environment variable have been deprecated and will now raise an error if used (@​kptkin in wandb/wandb#9829)
  • Removed ability to use wandb.docker after only importing wandb (@​timoffex in wandb/wandb#9941)
    • wandb.docker is not part of wandb's public interface and is subject to breaking changes. Please do not use it.
  • Removed no-op sync argument from wandb.Run::log function (@​kptkin in wandb/wandb#9940)
  • Removed deprecated wandb.sdk.wandb_run.Run.mode property (@​dmitryduev in wandb/wandb#9958)
  • Removed deprecated wandb.sdk.wandb_run.Run::join method (@​dmitryduev in wandb/wandb#9960)

Deprecated

  • The start_method setting is deprecated and has no effect; it is safely ignored (@​kptkin in wandb/wandb#9837)
  • The property Artifact.use_as and parameter use_as for run.use_artifact() are deprecated since these have not been in use for W&B Launch (@​ibindlish in wandb/wandb#9760)

Fixed

  • Calling wandb.teardown() in a child of a process that called wandb.setup() no longer raises WandbServiceNotOwnedError (@​timoffex in wandb/wandb#9875)

... (truncated)

Commits
  • ac7f2ca Bump version and update CHANGELOG for release 0.20.1
  • 1f3c567 fix: restore original image normalization behavior (#9982)
  • c0d9bf2 Bump version and update CHANGELOG for release 0.20.0
  • 2540cbb chore: update windows runner to 2022 in release action (#9972)
  • d65d947 chore: do not capture import telemetry on asyncio (#9970)
  • 9484692 chore: make codecov ignore tools and tests (#9966)
  • cf37d37 chore: wandb.sdk.wandb_run.Run.save method requires glob_str argument (#9962)
  • 6bf9ef0 chore: remove deprecated Run::join method (#9960)
  • 6f16651 chore: remove deprecated Run.mode property (#9958)
  • 5d97a75 chore: bump tokio from 1.43.0 to 1.45.0 in /experimental/rust-sdk (#9885)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [wandb](https://github.com/wandb/wandb) from 0.19.10 to 0.20.1.
- [Release notes](https://github.com/wandb/wandb/releases)
- [Changelog](https://github.com/wandb/wandb/blob/main/CHANGELOG.md)
- [Commits](wandb/wandb@v0.19.10...v0.20.1)

---
updated-dependencies:
- dependency-name: wandb
  dependency-version: 0.20.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 23, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 7, 2025

Superseded by #74.

@dependabot dependabot bot closed this Jul 7, 2025
@dependabot dependabot bot deleted the dependabot/pip/wandb-0.20.1 branch July 7, 2025 19:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants