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/gem-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.2', '3.3', '3.4' ]
ruby-version: ['3.3', '3.4']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gem-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.0', '3.1', '3.2', '3.3', '3.4']
ruby-version: ['3.3', '3.4' ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gem-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.2', '3.3', '3.4' ]
ruby-version: ['3.3', '3.4' ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.2
3.4.7
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ruby 3.4.7
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@

- Moved runtime dependencies to the gemspec

## [1.0.4] - 2025-11-10

- Update gems and fixed issue with git actions

1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

source 'https://rubygems.org'

# Specify your gem's dependencies in dvla-kaping.gemspec
Expand Down
3 changes: 1 addition & 2 deletions dvla-kaping.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = %w[lib]

spec.add_dependency 'aws-sdk-sts'
spec.add_dependency 'aws-sdk-sts', '~> 1.12'
spec.add_dependency 'aws-sigv4', '~> 1.8'
spec.add_dependency 'nokogiri', '~> 1.18', '>= 1.18.8'
spec.add_dependency 'opensearch-aws-sigv4', '~> 1.2', '>= 1.2.1'

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

module DVLA
module Kaping
VERSION = '1.0.3'
VERSION = '1.0.4'
end
end