feat(ci): add IR version consistency validation and fix mismatches#11650
Merged
fern-support merged 2 commits intomainfrom Jan 22, 2026
Merged
feat(ci): add IR version consistency validation and fix mismatches#11650fern-support merged 2 commits intomainfrom
fern-support merged 2 commits intomainfrom
Conversation
…sions.yml Co-Authored-By: judah@buildwithfern.com <jsklan.development@gmail.com>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Contributor
🌱 Seed Test SelectorSelect languages to run seed tests for:
How to use: Click the ⋯ menu above → "Edit" → check the boxes you want → click "Update comment". Tests will run automatically and snapshots will be committed to this PR. |
- Add validate-ir-version-consistency.sh script to check seed.yml vs versions.yml - Skip deprecated ruby v1 generators (ruby-model, ruby-sdk) in validation - Fix seed.yml files where version was lower than latest release: * fastapi: 60 → 61 * go-fiber: 58 → 60 * pydantic-v2: 60 → 62 * pydantic: 60 → 62 * rust-sdk: 61 → 62 - Publish new releases to fix version mismatches: * go-sdk v1.22.9 with irVersion 61 * rust-model v0.1.2 with irVersion 61 - Add GitHub Actions workflow to run validation in CI Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
tjb9dc
approved these changes
Jan 22, 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.
Description
Adds CI validation to ensure irVersion consistency between seed.yml and versions.yml files, and fixes all existing mismatches found in the codebase.
The original validation script from Devin was simplified from 131 to 61 lines, removing verbose formatting and following the project's patterns of keeping validation logic simple and focused.
Changes Made
scripts/validate-ir-version-consistency.shwith simplified logic for checking irVersion consistencyTesting