Update version to 0.7.0-dev6#3358
Conversation
📝 WalkthroughWalkthroughThis PR bumps the Infinity SDK version from 0.7.0.dev5 to 0.7.0.dev6 across documentation, installation instructions, and version constants in Python, C++, and Go client implementations. ChangesVersion Bump to 0.7.0.dev6
Estimated Code Review Effort🎯 1 (Trivial) | ⏱️ ~5 minutes Poem
🚥 Pre-merge checks | ✅ 3 | ❌ 2❌ Failed checks (1 warning, 1 inconclusive)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 golangci-lint (2.12.1)level=error msg="[linters_context] typechecking error: pattern ./...: directory prefix . does not contain main module or its selected dependencies" 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. Comment |
There was a problem hiding this comment.
🧹 Nitpick comments (1)
client/cpp/infinity_client.cpp (1)
28-28: ⚡ Quick winCentralize the client-version index to avoid future drift.
36is duplicated across multiple components. Consider sourcing this from a shared generated constant (or version manifest) so future bumps don’t desync client/server/docs.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@client/cpp/infinity_client.cpp` at line 28, The literal client version index passed to request.__set_client_version(36) must be replaced with a shared generated constant to avoid drift; create or use a central constant (e.g., CLIENT_VERSION_INDEX or CLIENT_VERSION) in a generated header/manifest and include it in this translation unit, then call request.__set_client_version(CLIENT_VERSION_INDEX) instead of the hard-coded 36; ensure the constant’s name matches other components’ usage so future bumps update a single source of truth.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Nitpick comments:
In `@client/cpp/infinity_client.cpp`:
- Line 28: The literal client version index passed to
request.__set_client_version(36) must be replaced with a shared generated
constant to avoid drift; create or use a central constant (e.g.,
CLIENT_VERSION_INDEX or CLIENT_VERSION) in a generated header/manifest and
include it in this translation unit, then call
request.__set_client_version(CLIENT_VERSION_INDEX) instead of the hard-coded 36;
ensure the constant’s name matches other components’ usage so future bumps
update a single source of truth.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 3133d441-c26e-4f01-94af-ef125beae413
⛔ Files ignored due to path filters (1)
uv.lockis excluded by!**/*.lock
📒 Files selected for processing (13)
README.mdbenchmark/remote_infinity/remote_query_benchmark.cppclient/cpp/infinity_client.cppdocs/getstarted/build_from_source.mdxdocs/getstarted/deploy_infinity_server.mdxdocs/getstarted/quickstart.mdxexample/README.mdgo/infinity.gopyproject.tomlpython/infinity_sdk/README.mdpython/infinity_sdk/infinity/remote_thrift/client.pysrc/network/infinity_thrift_service.cppmsrc/network/infinity_thrift_service_impl.cpp
What problem does this PR solve?
As title
Type of change