-
Notifications
You must be signed in to change notification settings - Fork 255
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
Add ostruct dependency to fix warning on Ruby 3.3.5+ #542
Conversation
I also get (sshkit 1.23.0):
There was an overview what is planned to change in terms of stdlib/bundled gems in upcoming Ruby versions, but I cannot find it :( |
@tisba what version of net-ssh are you using? The only place I can find where sshkit is doing sshkit/lib/sshkit/backends/netssh.rb Lines 68 to 73 in 892d5bf
|
net-ssh (7.2.3) But sorry for the noise, I'm pretty sure it's net-ssh's fault. They don't have the |
As of Ruby 3.3.5, here is the list of gems that will no longer be built into future Ruby versions: https://github.com/ruby/ruby/blob/ef084cc8f4958c1b6e4ead99136631bef6d8ddba/lib/bundled_gems.rb#L5-L35 E.g. "ostruct" => "3.5.0", means that
|
Can a new version be released? :) plz thx |
Already has been released as 1.23.1, see https://rubygems.org/gems/sshkit/versions/1.23.1 |
Fixes the following warning on Ruby 3.3.5+ and Ruby 3.4:
Closes #541