Skip to content

fix:(deps): update wandb requirement from <0.19.11,>=0.17.4 to >=0.17.4,<0.19.12 #482

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 11, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 11, 2025

Updates the requirements on wandb to permit the latest version.

Release notes

Sourced from wandb's releases.

v0.19.11

What's Changed

Added

  • Added creation, deletion, and updating of registries in the SDK. (@​estellazx in wandb/wandb#9453)
  • artifact.is_link property to artifacts to determine if an artifact is a link artifact (such as in the Registry) or source artifact. (@​estellazx in wandb/wandb#9764)
  • artifact.linked_artifacts to fetch all the linked artifacts to a source artifact and artifact.source_artifact to fetch the source artifact of a linked artifact. (@​estellazx in wandb/wandb#9789)
  • run.link_artifact(), artifact.link(), and run.link_model() all return the linked artifact upon linking (@​estellazx in wandb/wandb#9763)
  • Multipart download for artifact file larger than 2GB, user can control it directly using artifact.download(multipart=True). (@​pingleiwandb in wandb/wandb#9738)
  • Project.id property to get the project ID on a wandb.public.Project (@​tonyyli-wandb in wandb/wandb#9194).
  • New public API for W&B Automations (@​tonyyli-wandb in wandb/wandb#9693, wandb/wandb#8935, wandb/wandb#9194, wandb/wandb#9197, wandb/wandb#8896, wandb/wandb#9246)
    • New submodules and classes in wandb.automations.* to support programmatically managing W&B Automations.
    • Api.integrations(), Api.slack_integrations(), Api.webhook_integrations() to fetch a team's existing Slack or webhook integrations.
    • Api.create_automation(), Api.automation()/Api.automations(), Api.update_automation(), Api.delete_automation() to create, fetch, edit, and delete Automations.
  • Create and edit automations triggered on RUN_METRIC_CHANGE events, i.e. on changes in run metric values (absolute or relative deltas). (@​tonyyli-wandb in wandb/wandb#9775)
  • Ability to collect profiling metrics for Nvidia GPUs using DCGM. To enable, set the WANDB_ENABLE_DCGM_PROFILING environment variable to true. Requires the nvidia-dcgm service to be running on the machine. Enabling this feature can lead to increased resource usage. (@​dmitryduev in wandb/wandb#9780)

Fixed

Changelog

Sourced from wandb's changelog.

[0.19.11] - 2025-05-07

Added

  • Added creation, deletion, and updating of registries in the SDK. (@​estellazx in wandb/wandb#9453)
  • artifact.is_link property to artifacts to determine if an artifact is a link artifact (such as in the Registry) or source artifact. (@​estellazx in wandb/wandb#9764)
  • artifact.linked_artifacts to fetch all the linked artifacts to a source artifact and artifact.source_artifact to fetch the source artifact of a linked artifact. (@​estellazx in wandb/wandb#9789)
  • run.link_artifact(), artifact.link(), and run.link_model() all return the linked artifact upon linking (@​estellazx in wandb/wandb#9763)
  • Multipart download for artifact file larger than 2GB, user can control it directly using artifact.download(multipart=True). (@​pingleiwandb in wandb/wandb#9738)
  • Project.id property to get the project ID on a wandb.public.Project (@​tonyyli-wandb in wandb/wandb#9194).
  • New public API for W&B Automations (@​tonyyli-wandb in wandb/wandb#9693, wandb/wandb#8935, wandb/wandb#9194, wandb/wandb#9197, wandb/wandb#8896, wandb/wandb#9246)
    • New submodules and classes in wandb.automations.* to support programmatically managing W&B Automations.
    • Api.integrations(), Api.slack_integrations(), Api.webhook_integrations() to fetch a team's existing Slack or webhook integrations.
    • Api.create_automation(), Api.automation()/Api.automations(), Api.update_automation(), Api.delete_automation() to create, fetch, edit, and delete Automations.
  • Create and edit automations triggered on RUN_METRIC_CHANGE events, i.e. on changes in run metric values (absolute or relative deltas). (@​tonyyli-wandb in wandb/wandb#9775)
  • Ability to collect profiling metrics for Nvidia GPUs using DCGM. To enable, set the WANDB_ENABLE_DCGM_PROFILING environment variable to true. Requires the nvidia-dcgm service to be running on the machine. Enabling this feature can lead to increased resource usage. (@​dmitryduev in wandb/wandb#9780)

Fixed

[0.19.10] - 2025-04-22

Added

  • The new reinit="create_new" setting causes wandb.init() to create a new run even if other runs are active, without finishing the other runs (in contrast to reinit="finish_previous"). This will eventually become the default (@​timoffex in wandb/wandb#9562)
  • Added Artifact.history_step to return the nearest run step at which history metrics were logged for the artifact's source run (@​ibindlish in wandb/wandb#9732)
  • Added data_is_not_path flag to skip file checks when initializing wandb.Html with a sting that points to a file.

Changed

  • Artifact.download() no longer raises an error when using WANDB_MODE=offline or when an offline run exists (@​timoffex in wandb/wandb#9695)

Removed

  • Dropped the -q / --quiet argument to the wandb magic in IPython / Jupyter; use the quiet run setting instead (@​timoffex in wandb/wandb#9705)

Deprecated

  • The following wandb.Run methods are deprecated in favor of properties and will be removed in a future release (@​kptkin in wandb/wandb#8925):
    • run.project_name() is deprecated in favor of run.project
    • run.get_url() method is deprecated in favor of run.url
    • run.get_project_url() method is deprecated in favor of run.project_url

... (truncated)

Commits
  • 2a05890 Bump version and update CHANGELOG for release 0.19.11
  • e27fae6 chore: custom [email protected] for building core for MacOS 10 (#9824)
  • e0a7dbf chore(artifacts): make sure is_sequence is set when loading artifact collecti...
  • dd40893 refactor: create internal/runmetadata (#9814)
  • b33bb24 fix: object has no attribute when deleting file for a run (#9748)
  • 7354d82 fix: permission denied error when trying to create root_dir (#9781)
  • 1551f94 chore(artifacts): fix renaming for registry names (#9809)
  • d9cc845 feat(artifacts): add properties linked_artifacts and source_artifact to a...
  • 40f81d8 refactor: improve gqlmock error messages (#9803)
  • 52dea9d fix: avoid outputting footer in silent mode (#9811)
  • Additional commits viewable in compare view

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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels May 11, 2025
@github-actions github-actions bot enabled auto-merge May 11, 2025 23:23
Updates the requirements on [wandb](https://github.com/wandb/wandb) to permit the latest version.
- [Release notes](https://github.com/wandb/wandb/releases)
- [Changelog](https://github.com/wandb/wandb/blob/main/CHANGELOG.md)
- [Commits](wandb/wandb@v0.17.4...v0.19.11)

---
updated-dependencies:
- dependency-name: wandb
  dependency-version: 0.19.11
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/wandb-gte-0.17.4-and-lt-0.19.12 branch from 8262a38 to 384057b Compare May 11, 2025 23:25
@github-actions github-actions bot merged commit 36de303 into main May 11, 2025
4 checks passed
@github-actions github-actions bot deleted the dependabot/pip/wandb-gte-0.17.4-and-lt-0.19.12 branch May 11, 2025 23:26
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