Bump faraday from ~> 1.5 to ~> 2 (#256)

* Bump faraday from ~> 1.5 to ~> 2

Updates the basic-auth middleware call to the Faraday 2 form
(`request :authorization, :basic, ...`). Faraday 2.x requires Ruby >=
3.0, so drop Ruby 2.7 from the CI matrix and pin
`required_ruby_version = '>= 3.0'` in the gemspec.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

* Remove ensure_label workflow

The reusable workflow it referenced
(puppetlabs/release-engineering-repo-standards/.github/workflows/ensure_label.yml@v1)
no longer exists.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

* Add CLAUDE.md

Documents common dev/test/release commands and the Service/backend
architecture for future Claude Code sessions in this repo.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
isaac-jha 2026-05-01 08:58:05 -04:00 committed by GitHub
parent 6b6d6f73cd
commit 731ee3f014
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 112 additions and 74 deletions

View file

@ -20,7 +20,8 @@ Gem::Specification.new do |s|
s.files = Dir['LICENSE', 'README.md', 'lib/**/*', 'extras/**/*']
s.test_files = Dir['spec/**/*']
s.require_path = 'lib'
s.required_ruby_version = '>= 3.0'
s.add_dependency 'commander', '>= 4.4.3', '< 4.7.0'
s.add_dependency 'faraday', '~> 1.5', '>= 1.5.1'
s.add_dependency 'faraday', '~> 2'
end