chore(deps): pin flow360-schema to 25.10.1b1#2001
Merged
benflexcompute merged 1 commit intomainfrom Apr 18, 2026
Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 8d6fec3. Configure here.
8d6fec3 to
e44cdb2
Compare
e44cdb2 to
36c3b65
Compare
Move from the tilde range (~0.1.24) to an exact pin so that the resolved schema package version is deterministic for a given commit hash, regardless of what CodeArtifact publishes later. Matches the schema repo's calendar-based version scheme introduced in flexcompute/flex#11409. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
36c3b65 to
b9e0b1a
Compare
Contributor
angranl-flex
approved these changes
Apr 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Pin `flow360-schema` to an exact version so the resolved dependency is deterministic for every commit hash.
Why this matters
With `~0.1.24` the resolved version is whatever CodeArtifact happens to have at install time. That makes a given compute commit hash nondeterministic — the solver + client combination we ran yesterday may differ from what the same hash installs tomorrow. Exact pinning eliminates that drift.
Follow-up
A separate PR on `flexcompute/compute` will add a CI check that enforces this pin style (no `~`/`^`/`>=`/path dependencies). It will also bump the Flow360 submodule pointer to this PR's merge commit.
Test Plan
🤖 Generated with Claude Code
Note
Medium Risk
Upgrades and exactly pins the
flow360-schemadependency, which can change validation/serialization behavior across the client even though code changes are minimal.Overview
Pins
flow360-schemato the exact version25.10.1b1(instead of a compatible-range~0.1.x) and updatespoetry.lockaccordingly to make dependency resolution deterministic.Adjusts a simulation service test to reference the schema package’s
__version__(_SCHEMA_VERSION) when populating theversionfield.Reviewed by Cursor Bugbot for commit b9e0b1a. Bugbot is set up for automated code reviews on this repo. Configure here.