Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.4.5

- name: rubocop
uses: reviewdog/action-rubocop@fcb74ba274da10b18d038d0bcddaae3518739634 # v2.21.2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Set up Ruby 3.2.2
- name: Set up Ruby 3.4.5
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.4.5

- name: Get version
id: get_version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.4.5
bundler-cache: true

- name: Run rspec tests
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require:

AllCops:
DisplayCopNames: true
TargetRubyVersion: 3.2
TargetRubyVersion: 3.4.5
StyleGuideBaseURL: https://github.com/rewindio/ruby-style-configs/
NewCops: enable
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.4.5
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.0.5]

- Update Ruby version to 3.4.5 to address security vulnerabilities

## [1.0.4]

- Resolve CVE-2025-49007
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
omniauth-azure-devops (1.0.4)
omniauth-azure-devops (1.0.5)
omniauth (>= 1, < 3)
omniauth-oauth2 (~> 1.1)

Expand Down
2 changes: 1 addition & 1 deletion lib/omni_auth/azure_devops/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module OmniAuth
module AzureDevops
VERSION = '1.0.4'
VERSION = '1.0.5'
end
end
6 changes: 3 additions & 3 deletions omniauth-azure-devops.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Gem::Specification.new do |gem|
gem.executables = gem.files.grep(%r{^exe/}) { |f| File.basename(f) }
gem.require_paths = ['lib']

gem.required_ruby_version = '>= 3.2'
gem.required_ruby_version = '>= 3.4'

gem.add_runtime_dependency 'omniauth', '>= 1', '< 3'
gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.1'
gem.add_dependency 'omniauth', '>= 1', '< 3'
gem.add_dependency 'omniauth-oauth2', '~> 1.1'
end
Loading