Skip to content

Conversation

@dmitry-tokarev-nv
Copy link
Contributor

@dmitry-tokarev-nv dmitry-tokarev-nv commented Jul 30, 2025

Overview:

Version bump to 0.4.0
Updated Rust.lock files too

Details:

Where should the reviewer start?

Related Issues: (use one of the action keywords Closes / Fixes / Resolves / Relates to)

  • closes GitHub issue: #xxx

Summary by CodeRabbit

  • Chores
    • Updated version numbers across the project from 0.3.2 to 0.4.0, including application packages, dependencies, and documentation.
    • Refreshed Helm chart and Python package metadata to reflect the new version.
    • Updated documentation to show the latest supported package versions.

@copy-pr-bot
Copy link

copy-pr-bot bot commented Jul 30, 2025

This pull request requires additional validation before any workflows can run on NVIDIA's runners.

Pull request vetters can view their responsibilities here.

Contributors can view more details about this message here.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jul 30, 2025

Walkthrough

This change updates version numbers from 0.3.2 to 0.4.0 across multiple project files, including Cargo.toml manifests, Helm chart metadata, Python package specifications, and documentation. No changes were made to code, dependencies, or configuration other than incrementing version metadata.

Changes

Cohort / File(s) Change Summary
Rust Workspace Version Bumps
Cargo.toml, lib/runtime/examples/Cargo.toml
Updated [workspace.package] version from 0.3.2 to 0.4.0. Updated local workspace dependency versions.
Python Binding Version Bump
lib/bindings/python/Cargo.toml
Updated dynamo-py3 package version from 0.3.2 to 0.4.0.
Python Project Version Bump
pyproject.toml
Updated project and ai-dynamo-runtime dependency versions from 0.3.2 to 0.4.0.
Helm Chart Version Bump
deploy/helm/chart/Chart.yaml
Updated chart and app versions from 0.3.2 to 0.4.0.
Documentation Version Bump
docs/support_matrix.md
Updated documented versions: ai-dynamo, ai-dynamo-runtime (0.3.2 → 0.4.0), and NIXL (0.4.0 → 0.5.0).

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Poem

Up the version hill we hop,
From three-two to four-oh, non-stop!
Charts and docs, all in line,
Rust and Python—looking fine.
With every bump, the project grows,
🐇 Version winds, the rabbit knows!
— Release day, let’s strike a pose!

Note

⚡️ Unit Test Generation is now available in beta!

Learn more here, or try it out under "Finishing Touches" below.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (2)
lib/bindings/python/Cargo.toml (1)

22-22: Optional: avoid hard-coding the version in workspace path deps

Because dynamo-llm and dynamo-runtime are referenced via path, Cargo already pins them to the current workspace sources. Specifying an explicit version = "0.4.0" adds duplication that must be maintained on every future bump.

-dynamo-llm = { path = "../../llm" }
-dynamo-runtime = { path = "../../runtime" }
+dynamo-llm = { path = "../../llm", workspace = true }
+dynamo-runtime = { path = "../../runtime", workspace = true }

This uses the workspace = true key (stable since 1.65) so the crates automatically adopt the workspace package version.

Cargo.toml (1)

18-18: Consider workspace = true for local crate deps

dynamo-runtime, dynamo-llm, and dynamo-tokens are all workspace members. Instead of duplicating the version string here, you can rely on the workspace-wide version with:

-dynamo-runtime = { path = "lib/runtime", version = "0.4.0" }
-dynamo-llm     = { path = "lib/llm",     version = "0.4.0" }
-dynamo-tokens  = { path = "lib/tokens",  version = "0.4.0" }
+dynamo-runtime = { path = "lib/runtime", workspace = true }
+dynamo-llm     = { path = "lib/llm",     workspace = true }
+dynamo-tokens  = { path = "lib/tokens",  workspace = true }

Reduces future churn and prevents accidental skew.

Also applies to: 29-31

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 30d4612 and 1745f46.

⛔ Files ignored due to path filters (3)
  • Cargo.lock is excluded by !**/*.lock
  • lib/bindings/python/Cargo.lock is excluded by !**/*.lock
  • lib/runtime/examples/Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (6)
  • Cargo.toml (2 hunks)
  • deploy/helm/chart/Chart.yaml (1 hunks)
  • docs/support_matrix.md (1 hunks)
  • lib/bindings/python/Cargo.toml (1 hunks)
  • lib/runtime/examples/Cargo.toml (1 hunks)
  • pyproject.toml (2 hunks)
🧰 Additional context used
🧠 Learnings (4)
lib/bindings/python/Cargo.toml (1)

Learnt from: biswapanda
PR: #1412
File: lib/bindings/python/src/dynamo/runtime/logging.py:100-100
Timestamp: 2025-06-06T21:48:35.214Z
Learning: In the Dynamo codebase, BentoML has been completely removed from all executable code, with only documentation and attribution references remaining. The error_loggers configuration in lib/bindings/python/src/dynamo/runtime/logging.py should not include "bentoml" since those modules no longer exist.

Cargo.toml (2)

Learnt from: kthui
PR: #1424
File: lib/runtime/src/pipeline/network/egress/push_router.rs:204-209
Timestamp: 2025-06-13T22:07:24.843Z
Learning: The codebase uses async-nats version 0.40, not the older nats crate. Error handling should use async_nats::error::Error variants, not nats::Error variants.

Learnt from: nnshah1
PR: #1444
File: tests/fault_tolerance/utils/metrics.py:30-32
Timestamp: 2025-07-01T13:55:03.940Z
Learning: The @dynamo_worker() decorator in the dynamo codebase returns a wrapper that automatically injects the runtime parameter before calling the wrapped function. This means callers only need to provide the non-runtime parameters, while the decorator handles injecting the runtime argument automatically. For example, a function with signature async def get_metrics(runtime, log_dir) decorated with @dynamo_worker() can be called as get_metrics(log_dir) because the decorator wrapper injects the runtime parameter.

lib/runtime/examples/Cargo.toml (1)

Learnt from: kthui
PR: #1424
File: lib/runtime/src/pipeline/network/egress/push_router.rs:204-209
Timestamp: 2025-06-13T22:07:24.843Z
Learning: The codebase uses async-nats version 0.40, not the older nats crate. Error handling should use async_nats::error::Error variants, not nats::Error variants.

deploy/helm/chart/Chart.yaml (1)

Learnt from: julienmancuso
PR: #2012
File: deploy/cloud/helm/crds/templates/nvidia.com_dynamographdeployments.yaml:1233-1235
Timestamp: 2025-07-18T16:04:47.465Z
Learning: The stopSignal field in Kubernetes CRDs like DynamoGraphDeployment and DynamoComponentDeployment is autogenerated by controller-gen when upgrading Kubernetes library versions, and represents expected upstream API changes rather than manual code that needs custom validation.

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: pre-merge-rust (.)
  • GitHub Check: pre-merge-rust (lib/bindings/python)
  • GitHub Check: pre-merge-rust (lib/runtime/examples)
  • GitHub Check: Build and Test - vllm
🔇 Additional comments (3)
pyproject.toml (1)

18-18: Ensure 0.4.0 artifacts are published to PyPI before merge

Installs will break in CI and for users if either ai-dynamo itself or the pinned runtime wheel (ai-dynamo-runtime==0.4.0) is not available on PyPI at merge time.

Also applies to: 28-28

lib/runtime/examples/Cargo.toml (1)

25-25: LGTM – version bump is consistent with workspace

No concerns on this change.

deploy/helm/chart/Chart.yaml (1)

20-21: LGTM – chart and appVersion stay in sync

Chart metadata matches the project version; nothing else to flag.

@dmitry-tokarev-nv dmitry-tokarev-nv changed the title Version bump to 0.4.0 chore: Version bump to 0.4.0 Jul 30, 2025
@github-actions github-actions bot added the chore label Jul 30, 2025
@dmitry-tokarev-nv dmitry-tokarev-nv enabled auto-merge (squash) July 30, 2025 01:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants