Upgrade hashie to version 4.1.0 - #4
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.0Merge pull request #513 from koic/suppress_ruby_warning_for_ruby_2_6Suppress a Ruby's warning when using Ruby 2.6.0+Merge pull request #512 from koic/suppress_integer_unification_warning_for_ruby_2_4_0Suppress an integer unification warning for Ruby 2.4.0+Merge pull request #511 from koic/suppress_kwargs_warning_for_ruby_2_7_0Don't warn when setting most affixed keys (#500)Suppress keyword arguments warning for Ruby 2.7.0Fix except use in Mash#load (#508)Merge pull request #510 from BobbyMcWho/fix-compact-definitionOnly define compact on ruby >= 2.4Merge pull request #507 from koic/suppress_warn_for_psych_3_1_0_or_higherSuppress `Psych.safe_load` arg warn when using Psych 3.1.0+Merge pull request #505 from michaelherold/fix-multiple-array-conversionEnsure that Hashie::Arrays are not deconvertedMerge pull request #502 from jmanian/masterupdate comment for Mash truthiness methodsMerge pull request #499 from michaelherold/permissive-respond-toMerge pull request #467 from michaelherold/deep-merge-bugMerge pull request #498 from michaelherold/gemspec-updatesPrevent deep_merge from mutating nested hashesImprove the setup scriptSwitch to only setting Bundler as a dev dependencyExclude tests from the gem releaseAdjust URL in gemspec and add metadata URLsAdd a PermissiveRespondTo extension for MashesUpdate github urls to hashie/hashie (#497)Remove github actionsPass specific ruby versions for ruby-buildUse ruby-build with cacheremove erroneously pasted codeversions should be stringsUse correct matrix variableInitial attempt at adding github actions CIMerge pull request #496 from michaelherold/update-readme-from-moveUpdate the README from moving the repoPreparing 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