Jens-G opened a new pull request, #3884: URL: https://github.com/apache/thrift/pull/3884
The version bump to 0.26.0 (451efc7a7) rewrote every `0.25.0` in `test/rb/Gemfile.lock`, and that included the pin of the third-party `bake` gem. bake has no 0.26.0 release, so `bundle install` in `test/rb` fails: ``` Your bundle is locked to bake (0.26.0) from rubygems repository https://rubygems.org/ or installed locally, but that version can no longer be found in that source. That means the author of bake (0.26.0) has removed it. ``` That runs in the setup step of every `cross-test` job. Since the bump, all 24 jobs of the matrix have been red, on master and on every PR based on it. This puts the pin back to 0.25.0. I checked it with Ruby 4.0.7, running `bundle install` in deployment mode with `BUNDLE_WITH=falcon_http_server`, as the cross-test job runs it. Before the change it fails with the error above; after it, it completes. The cause is that `build/veralign.sh` replaces the version string throughout the lockfile. That gets fixed separately. `release/0.25.0` is not affected, because its lockfile still has `bake (0.25.0)`. 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
