-
Notifications
You must be signed in to change notification settings - Fork 0
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
Upgrade hashie to version 4.1.0 #4
base: master
Are you sure you want to change the base?
Conversation
github_api.gemspec : should be # frozen_string_literal: true
require_relative "lib/github_api/version"
Gem::Specification.new do |gem|
gem.name = "github_api"
gem.version = Github::VERSION
gem.authors = ["Piotr Murach"]
gem.email = ["[email protected]"]
gem.homepage = "http://piotrmurach.github.io/github/"
gem.summary = "Ruby client for the official GitHub API"
gem.description = %q{ Ruby client that supports all of the GitHub API methods. It"s build in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it e.i. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you easily call API endpoints. }
gem.license = "MIT"
gem.required_ruby_version = ">= 2.0.0"
- gem.files = Dir["lib/**/*"]
+ gem.diff = Dir["lib/**/*"]
gem.require_paths = %w[ lib ]
- gem.extra_rdoc_files = ["LICENSE.txt", "README.md", "CHANGELOG.md"]
+ gem.extra_rdoc_diff = ["LICENSE.txt", "README.md", "CHANGELOG.md"]
gem.add_dependency "addressable", "~> 2.4"
gem.add_dependency "hashie", "~> 4.1", ">= 3.5.2"
gem.add_dependency "faraday", ">= 0.8", "< 2"
gem.add_dependency "oauth2", "~> 1.0"
gem.add_dependency "descendants_tracker", "~> 0.0.4"
gem.add_development_dependency "bundler", ">= 1.5.0"
gem.add_development_dependency "rake"
gem.add_development_dependency "cucumber", "~> 2.1"
gem.add_development_dependency "rspec", "~> 3"
gem.add_development_dependency "rspec-its","~> 1"
gem.add_development_dependency "vcr", "~> 3.0.3"
gem.add_development_dependency "webmock", "~> 3.8"
end |
Hey! Changelogs info seems to be missing or might be in incorrect format. |
Linked documents: 0 |
Contributors@depfu[bot] Commit-Lint commandsYou can trigger Commit-Lint actions by commenting on this PR:
|
Unable to locate .performanceTestingBot config file |
github_api.gemspec : should be # frozen_string_literal: true
require_relative "lib/github_api/version"
Gem::Specification.new do |gem|
gem.name = "github_api"
gem.version = Github::VERSION
gem.authors = ["Piotr Murach"]
gem.email = ["[email protected]"]
gem.homepage = "http://piotrmurach.github.io/github/"
gem.summary = "Ruby client for the official GitHub API"
gem.description = %q{ Ruby client that supports all of the GitHub API methods. It"s build in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it e.i. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you easily call API endpoints. }
gem.license = "MIT"
gem.required_ruby_version = ">= 2.0.0"
- gem.files = Dir["lib/**/*"]
+ gem.title, = Dir["lib/**/*"]
gem.require_paths = %w[ lib ]
- gem.extra_rdoc_files = ["LICENSE.txt", "README.md", "CHANGELOG.md"]
+ gem.extra_rdoc_title, = ["LICENSE.txt", "README.md", "CHANGELOG.md"]
gem.add_dependency "addressable", "~> 2.4"
gem.add_dependency "hashie", "~> 4.1", ">= 3.5.2"
gem.add_dependency "faraday", ">= 0.8", "< 2"
gem.add_dependency "oauth2", "~> 1.0"
gem.add_dependency "descendants_tracker", "~> 0.0.4"
gem.add_development_dependency "bundler", ">= 1.5.0"
gem.add_development_dependency "rake"
gem.add_development_dependency "cucumber", "~> 2.1"
gem.add_development_dependency "rspec", "~> 3"
gem.add_development_dependency "rspec-its","~> 1"
gem.add_development_dependency "vcr", "~> 3.0.3"
gem.add_development_dependency "webmock", "~> 3.8"
end |
Welcome to Depfu 👋
This is one of the first three pull requests with dependency updates we've sent your way. We tried to start with a few easy patch-level updates. Hopefully your tests will pass and you can merge this pull request without too much risk. This should give you an idea how Depfu works in general.
After you merge your first pull request, we'll send you a few more. We'll never open more than seven PRs at the same time so you're not getting overwhelmed with updates.
Let us know if you have any questions. Thanks so much for giving Depfu a try!
Here is everything you need to know about this upgrade. Please take a good look at what changed and the test results before merging this pull request.
What changed?
✳️ hashie (~> 3.5, >= 3.5.2 → ~> 4.1, >= 3.5.2) · Repo · Changelog
Release Notes
4.1.0
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by 37 commits:
Preparing for release, 4.1.0
Merge pull request #513 from koic/suppress_ruby_warning_for_ruby_2_6
Suppress a Ruby's warning when using Ruby 2.6.0+
Merge pull request #512 from koic/suppress_integer_unification_warning_for_ruby_2_4_0
Suppress an integer unification warning for Ruby 2.4.0+
Merge pull request #511 from koic/suppress_kwargs_warning_for_ruby_2_7_0
Don't warn when setting most affixed keys (#500)
Suppress keyword arguments warning for Ruby 2.7.0
Fix except use in Mash#load (#508)
Merge pull request #510 from BobbyMcWho/fix-compact-definition
Only define compact on ruby >= 2.4
Merge pull request #507 from koic/suppress_warn_for_psych_3_1_0_or_higher
Suppress `Psych.safe_load` arg warn when using Psych 3.1.0+
Merge pull request #505 from michaelherold/fix-multiple-array-conversion
Ensure that Hashie::Arrays are not deconverted
Merge pull request #502 from jmanian/master
update comment for Mash truthiness methods
Merge pull request #499 from michaelherold/permissive-respond-to
Merge pull request #467 from michaelherold/deep-merge-bug
Merge pull request #498 from michaelherold/gemspec-updates
Prevent deep_merge from mutating nested hashes
Improve the setup script
Switch to only setting Bundler as a dev dependency
Exclude tests from the gem release
Adjust URL in gemspec and add metadata URLs
Add a PermissiveRespondTo extension for Mashes
Update github urls to hashie/hashie (#497)
Remove github actions
Pass specific ruby versions for ruby-build
Use ruby-build with cache
remove erroneously pasted code
versions should be strings
Use correct matrix variable
Initial attempt at adding github actions CI
Merge pull request #496 from michaelherold/update-readme-from-move
Update the README from moving the repo
Preparing for next development iteration, 4.0.1.
Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with
@depfu rebase
.All Depfu comment commands