-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Upgrade Ruby to 3.4.4 #11681
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
JamieMagee
merged 22 commits into
dependabot:main
from
chrisyuska:hotfix/ruby-3.4.2-support
Jun 4, 2025
Merged
Upgrade Ruby to 3.4.4 #11681
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
dd53670
Upgrade Ruby to 3.4.2
chrisyuska a93d010
fix: Deprecation warnings and test fixes
chrisyuska 6a192bf
fix: Dart test flake
chrisyuska ec7f8e8
fix: Failing uv test
chrisyuska eda00ca
Merge branch 'main' into hotfix/ruby-3.4.2-support
chrisyuska 7a3e2ea
fix failing tests
chrisyuska bd3b4df
Merge branch 'main' into hotfix/ruby-3.4.2-support
chrisyuska b90802a
Merge branch 'main' into hotfix/ruby-3.4.2-support
abdulapopoola d4a4f9d
Merge branch 'main' into hotfix/ruby-3.4.2-support
chrisyuska edac21e
Bump Ruby to 3.4.4
chrisyuska f75b61e
Merge branch 'main' into hotfix/ruby-3.4.2-support
chrisyuska f36492b
Merge branch 'main' into hotfix/ruby-3.4.2-support
chrisyuska d0bb7bf
Merge branch 'main' into hotfix/ruby-3.4.2-support
chrisyuska e8a8897
Add strict typing to RubyRequirementSetter
chrisyuska aa57f28
Merge branch 'main' into hotfix/ruby-3.4.2-support
chrisyuska 07ae5bf
Revert Ruby requirement to >= 3.3.0 in gemspec
chrisyuska faaca7b
Merge branch 'main' into hotfix/ruby-3.4.2-support
JamieMagee a9fb9b6
Merge branch 'main' into hotfix/ruby-3.4.2-support
JamieMagee 5fbcef8
Merge branch 'main' into hotfix/ruby-3.4.2-support
JamieMagee e5de6a5
Merge branch 'main' into hotfix/ruby-3.4.2-support
markhallen 3e1340d
Merge branch 'main' into hotfix/ruby-3.4.2-support
JamieMagee d8fbbd8
Merge branch 'main' into hotfix/ruby-3.4.2-support
JamieMagee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 3.3.6 | ||
| 3.4.4 |
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
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
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
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
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
6 changes: 6 additions & 0 deletions
6
bundler/spec/fixtures/projects/bundler2/gemfile_require_ruby_3_4/Gemfile
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # frozen_string_literal: true | ||
|
|
||
| source "https://rubygems.org" | ||
|
|
||
| gem "business", "~> 1.4.0" | ||
| gem "statesman", "~> 1.2.0" |
15 changes: 15 additions & 0 deletions
15
bundler/spec/fixtures/projects/bundler2/gemfile_require_ruby_3_4/Gemfile.lock
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| GEM | ||
| remote: https://rubygems.org/ | ||
| specs: | ||
| business (1.4.0) | ||
| statesman (1.2.1) | ||
|
|
||
| PLATFORMS | ||
| ruby | ||
|
|
||
| DEPENDENCIES | ||
| business (~> 1.4.0) | ||
| statesman (~> 1.2.0) | ||
|
|
||
| BUNDLED WITH | ||
| 2.6.9 |
22 changes: 22 additions & 0 deletions
22
bundler/spec/fixtures/projects/bundler2/gemfile_require_ruby_3_4/example.gemspec
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| # frozen_string_literal: true | ||
|
|
||
| Gem::Specification.new do |spec| | ||
| spec.name = "example" | ||
| spec.version = "0.9.3" | ||
| spec.summary = "Automated dependency management" | ||
| spec.description = "Core logic for updating a GitHub repos dependencies" | ||
|
|
||
| spec.author = "Dependabot" | ||
| spec.email = "[email protected]" | ||
| spec.homepage = "https://github.com/hmarr/example" | ||
| spec.license = "MIT" | ||
|
|
||
| spec.require_path = "lib" | ||
| spec.files = Dir["CHANGELOG.md", "LICENSE.txt", "README.md", | ||
| "lib/**/*", "helpers/**/*"] | ||
|
|
||
| spec.required_ruby_version = ">= 3.4.4" | ||
| spec.required_rubygems_version = ">= 3.6.9" | ||
|
|
||
| spec.add_dependency 'business', '~> 1.0' | ||
| end |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.