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

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.4"
gem "activesupport", "~> 7.0.4"
gem "http", "~> 5.1"
gem "octokit", "4.25.1"
gem "sentry-raven", "~> 3.1"
Expand Down
8 changes: 3 additions & 5 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.211.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 @@ -117,12 +117,11 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.4.4)
activesupport (7.0.4)
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 Down Expand Up @@ -293,13 +292,12 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
zeitwerk (2.6.0)

PLATFORMS
ruby

DEPENDENCIES
activesupport (~> 6.1.4)
activesupport (~> 7.0.4)
debug (~> 1.6.2)
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"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is necessary to import delegate... for some reason it was working fine without an explicit import under v6, but under v7 requires an explicit import.


# 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