Skip to content
Closed
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 common/dependabot-common.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 3.1.0"
spec.required_rubygems_version = ">= 3.3.7"

spec.add_dependency "activesupport", ">= 6.0.0"
spec.add_dependency "activesupport", ">= 7.0.0"
spec.add_dependency "aws-sdk-codecommit", "~> 1.28"
spec.add_dependency "aws-sdk-ecr", "~> 1.5"
spec.add_dependency "bundler", ">= 1.16", "< 3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion updater/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ gem "dependabot-pub", path: "../pub"
gem "dependabot-python", path: "../python"
gem "dependabot-terraform", path: "../terraform"

gem "activesupport", "~> 6.1.7"
gem "activesupport", "~> 7.0.4"
gem "http", "~> 5.1"
gem "octokit", "6.0.1"
gem "sentry-raven", "~> 3.1"
Expand Down
12 changes: 5 additions & 7 deletions updater/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ PATH
remote: ../common
specs:
dependabot-common (0.215.0)
activesupport (>= 6.0.0)
activesupport (>= 7.0.0)
aws-sdk-codecommit (~> 1.28)
aws-sdk-ecr (~> 1.5)
bundler (>= 1.16, < 3.0.0)
Expand Down Expand Up @@ -118,12 +118,11 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.7)
activesupport (7.0.4.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
ast (2.4.2)
Expand All @@ -144,7 +143,7 @@ GEM
aws-eventstream (~> 1, >= 1.0.2)
citrus (3.0.2)
commonmarker (0.23.7)
concurrent-ruby (1.1.10)
concurrent-ruby (1.2.0)
crack (0.4.5)
rexml
debug (1.7.1)
Expand Down Expand Up @@ -285,7 +284,7 @@ GEM
toml-rb (2.2.0)
citrus (~> 3.0, > 3.0)
tomlrb (2.0.3)
tzinfo (2.0.5)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unf (0.1.4)
unf_ext
Expand All @@ -296,13 +295,12 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
zeitwerk (2.6.6)

PLATFORMS
ruby

DEPENDENCIES
activesupport (~> 6.1.7)
activesupport (~> 7.0.4)
debug (~> 1.7.1)
dependabot-bundler!
dependabot-cargo!
Expand Down
1 change: 1 addition & 0 deletions updater/lib/dependabot/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

require "terminal-table"
require "dependabot/api_client"
require "active_support/core_ext/module/delegation"

# Wraps an API client with the current state of communications with the Dependabot Service
# and provides an interface to summarise all actions taken.
Expand Down