-
Notifications
You must be signed in to change notification settings - Fork 979
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
Replacing Net::HTTP::Persistent with faraday-net_http_persistent #1250
Replacing Net::HTTP::Persistent with faraday-net_http_persistent #1250
Conversation
I need to remove |
Now that PR has been merged ✨ - thanks a lot, @MikeRogers0! |
@iMacTia What is the release procedure for https://github.com/lostisland/faraday-net_http_persistent/blob/master/.github/workflows/publish.yml - Do I just push up a tag & add the release notes? |
@MikeRogers0 I think the Released event is created in the GitHub API events universe when hitting the "GitHub Releases" create button. A big green one, in the UI. Creating a git tag locally and pushing it wouldn't create that event, I assume. |
@MikeRogers0 As @olleolleolle said, there's no need to create a tag locally and pushing it, just use the GitHub UI to release a new version (remember to bump the VERSION file first, I always forget!) and that will automatically create a tag for you and trigger the Action to deploy on Rubygems 👍 |
👀 Ruby 3.0 is failing due to:
I will update the requirements in the |
@MikeRogers0 actually, I think we should remove I think the problem you're having may be with @grosser's adding support for Ruby 3 to |
Woo @iMacTia I think that worked! Are you able to give it a sanity check when you have some free time? Thank you btw! It's been pretty fun diving through this code :D |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -24,9 +24,6 @@ group :test, :development do | |||
gem 'excon', '>= 0.27.4' | |||
gem 'httpclient', '>= 2.2' | |||
gem 'multipart-parser' | |||
# TODO: remove this once v4 is released | |||
options = (RUBY_VERSION.start_with?('3') ? { github: 'grosser/net-http-persistent', branch: 'grosser/spec' } : {}) | |||
gem 'net-http-persistent', '>= 3.0', **options |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So very nice to move this out of the way!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you so much @MikeRogers0 🙏!
One more out of the way 🥳🎉🍾!
Description
Using https://github.com/lostisland/faraday-net_http_persistent over storing the code with in this repo :)
Part of v2 Wishlist: #953
Todos
List any remaining work that needs to be done, i.e:
Additional Notes
Optional section